Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Eddie,
The shortcode supports displaying the term meta value on the frontend, not the term name or taxonomy title. It is different. The term meta works like the post meta, add some additional information for the term. Please read more on the documentation https://docs.metabox.io/extensions/mb-term-meta/
If you want to display the term name in a loop while using Elementor, please contact Elementor support for further assistance.
Peter
ModeratorHello Mike,
Can you please deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress (2022) and recheck this issue? And please share the code that creates the custom fields on your site, I will check it on my site.
Peter
ModeratorHello Piotr,
There is no option to add a column to the frontend dashboard. If you are familiar with coding, you can follow this topic to create a custom frontend dashboard on your own https://support.metabox.io/topic/duplicate-dashboard-shortcode
the post list in the dashboard is just created by a WP query.November 10, 2022 at 7:49 AM in reply to: ✅Unable to view any information on user profile page #39041Peter
ModeratorI got the issue. You need to assign the field group to the Users instead of Posts to make it works, screenshot https://monosnap.com/file/maXzxqqXyFAx7DNbF9JTuFEfXf1vns
Peter
ModeratorHello Macky,
The function wp_insert_post() requires inserting the post title and content to the post. It is the requirement of a WordPress function so there is nothing we can do with Meta Box.
If you want to update/create the field value of a post, please take a look at the function update_post_meta() and refer to this topic https://support.metabox.io/topic/error-while-inserting-field_id-in-rwmb_after_save_post/#post-37979
November 9, 2022 at 9:39 PM in reply to: Populate a WP GRIDBUILDER grid with Advanced Image field #39030Peter
ModeratorHello AnLip,
WP GridBuilder officially supports the integration with Meta Box to display the field value. Please check it here https://docs.metabox.io/compatibility/
So I recommend contacting WP GridBuilder support to ask for further assistance.November 9, 2022 at 9:35 PM in reply to: Getting Label of a Select field inside a cloneable Group #39029Peter
ModeratorHello,
I see you've created another topic with the same question https://support.metabox.io/topic/getting-label-of-select-field-on-a-group
Please use the helper function rwmb_get_field_settings() to get the field settings and use the for loop to get subfield settings.
November 9, 2022 at 9:22 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39028Peter
ModeratorHello Jan,
1. If you have the Lifetime Bundle license, you can use two plugins: Meta Box and Meta Box AIO to get all pro features. You can also manage the extensions in Meta Box > Extensions.
2. The builder Beaver Themer works with Meta Box to display the field value on the frontend. It does not help to display a profile form to update. You can add the user profile form shortcode to the Beaver Builder to display on the frontend.
Please read more here https://docs.metabox.io/extensions/mb-user-profile/#edit-profile-formPeter
ModeratorPlease change the class
RWMB_Map_Fieldto this oneRWMB_OSM_Field, it is a typo issue on the documentation and it will be fixed as soon as possible. The code should beecho RWMB_OSM_Field::render_map( $group_value['osm'], $args );Peter
ModeratorThanks for your feedback.
I will inform the development team to consider supporting this case in future updates.
November 8, 2022 at 10:29 PM in reply to: ✅Using a Open Street Map with an address text field inside a group #39011Peter
ModeratorHello Dan,
Please change the class
RWMB_Map_Fieldto this oneRWMB_OSM_Field, it is a typo issue on the documentation and it will be fixed as soon as possible. The code should beecho RWMB_OSM_Field::render_map( $group_value['osm'], $args );November 8, 2022 at 10:08 PM in reply to: ✅Unable to view any information on user profile page #39010Peter
ModeratorHello Katharine,
Can you please share your site credentials through the contact form https://metabox.io/contact/? I will help you to investigate the issue.
Peter
ModeratorOk, you can get the PHP code from the builder and share it here. I will check if there is something wrong with the group and subfield ID.
Regarding the third parameter that needs to pass to the helper function as the post (object ID). You can read more on this documentation https://docs.metabox.io/functions/rwmb-meta/
For example:
$group_values = rwmb_meta( 'group_contacts', '', 123 );Where 123 is the post ID.
November 8, 2022 at 9:48 PM in reply to: Critical error Meta Box AIO after updating to WordPress 6.1 #39007Peter
ModeratorHello NorCal,
Can you please let me know how to reproduce the issue? Do you use some features that load the Twig library like MB Views, MB Blocks (code area in the builder)? Or has the homepage been deleted recently?
Peter
ModeratorHello Aaron
Thanks for your suggestion.
Currently, MB Blocks does not support rendering a block without any user input, it is not meaningful. Instead of trying to create a block like that, I think you can create your own shortcode and add the shortcode to a Shortcode block. It would have the same purpose since you do not want to allow the customer to add something. -
AuthorPosts