Forum Replies Created
-
AuthorPosts
-
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/March 6, 2025 at 8:14 PM in reply to: MB_Relationships_API::each_connected not working, need fix or alternative #47791Peter
ModeratorHello Matthias,
The issue with
MB_Relationships_API::each_connectedhas been resolved. Can you please update Meta Box plugins to the latest versions and recheck the issue?March 5, 2025 at 9:45 PM in reply to: Two bugs to report. ColorPicker breaks Settings Pages.. #47783Peter
ModeratorHello Alan,
Thank you for your feedback.
1. For the first issue, please try to increase the PHP setting
max_input_varsand see if it helps. Read more about the PHP setting in the documentation https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/2. I can reproduce the issue with user profile field on my site. I've escalated it to the development team to fix it soon.
Peter
ModeratorHello,
meta-boxplugin is a dependency, not an extension so it won't be controlled by the filter hookmeta_box_aio. You don't need to add it to the callback function. -
AuthorPosts