Home Forums WoodMart support forum List in Section Title

List in Section Title

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #469188

    ArfanRasool
    Participant

    I’m trying to add a numbered list or bullet points to the text area in the Section Title element, but for some reason as soon as you change the lines to a list they seem to lose the formatting. see video.

    Attachments:
    You must be logged in to view attached files.
    #469470

    Luke Nielsen
    Keymaster

    Hello,

    Please add the below code to the fucntions.php file in your child theme.

    add_filter( 'woodmart_allowed_html', function ( $data ) {
    	$data['ol'] = array();
    	$data['ul'] = array();
    	$data['li'] = array();
    
    	return $data;
    });

    In the next update, it will be fixed.

    Kind Regards

Viewing 2 posts - 1 through 2 (of 2 total)