Home › Forums › WoodMart support forum › List in Section Title › Reply To: List in Section Title
May 24, 2023 at 10:21 am
#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