• Remove H2 sidebar.

    I want to remove the H2 from the sidebar elements.
    Or any header that is created when adding a widget to the sidebar.
    Thank you very much for your time

Viewing 3 replies - 1 through 3 (of 3 total)
  • Leo

    (@leohsiang)

    Hi there,

    Not sure if I fully understand.

    Can you link me to the page in question?

    Thanks!

    Thread Starter joejuan

    (@joejuan)

    Hello.
    I think it’s more of a WP theme.
    I have solved the problem by adding this code in functions:


    add_filter(‘dynamic_sidebar_params’, ‘function_widget_title’);
    function function_widget_title($params) {
    $params[0][‘before_title’] = ‘

    ‘ ; $params[0][‘after_title’] = ” ;
    return $params;
    }

    Leo

    (@leohsiang)

    Glad to hear ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.