Support Forum » User Profile

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Cereal ConceptCereal Concept
    Participant

    Hi,

    Is this considered ? I think there is a real value in supporting this.
    For example when you want to use innerblocks inside a custom wrapper.

    The hidden field hack does not work for me, is there any other parameters to add ?
    Thanks

    Johann

    Cereal ConceptCereal Concept
    Participant

    Hi !

    Do you have news on this ?
    I'm using InnerBlocks and sometime I don't need fields. I'm using MB Block to wrap code around gutenberg content.

    Thanks
    Johann

    in reply to: Date before 1970: timestamp is stored as positive #31929
    Cereal ConceptCereal Concept
    Participant

    Hi !
    Great to know, I just encountered this problem.
    It would be great to have a this info on the date and datetime field pages in the documentation I think.

    Have a nice day !

    Cereal ConceptCereal Concept
    Participant

    Hi !

    I have the same problem.
    Works well with OR but not with AND

    Can you look into it when you have more time ?

    Thanks !

    Cereal ConceptCereal Concept
    Participant

    Hi !

    I ran into the same error.
    Have you been able to look into it ?
    Thank you for your support !

    Have a good day,
    Johann

    in reply to: Groups revisions don't work #10071
    Cereal ConceptCereal Concept
    Participant

    Hi !

    This is my full rwmb_meta_boxes filter function :

    https://pastebin.com/Qzn8XGvP

    in reply to: Groups revisions don't work #9811
    Cereal ConceptCereal Concept
    Participant

    Hi !
    Thanks for your replies !
    Sorry for the delay I missed the notification

    Here is the code used to register the meta box with revision enabled :

    $meta_boxes[] = array(
      'revision' => true,
      'id'         => 'noussuite-blocs',
      'title'      => __( 'Les différents blocs', 'purple' ),
      'post_types' => array( 'page' ),
      'autosave'   => true,
      'fields'     => array(
    
        // Blocs
        array(
          'name'  => esc_html__( 'Blocs', 'langdomain' ),
          'id'    => "{$prefix}group-blocs",
          'type'  => 'group',
          'add_button' => 'Ajouter un bloc',
          'collapsible' => true,
          'group_title' => array( 'field' => 'cc_text-titre' ),
          'clone' => true,
          'sort_clone' => true,
          'fields'   => array(
            // Titre
            array(
              'name'  => esc_html__( 'Titre', 'langdomain' ),
              'id'    => "{$prefix}text-titre",
              'desc'  => esc_html__( 'Le titre du bloc', 'langdomain' ),
              'type'  => 'text',
            ),
    

    ...

Viewing 7 posts - 1 through 7 (of 7 total)