Settings Page has a weird rending

Support MB Settings Page Settings Page has a weird rending

Viewing 1 post (of 1 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

Viewing 1 post (of 1 total)
  • You must be logged in to reply to this topic.