Forum Replies Created
-
AuthorPosts
-
June 26, 2024 at 10:23 PM in reply to: ✅Display Content of Shortcode in WYSIWYG Field on Frontend #45729
Peter
ModeratorHello,
1. You have to add the code to the template of the theme, not the file functions.php. For example: Twenty-Twenty One theme, file wp-content/themes/twentytwentyone/template-parts/content/content-single.php
3. Is the field "mb_resource_resource_offer_cta_box" a custom field of the current post to which you add the shortcode?
If you don't add the "object_id" attribute to the helper shortcode, the current post ID will be used.Following the documentation
https://docs.metabox.io/shortcode/
https://docs.metabox.io/displaying-fields-with-code/Peter
ModeratorHello,
Currently, we don't support adding a custom field or more information about the relationship. You can create your own custom code to have a custom table that holds that information but it isn't a feature of Meta Box itself and beyond our scope of support.
Peter
ModeratorHello Marcus,
If you use the Twig date() function, please save the date field value as timestamp and check the issue again. Following the documentation
https://docs.metabox.io/fields/date/
https://twig.symfony.com/doc/3.x/filters/date.htmlPeter
ModeratorHello,
Yes, please try to create a new user and see if you can see the field group when logging in to the admin area with the new user.
June 26, 2024 at 9:37 PM in reply to: Add Custom taxonomy in custom table as well WordPress native term #45724Peter
ModeratorHello Raj,
There isn't a way to save the custom taxonomy to the custom table. The custom table created with Meta Box is used to save the custom field value, not the post or taxonomy.
Please read more about custom table in the documentation https://docs.metabox.io/extensions/mb-custom-table/
June 25, 2024 at 11:17 PM in reply to: ✅Metabox Group - Adjust 'Remove Clone' Dialog Notification Message #45719Peter
ModeratorHello,
There isn't an option or a hook to add the group title to the confirmation message when deleting a cloneable group. I will inform the development team to consider supporting this in future updates.
Peter
ModeratorHello,
Using the frontend form means you are using the settings in the admin area, the form just brings settings to the frontend. It is different from the rendering map in the frontend when you output the field value. And there isn't a field setting to add JS options to the map in the admin area.
June 25, 2024 at 10:52 PM in reply to: Latest METABOX version do not allow Bricks to save. (version 1.26.3) #45717Peter
ModeratorHello Filippo,
Please update WordPress core to the latest version 6.5.5 and let me know how it goes.
June 25, 2024 at 10:34 PM in reply to: ✅Display Content of Shortcode in WYSIWYG Field on Frontend #45715Peter
ModeratorHello,
Please let me know if it works when you:
- add the helper shortcode[rwmb_meta id="mb_resource_resource_offer_cta_box"]directly to the page content without using Bricks or any third-party plugin.- use the PHP code and add it to the template of a WordPress theme.
$value = rwmb_meta( 'mb_resource_resource_offer_cta_box' ); echo do_shortcode( wpautop( $value ) );Peter
ModeratorHello,
I understand the issue on your site. We've received some reports with a similar issue. A specific user cannot see a field group when editing a post but can see other field groups.
The development team still doesn't find any clue regarding this. You can try to create a new user and recheck the issue.Peter
ModeratorHello Topher,
Please refer to this article to display more points on a map https://metabox.io/display-all-listings-on-a-map/
Peter
ModeratorYou can refer to this topic to create a query in the callback function to display the post type and its data https://support.metabox.io/topic/post-meta-custom-field-inside-query-loop-block/
If you're not able to complete the task, we offer a customization service for an extra fee. Please contact us here for more details https://metabox.io/contact/
Peter
ModeratorHello,
What do you mean by joining table with Meta Box? The relationship data is saved to a custom table, I think that it suits your requirements. Also, the relationship connection is bi-directional by default, which means you can select many formulas connected to many herbs and vice versa.
Following the documentation https://docs.metabox.io/extensions/mb-relationships/
June 24, 2024 at 9:26 PM in reply to: Image advanced not working since last update Elementor Pro #45694Peter
ModeratorHello Ivan,
Thank you for your feedback.
I can reproduce the issue on my demo site. There could be a conflict with the new version of Elementor Pro. I've escalated this issue to the development team to check it and I will get back to you later.
Peter
ModeratorHello,
There isn't an easy way with a few clicks to render the custom block. You can create the custom block with the builder and use the code to render the block content and field value. Please follow the documentation https://docs.metabox.io/extensions/mb-blocks/#rendering-the-block
-
AuthorPosts