• Resolved tonyx4x44

    (@tonyx4x44)


    I want to change the label of the button for the off canvas menu from “menu” to something else… how do i do that? my site is boyantech

Viewing 4 replies - 1 through 4 (of 4 total)
  • CustomizrLuvr

    (@customizrluvr)

    Try:

    .menu-label span { content:'test'!important; }

    or

    span.menu-label { content:'test'!important; }

    or

    .menu-label span { content:'test' }

    Thread Starter tonyx4x44

    (@tonyx4x44)

    none of them works… thanks for trying though

    any help?

    Menaka S.

    (@menakas)

    Hi,
    Add this to your child theme’s functions.php.

    add_filter('tc_sidenav_menu_button_view','my_menu');
    function my_menu($content){
       return str_replace('Menu','Money',$content);
    }
    Thread Starter tonyx4x44

    (@tonyx4x44)

    works perfectly … thanks a lot

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘name of menu label’ is closed to new replies.