Home › Forums › WoodMart support forum › List in Section Title List in Section Title This topic has 1 reply, 2 voices, and was last updated 1 year, 6 months ago by Luke Nielsen. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 23, 2023 at 3:12 pm #469188 ArfanRasoolParticipant 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. May 24, 2023 at 10:21 am #469470 Luke NielsenKeymaster 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 Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register