Forum Replies Created
-
AuthorPosts
-
July 5, 2024 at 6:55 AM in reply to: Issue with Elementor grid loop in archive template when query is Current Query #45831
Peter
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.Peter
ModeratorHello,
Please don't change the field ID directly in the
meta_boxkey, it is the field group settings. You can follow the article below to change the field ID on your site
https://metabox.io/changing-meta-box-field-id/Peter
ModeratorHello Anna,
Now I see the icons display at 24 px with your custom CSS code as well, screenshot https://imgur.com/xpcgTuy
July 2, 2024 at 9:49 PM in reply to: Wall of text: cloned custom field tab WYSIWYG field, using repeater in Oxygen #45808Peter
ModeratorSo maybe Oxygen doesn't work with the WYSIWYG field in a cloneable group. I recommend contacting Oxygen support to get further assistance.
Refer to the support policy https://metabox.io/support/topic/support-policy/Thank you.
Peter
ModeratorHello,
Please try to deactivate all plugins except Meta Box, MB extension plugin and switch to a WordPress theme then check the issue again. Let me know how it goes.
Peter
ModeratorHello Cees,
That happens when the zoom value is not added to the default value. Please add the zoom value along with the lat/long and check the issue again. For example:
21.1159071,107.8167312,10Peter
ModeratorHello Matthew,
You can use the custom attribute HTML5
patternand set a regex to validate the URL:
- url must contain 'facebook'
- url must not contain 'gtm'here is an example:
^(?=.*facebook)(?!.*gtm).*$
https://imgur.com/UuHDmzrFollowing the documentation https://docs.metabox.io/custom-attributes/
July 1, 2024 at 9:39 PM in reply to: Wall of text: cloned custom field tab WYSIWYG field, using repeater in Oxygen #45794Peter
ModeratorHello,
The subfield WYSIWYG saves the raw content, without the
<p>tag, which might cause the issue. You can try to use a shortcode, output the subfield WYSIWYG content in the functionwpautop()and see how it goes. Following the documentation
https://docs.metabox.io/extensions/meta-box-group/#outputting-group-with-page-builders -
AuthorPosts