Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3099607
Sidebar Widget Title Heading Change
Closed

Comments

  • racazoi started the conversation

    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.

  •  2,489
    PenciDesign replied

    Hi,

    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.