MB Favorite Posts menu is not showing up

Support MB Favorite Posts MB Favorite Posts menu is not showing up

  • This topic has 3 replies, 2 voices, and was last updated 1 year ago by PeterPeter.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #45226
    SG5SG5
    Participant

    Hi,
    I have uploaded metabox, meta box aio and mb favorite posts - on front end the favorite posts button is showing up but in the admin the backend (https://ibb.co/18Vmx40) - the settings page for favorite posts is missing!

    mb favorite posts: Version 2.0.8
    metabox: Version 5.9.5
    meta box aio: Version 1.25.0 |

    #45232
    PeterPeter
    Moderator

    Hello,

    It is located under the Settings menu, screenshot https://imgur.com/Jt2dzAB

    #45233
    SG5SG5
    Participant

    Hi,

    great, is there any possibility to use a hook or shortcode to place it with our page builder exactly where we want and disable the default setting?

    #45241
    PeterPeter
    Moderator

    Hello,

    There isn't a hook to move the Favorite Posts settings page to another menu. I use this code to remove the default settings page

    add_action( 'admin_init', function() {
    	remove_submenu_page( 'options-general.php', 'mb-favorite-posts' );	
    }, 999 );
    

    and this code to re-register the settings page

    add_filter( 'mb_settings_pages', function( $settings_pages ) {
    	$settings_pages[] = [
    		'id'          => 'mb-favorite-posts',
    		'option_name' => 'mb_favorite_posts',
    		'menu_title'  => __( 'Favorite Posts', 'mb-favorite-posts' ),
    		'class'       => 'mbfp-settings',
    		'style'       => 'no-boxes',
    		'column'      => 1,
    		'parent'      => 'tools.php', // change parent menu here
    		'tabs'        => [
    			'mbfp_general' => 'General',
    			'mbfp_button'  => 'Button',
    			'mbfp_icon'    => 'Icon',
    		],
    	];
    	return $settings_pages;
    }, 99 );

    however, it doesn't work properly so I recommend using the default settings page.

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