Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Andrew,
If the block content shows the admin area, it should show in the frontend properly. You can try to deactivate all plugins except Meta Box, MB extension plugins, switch to a standard theme of WordPress and check this issue gain.
If it persists, please share the template.php file content here, I will help you to check the issue.
February 3, 2024 at 2:30 PM in reply to: โ Conditional Logic not working properly (over and over again !!) #44465Peter
ModeratorHello,
In the screen record, I only see the field settings
query_terms_img, nothing more. So I don't understand the issue. Please share the code that registers the custom fields (both field groups) and screen record of the issue again.Thanks for your patience.
February 3, 2024 at 2:08 PM in reply to: custom field data does not show, but is in the database #44464Peter
ModeratorHello,
I understand the issue. The field ID in the builder is
product_descriptionbut in the database, it isproduct_description:, notice the colon character:.
I correct the field ID in the database and it shows when editing the post as well. Screenshot https://imgur.com/a/AzX9x0vPeter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.February 2, 2024 at 10:09 PM in reply to: custom field data does not show, but is in the database #44459Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
Currently, the relationship extension doesn't support an option or a filter hook to adjust the search result and display items. I will inform the development team to explore the possibility.
Thank you.
February 1, 2024 at 9:28 PM in reply to: Getting error with $callback function using the WP code lite plugin #44453Peter
ModeratorHello,
Meta Box functions are executed at
inithook with priority 20. If you use a code editor plugin, you can try to run the snippet at theinithook with a priority later than 20 and recheck the issue.
Otherwise, please contact that plugin support to get further assistance.Peter
ModeratorHello,
Please export your field group to a JSON file and share it here. I will check it on my demo site. Following the documentation https://docs.metabox.io/extensions/meta-box-builder/
Peter
ModeratorHello,
No, you should create a separate
textfield with the IDaddress_xxxto retrieve the suggestions address for the map. Here ist the sample code:'fields' => [ [ 'name' => __( 'Address', 'your-text-domain' ), 'id' => $prefix . 'address', 'type' => 'text', ], [ 'name' => __( 'Lat', 'your-text-domain' ), 'id' => $prefix . 'lat', 'type' => 'text', ], [ 'name' => __( 'Lng', 'your-text-domain' ), 'id' => $prefix . 'lng', 'type' => 'text', ], [ 'name' => __( 'Map', 'your-text-domain' ), 'id' => $prefix . 'map_v0mlzrv141', 'type' => 'map', 'api_key' => 'xxx', 'address_field' => 'address', ], ]Peter
ModeratorHello,
Thank you for your feedback.
I've escalated the 403 error to the development team, it should be fixed as soon as possible.
Peter
ModeratorHello,
There could be an issue with the field setting
clonewhen registering custom fields on your site. Do you use the code to register custom fields? If yes, please share the code here, I will take a look.Peter
ModeratorHello Sridhar,
If you use the function rwmb_set_meta(), you should hook to the action
initwith a priority later than 20. Or use the WordPress function update_post_meta() to set the field value for the page.January 30, 2024 at 10:32 PM in reply to: โ Hide Field On Specific MB Frontend Page Template #44435Peter
ModeratorHello,
You can create a new custom field
selectwith the field IDpage_templateto use the conditional logic. Then after saving the post, you can use the code to update the page template.
Please follow this article https://tommcfarlin.com/programmatically-set-a-wordpress-template/
and documentation https://docs.metabox.io/actions/rwmb-after-save-field/Peter
ModeratorHello,
I don't see you have an
addressfield for the map field. Do you use thelatfield as the address field?
Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#address-fieldPeter
ModeratorHello Fabien,
The frontend submission is available for visitors to submit posts but only logged-in users can view their posts in the frontend dashboard.
Please read more in the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard -
AuthorPosts