Forum Replies Created
-
AuthorPosts
-
September 14, 2022 at 2:27 PM in reply to: ✅A block without fields does not show the content in Gutenberg #38309
Cereal Concept
ParticipantHi,
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 ?
ThanksJohann
May 9, 2022 at 10:46 PM in reply to: ✅Block doesn't render on editor unless I fill some field data #35966Cereal Concept
ParticipantHi !
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
JohannCereal Concept
ParticipantHi !
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 !
June 15, 2021 at 8:34 PM in reply to: ✅WP_Query Multiple Relationships relation = AND doesn't work ? #28912Cereal Concept
ParticipantHi !
I have the same problem.
Works well with OR but not with ANDCan you look into it when you have more time ?
Thanks !
June 15, 2021 at 3:57 PM in reply to: Database Error on Relationships after update to latest MetaBox AIO and WP 5.5.1 #28908Cereal Concept
ParticipantHi !
I ran into the same error.
Have you been able to look into it ?
Thank you for your support !Have a good day,
JohannCereal Concept
ParticipantCereal Concept
ParticipantHi !
Thanks for your replies !
Sorry for the delay I missed the notificationHere 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', ),...
-
AuthorPosts