Settings Page has a weird rending

Support MB Settings Page Settings Page has a weird rendingResolved

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #49948
    eucalyptech@free.fr[email protected]
    Participant

    Dear All,

    My website is on WordPress 6.9.4, PHP 8.3, Meta Box AIO Version 3.7.0.

    I defined a settings page using the UI :

    
    <?php
    add_filter( 'mb_settings_pages', 'parametres-site' );
    
    function parametres-site( $settings_pages ) {
    	$settings_pages[] = [
            'menu_title'    => __( 'Données Araz', 'araz-batiments.fr' ),
            'id'            => 'parametres-site',
            'position'      => 2,
            'capability'    => 'edit_posts',
            'style'         => 'no-boxes',
            'columns'       => 1,
            'submit_button' => __( 'Enregistrer les changements', 'araz-batiments.fr' ),
            'message'       => __( 'Enregistrement des données', 'araz-batiments.fr' ),
            'option_name'   => 'parametres-site',
            'customizer'    => false,
            'icon_url'      => 'dashicons-admin-generic',
        ];
    
    	return $settings_pages;
    }
    

    The Settings Page menu is created in the WordPress menu as it should. But when I tried to access : https://ibb.co/DHSjvF8q

    My datas are still there and I can exploit them but I can't read them on the Settings Page.

    Could you help me ?

    Thank you

    #49949
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    I check the screenshot and think that it could be a conflicting issue with a third-party plugin or custom code on your site. Can you please try to deactivate all plugins, leave only Meta Box activated and switch to a WordPress theme to see if it helps?

    #49952
    eucalyptech@free.fr[email protected]
    Participant

    Hi Peter,

    I thank you for your reply. You can close the thread. I tried this and many other things. At last, it was just a cache browser issue.

    Cheers

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