Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author sevenspark

    (@sevenspark)

    Hi Karldude,

    I just pushed a release with filterable first item titles.

    This would be the basic idea to set it up:

    //filter callback
    function sample_rsm_first_item( $itemName , $args ){
    	if( $args['theme_location'] == 'primary' ){ //check for specific theme location
    		$itemName = 'MENU'; //change desired item name
    	}
    	return $itemName; //return filtered name
    }
    add_filter( 'rsm_first_item_text' , 'sample_rsm_first_item' , 10 , 2 ); //add filter

    Hope that helps!

    Chris

    Karldude, I have the same issue with Responsive Select Menu distinguishing between three menus on my site.

    I noticed that your two menus are both labeled “Menu,” and i’m wondering if you’ve had any feedback from customers as to whether they know to click on each menu to look for things on your site…

    Thanks,
    Emily

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Unable to label secondary menu seperately’ is closed to new replies.