Home Forums WoodMart support forum Issues occurring After woodmart update

Issues occurring After woodmart update

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #109779

    brandcatmedia
    Participant

    Hi before the update the tag was working fine in pricing element but after that it is not working i am attaching the screen shot please have a look and let me updated asap

    And please come up with the solution

    Thank You
    Parag Narvekar

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

    brandcatmedia
    Participant

    Hi before the update the (‘‘) tag was working fine in pricing element but after that it is not working i am attaching the screen shot please have a look and let me updated asap

    And please come up with the solution

    Thank You
    Parag Narvekar

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

    Artem Temos
    Keymaster

    Hello,

    Thank you for choosing our theme and contacting us.

    Try to add the following PHP code snippet to the child theme functions.php file to fix this

    function woodmart_get_allowed_html() {
    		return array(
    			'br'     => array(),
    			'i'      => array(),
    			'b'      => array(),
    			'u'      => array(),
    			'em'     => array(),
    			'del'    => array(),
    			'a'      => array(
    				'href'  => true,
    				'class' => true,
    				'title' => true,
    				'rel'   => true,
    			),
    			'strong' => array(),
    			'span'   => array(
    				'style' => true,
    				'class' => true,
    			),
    		);
    	}

    Regards

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