Forum Replies Created
-
AuthorPosts
-
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-buildersPeter
ModeratorHello,
Hooking the callback function to the
save_posthook, the relationship is added as well. Here is an exampleadd_action( 'save_post', function() { MB_Relationships_API::add( 2, 1, 'page-to-user'); //page ID 2, user ID 1 } );if it doesn't work on your site, you can try to deactivate all plugins except Meta Box, MB extensions plugin and switch to a standard theme of WordPress and recheck the issue.
Peter
ModeratorHello Anna,
What is the field ID of the single image field on your site? You can follow the documentation to output the single image field
https://docs.metabox.io/fields/single-image/#template-usagePeter
ModeratorHello Andrew,
Meta Box doesn't have an option to add the custom field to the URL. You can try to use a third-party plugin that supports this feature, for example https://permalinkmanager.pro/docs/tutorials/how-to-use-custom-fields-inside-wordpress-permalinks/
Peter
ModeratorHello Julian,
Currently, there isn't an option or a filter hook to change the favorite icon. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello Julian,
There is a small margin at the left (4 px)of the button text. If you want to remove it, please use this custom CSS code:
.mbfp-text .margin-left { margin-left: 0; }Peter
ModeratorHello Julian,
You can follow the documentation https://docs.metabox.io/extensions/mb-favorite-posts/#data
to create a custom query, output the favorite posts with any data from the post.June 30, 2024 at 2:49 PM in reply to: ✅Display Content of Shortcode in WYSIWYG Field on Frontend #45779Peter
ModeratorSo the issue arises from the Bricks builder, not from Meta Box itself. Thanks for sharing the solution.
Peter
ModeratorHello,
This feature works properly on my demo site. Please add some new value to all fields and recheck the issue. If it doesn't work, please share some screenshots of the issue on your site.
-
AuthorPosts