Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Dan,
Thanks for reaching out.
The integration between Meta Box and Oxygen is maintained by the Oxygen dev team. I understand your issue but it isn't possible to make the changes on our side. Please contact Oxygen support to get further assistance.
Refer to our support policy https://support.metabox.io/topic/support-policy/
For plugins that officially support Meta Box, like Oxygen Builder, SearchWP, Admin Columns, ... please reach out to them if you have any issues with installation, configuration, compatibility, or usage.Also, we offer a custom development with an extra fee. Let me know if it works for you.
May 4, 2024 at 10:07 AM in reply to: Error message: Cannot declare class MB_Relationships_FacetWP #45369Peter
ModeratorHello,
If you activate the plugin Meta Box AIO, no need to use the single extension plugin. Please deactivate the single plugin to solve the error message.
If using the plugin Meta Box AIO then the Facet doesn't work on your site, can you share some screenshots of the issue? As I know, the Facet filter will work on the archive CPT page.
Peter
ModeratorHello Will,
There is a filter hook
rwmb_frontend_dashboard_post_titlethat supports modifying the post title in the frontend dashboard. Please read more about frontend dashboard filters in the documentation
https://docs.metabox.io/extensions/mb-frontend-submission/#dashboardFor example:
add_filter( 'rwmb_frontend_dashboard_post_title', function( $title ) { $title = '<span>' . get_the_title() . '</span>'; return $title; } );May 3, 2024 at 10:29 PM in reply to: ✅div.rwmb-row not properly closing - resulting in nested meta box tab #45366Peter
ModeratorHello Hinnerk,
You can use https://pastebin.com/ to share the code or upload the test plugin to Google Drive and paste the link here.
Also, please notice that the total of columns should equal 12. Following the documentation https://docs.metabox.io/extensions/meta-box-columns/
Peter
ModeratorHello David,
What are the versions of Meta Box plugins on your site before updating? I will try to reproduce the issue on the demo site and escalate it to the development team.
Peter
ModeratorHello Colette,
Can you share some screenshots of the View editor and settings?
Peter
ModeratorHello Kade,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.May 3, 2024 at 10:03 PM in reply to: Create a database table on registering a custom post with metabox #45362Peter
ModeratorHello,
Can you please explain why using custom models over custom tables is suggested?Because it works with the custom fields of Meta Box, as your requirements.
If I use a custom model, am I able to create a dynamic custom model upon the creation of a custom post-type?No. It is separated from the standard custom post types of WordPress.
How can I create/assign a cloneable group of custom fields for this custom model?All the information is noted in the documentation https://docs.metabox.io/extensions/mb-custom-table/#custom-models
April 30, 2024 at 11:19 PM in reply to: WooCommerce High-Performance Order Storage (HPOS) Support and Compatibility #45350Peter
ModeratorHello,
The WooCommerce HPOS uses an admin page to show the data instead of the standard editing post page and Meta Box custom field isn't compatible with HPOS to show the field on that page. I will inform the development team to consider supporting this feature in future updates.
Thank you.
Peter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
I see you are using Bricks Builder to output the field value, that might be the issue. Please try to use the helper function
rwmb_meta()or helper shortcode[rwmb_meta]to output the field value without the builder and check the issue again.
https://docs.metabox.io/functions/rwmb-meta/
https://docs.metabox.io/shortcode/April 30, 2024 at 10:56 PM in reply to: Create a database table on registering a custom post with metabox #45347Peter
ModeratorHello,
If you want to save the post type in a custom table, you can try to use the custom model of Meta Box. Please follow the documentation https://docs.metabox.io/extensions/mb-custom-table/#custom-models
If not, there isn't a way to make custom fields of Meta Box work with your custom post type.
Peter
ModeratorHello,
To simplify, please output the subfield value with this code
foreach($attr['data']['modules'] as $module) { echo $module['price']; }if it still doesn't work, please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorThanks, Juan. You are correct. It's the standard feature of WordPress, not Meta Box. There is a hint next to the slug, about the characters exceeding, screenshot https://imgur.com/NuavWwD
I will inform the development team to add an error message when the characters exceed 20.
Peter
ModeratorHello Travis,
What is the WordPress version on your site? Please update WP to the new version 6.5.2, deactivate all plugins except Meta Box, MB extension plugins, switch to a WordPress theme and check the issue again.
-
AuthorPosts