Forum Replies Created
-
AuthorPosts
-
July 9, 2024 at 9:28 PM in reply to: Issue with Elementor grid loop in archive template when query is Current Query #45863
Peter
ModeratorHello,
Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a look.July 9, 2024 at 9:27 PM in reply to: Bug Report: Taxonomy Select Fields Data Interference in Multiple Meta Boxes #45862Peter
ModeratorHello,
You can use the field
taxonomy_advancedto have more fields and save value. Please follow the documentation https://docs.metabox.io/fields/taxonomy-advanced/Regarding the
taxonomyfield, you can use only one field per post.July 8, 2024 at 9:39 PM in reply to: ✅Is there any way to add values to a group programmatically #45853Peter
ModeratorHello,
It is possible to use the code to update the group field value. You can use the helper function
rwmb_set_meta()or WordPress functionupdate_post_meta()to do that.Please follow this topic https://support.metabox.io/topic/migrating-from-regular-fields-to-a-grouped-field/
and documentation https://docs.metabox.io/functions/rwmb-set-meta/Peter
ModeratorHello Victoria,
The capability
read_others_cptis not available in the WordPress documentation https://learn.wordpress.org/tutorial/custom-post-types-and-capabilities/It could be supported by another plugin. I suggest you contact WP Members plugin support and ask them for more information.
Peter
ModeratorHello Jonathan,
If you are using a custom user role, please try to enable the capability
edit_postsfor the role and let me know if it helps.Peter
ModeratorHello Yasmine,
So the issue is related to your custom code that creates posts after submitting the user profile form, then the action hook save_post doesn't work. You can use the
inithook as I suggest above for your case.July 5, 2024 at 9:06 PM in reply to: Issue with Elementor grid loop in archive template when query is Current Query #45836Peter
ModeratorThis is the taxonomy archive page https://centuries-of-leadership.com/category/government
This is the post type archive page https://centuries-of-leadership.com/products/Can you create a taxonomy archive page for the new CPT wporg_product as you do for the category government and see how it goes?
July 5, 2024 at 6:55 AM in reply to: Issue with Elementor grid loop in archive template when query is Current Query #45831Peter
ModeratorHello Jackie,
I see that the course is a custom post type created with Meta Box. If you create another post type with code, does the issue persist? Please follow the documentation
https://developer.wordpress.org/plugins/post-types/registering-custom-post-types/Peter
ModeratorHello James,
The field
taxonomydoes not work in the group field. You should use the field typetaxonomy_advanced.
Please follow the documentation https://docs.metabox.io/fields/taxonomy-advanced/Peter
ModeratorHello,
Please share your site credentials by submitting this contact form https://metabox.io/contact/
I will take a closer look.Peter
ModeratorHello,
Thank you for your feedback. I've escalated this issue to the development team to fix the issue. You should add at least one field to make the field group work when selecting "Block" location.
July 3, 2024 at 8:41 PM in reply to: Map field default location in clonable group....via AJAX? #45823Peter
ModeratorHello,
No, it's the wrong place.
if I set the form to 'edit' => trueyou are talking about the frontend form, so you need to add the attribute
editto the form shortcode. But it is added to the meta box settings.Please read the documentation carefully to use the shortcode attributes:
https://docs.metabox.io/extensions/mb-frontend-submission/#adding-the-submission-form[mb_frontend_form id="field-group-id" post_fields="title,content" edit="true"]Peter
ModeratorHello,
What is the SQL query that you run in the database? Here is an example:
UPDATE wp_postmeta SET meta_key = 'testimonials' WHERE meta_key = 'testinimonials'change the database prefix
wp_with the prefix in your database.Peter
ModeratorHello,
It isn't a bug. The subfield value in a group field will save the raw content to the database. When outputting the field value, you can use the function
wpautop()to add<p>tag to the WYSIWYG field value. Following the documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-valuesPeter
ModeratorHello Joe,
Do you mean the content and excerpt of the product don't show in the new custom field? In the previous topic https://support.metabox.io/topic/woocommerce-tabs/
I suggest you create the custom field with IDs:contentandexcerpt, notpost_contentandpost_excerpt. Please change the field ID and check the issue again. -
AuthorPosts