Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #398488

    Thank you in advance for any help.

    I currently have a widget located at the bottom footer. The widget is a “category” dropdown menu.
    Currently in the dropdown menu/box it reads “select category”
    Is there anyway to change that to say “select catalog”
    Can I make the change just to that dropdown menu?

    #398642

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    function _category_dropdown_filter( $cat_args ) {
            $cat_args['show_option_none'] = "Select Catalog";
            return $cat_args;
    }
    add_filter( 'widget_categories_dropdown_args', '_category_dropdown_filter' );
    

    Cheers!
    Josue

    #399249

    Thank you! That worked perfectly.

    #399287

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Customize text on the dropdown menu’ is closed to new replies.