Home Forums WoodMart support forum List in Section Title Reply To: List in Section Title

#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