Support Forum ยป User Profile

Forum Replies Created

Viewing 12 posts - 31 through 42 (of 42 total)
  • Author
    Posts
  • in reply to: โœ…Date field, timestamp problem ? #19308
    JulienJulien
    Participant

    It's seems to be fixed.

    Thank you ๐Ÿ˜€

    in reply to: โœ…Date field, timestamp problem ? #19262
    JulienJulien
    Participant

    I made more test on a fresh install, the problem occured when field date is on "group".

    $meta_boxes[] = array(
            'title'  => 'Hello World',
            'post_types' => array( 'post', 'page' ),
            'fields' => array(
                array(
                    'id'        => 'my_group',
                    // 'name'      => 'My Group',
                    'type'      => 'group',
                    'clone'  => true,
                    'sort_clone' => true,
                    'fields' => [
                        array(
                            'name' => 'My Date',
                            'id'   => 'my_date',
                            'type' => 'date',
                            'timestamp' => true,
                        ),
                    ]
                ),
            )
        );
    in reply to: โœ…Date field, timestamp problem ? #19261
    JulienJulien
    Participant

    Hello,

    I debug a little "more" with a functional version, it doesn't work when I update meta box and meta box aio.

    No error on console.

    The meta are in custom post type "product" of Woocommerce plugin.

    in reply to: โœ…Visible/hidden with id outside group #16150
    JulienJulien
    Participant

    Hello,

    thank you for your following, I will try these next days ๐Ÿ™‚

    in reply to: โœ…Site Health Error with MetaBox enabled #15955
    JulienJulien
    Participant

    Good news.

    Thank you

    in reply to: โœ…Site Health Error with MetaBox enabled #15943
    JulienJulien
    Participant

    I found something.

    If I comment the line 21 on /plugins/meta-box-aio/meta-box-aio.php (session_start()) I have health 100% again.

    I don't know why

    Edit: I found this topic on wordpress.org

    https://wordpress.org/support/topic/plugin-is-causing-site-health-check-errors/

    If I do

    session_start([
        'read_and_close' => true,
    ]);

    The problem gone. I don't know if it's a real fix.

    in reply to: โœ…Site Health Error with MetaBox enabled #15939
    JulienJulien
    Participant

    Why I have this error if I have an up to date version of Meta Box AIO ?

    MetaBox Versions

    in reply to: โœ…Site Health Error with MetaBox enabled #15936
    JulienJulien
    Participant

    Sometimes I have these errors on admin

    <b>Notice</b>:  Trying to get property 'plugin' of non-object in <b>/meta-box-aio/vendor/meta-box/meta-box-updater/class-mb-updater.php</b> on line <b>126</b><br />
    <b>Notice</b>:  Trying to get property 'plugin' of non-object in <b>/meta-box-aio/vendor/meta-box/meta-box-updater/class-mb-updater.php</b> on line <b>126</b><br />
    in reply to: โœ…Visible/hidden with id outside group #13639
    JulienJulien
    Participant

    Hi Anh,

    I understand if it can't work I can accept it ๐Ÿ˜‰

    For the custom callback, it's a bug or not ? I miss something ?

    in reply to: โœ…Visible/hidden with id outside group #13618
    JulienJulien
    Participant

    I tried to make a custom callback but it's seems doesn't work too.

    'visible' => array("my_custom_callback()", true),

    and JS

    console.log('my custom callback init');
    function my_custom_callback(){
        console.log('my custom callback test!');
        return false;
    }

    In console I can see "My custom callback init" but never "my custom callback test!" and the element with the visible option is always visible.

    Something broked with conditionnal logic ? :s

    I found a fix in "conditional-logic.js" in the plugin folder.

    Line 234 to 236

    if ( ! dependentFieldSelector ) {
      // return;
    }

    If I comment line 235, my condition work.

    JulienJulien
    Participant

    it's seems to work yep.

    I don't have time today if this fix break something else but the problem seems to be solved.

    Thank you ๐Ÿ™‚

    in reply to: select_tree for hierarchical taxonomies broken #10864
    JulienJulien
    Participant

    It's work ๐Ÿ™‚

    Thanks a lot

Viewing 12 posts - 31 through 42 (of 42 total)