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?
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
Thank you! That worked perfectly.
You are welcome, glad to help :)
Regards,
Josue