Home › Forums › WoodMart support forum › I want to add tool tips in price table. › Reply To: I want to add tool tips in price table.
January 5, 2021 at 8:02 am
#255785

Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to fix this
add_filter(
'woodmart_allowed_html',
function( $tags ){
$tags['div'] = array(
'class' => true,
'title' => true,
);
return $tags;
}
);