Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Christie,
This feature has been already added to the queue. Our development team will work on this and include it in future updates.
Thanks and have a good day.
Peter
ModeratorHello Harry,
Thank you for your feedback. Currently, Meta Box doesn't work with HPOS feature of WooCommerce. This issue has been escalated to the development team and we will work on this to release an update in the future.
Let me know if you have any questions.
March 10, 2025 at 11:04 PM in reply to: ✅Cannot assign custom fields to Post Type (reverts to 'post' every time) #47814Peter
ModeratorHello John,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Refer to this topic https://support.metabox.io/topic/customer-fields-will-not-assign-to-custom-post-type/
Peter
ModeratorHello,
There is no action hook for Ajax submission. In the background, it processes the same functions with/without Ajax. Please check all the Frontend form hooks in the documentation
http://docs.metabox.io/extensions/mb-frontend-submission/#hooks-1Peter
ModeratorHello Yasmine,
I try to reproduce the issue on my site but don't see that. The taxonomy_advanced field will show the placeholder first without selecting any option.
Can you please create a new field in a new field group and recheck the issue? You can also try to deactivate all plugins except Meta Box plugins, switch to a WordPress theme and see how it works.Peter
ModeratorHello Alistair,
Have you created the custom post types with code? The post types created with code won't be available in the builder Meta Box > Post Types. Only the post types created by the builder will be displayed there.
Following the documentation https://docs.metabox.io/extensions/mb-custom-post-type/
March 9, 2025 at 8:23 PM in reply to: The loading of the WYISWG editor fields are still really really slow #47807Peter
ModeratorHello Peter,
Thank you for your feedback.
As I can see in your screen record, there are too many WYSIWYG fields on an editing page, which could slow down the loading time because each field needs to be enqueued some script files: CSS and JS to work.
Can you please export your field group to a JSON file and share it here? I will try to reproduce the issue and report it to the development team.
Please follow the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--importPeter
ModeratorHello,
Here is an example of how to use the hook
rwmb_frontend_before_display_confirmationadd_action( 'rwmb_frontend_before_display_confirmation', function() { echo '<p>Custom text before confirmation</p>'; } );you can use the hook to show something before the confirmation message after submitting the form, screenshot https://imgur.com/LaWE3q8
Peter
ModeratorHello Fernando,
If you have a refund request, please contact us here https://metabox.io/contact/
Our support team will get in touch with you shortly.March 7, 2025 at 10:34 PM in reply to: Meta Box AIO v2.0.2 with Admin Columns Pro v6.4.15 display problem #47799Peter
ModeratorYes, this is a public forum and everyone can see the content of the topic. If you want to send a private reply, please submit this contact form https://metabox.io/contact/
Thank you.
March 7, 2025 at 10:32 PM in reply to: Two bugs to report. ColorPicker breaks Settings Pages.. #47798Peter
ModeratorHello,
>> so MB must be sending a lot of hidden fields etc
Yes, they are field settings (POST variables) also saved along with the WordPress fields. You might notice this when you update/publish a field group and check the Network tab to see all variables are passed.
March 6, 2025 at 11:44 PM in reply to: Meta Box AIO v2.0.2 with Admin Columns Pro v6.4.15 display problem #47795Peter
ModeratorHello,
Can you please share the current version 6.4.15 of Admin Columns Pro so I can reproduce the issue on my site? You can upload it to Google Drive or Dropbox and add the URL to your next reply.
Peter
ModeratorHello Craig,
As replied in the ticket system. You can safely delete the key if it has too many characters to be saved in the database.
We store keys of frontend form configs into database to be able to retrieve its settings later. This key can be safely deleted regularly as it's used for temporary only.March 6, 2025 at 8:49 PM in reply to: Meta Box lost ability to update Custom Table Group fields via API after 1.30.5 #47793Peter
ModeratorHello,
Thanks for the details. I've asked the development team to check it again and I will get back to you as soon as possible.
Peter
ModeratorYes, they are correct handle names
rwmbrwmb-inputrwmb-input-list...you can find them in the meta-box plugin folder. Refer to the WordPress documentation
https://developer.wordpress.org/reference/functions/wp_enqueue_style/ -
AuthorPosts