Comments racazoi started the conversationAugust 8, 2022 at 9:22amHi,I need to change the Title Heading to text or paragraph instead of Heading (like H1, H2 etc.)I couldn't find the opstions for change title heading normal text format.In the attach, you can see Title is in the H3 tag. In brief I do not want any H tag. 2,610PenciDesign repliedAugust 8, 2022 at 10:29amHi,Please install the Code Snippet plugin, then create a new snippet with the following content; function racazoi_filter_widget_title_tag( $params ) { $params[0]['before_title'] = '<h2 class="widget-title widgettitle">' ; $params[0]['after_title'] = '</h2>' ; return $params; }add_filter( 'dynamic_sidebar_params' , 'racazoi_filter_widget_title_tag' ); You can modify the heading HTML code as you want.Regards,PenciDesign. Sign in to reply ...
Hi,
I need to change the Title Heading to text or paragraph instead of Heading (like H1, H2 etc.)
I couldn't find the opstions for change title heading normal text format.
In the attach, you can see Title is in the H3 tag. In brief I do not want any H tag.
Hi,
Please install the Code Snippet plugin, then create a new snippet with the following content;
You can modify the heading HTML code as you want.
Regards,
PenciDesign.