Forum Replies Created
-
AuthorPosts
-
October 15, 2024 at 11:01 PM in reply to: Can't type anymore in the editor after pasting code #46686
Peter
ModeratorI can see the issue after pasting the script code to the View editor. I've escalated it to the development team to check and fix the issue.
Thank you.
Peter
ModeratorHello,
I will forward your request to the development team to consider supporting this in future updates. In the meantime, if you want to customize the plugin MB Favorite Posts, we offer a customization service for an extra fee. Please contact us here https://metabox.io/contact/ for more details.
October 14, 2024 at 11:32 PM in reply to: Can't type anymore in the editor after pasting code #46677Peter
ModeratorHello Michael,
Can you share the code that you paste to the editor? I test to paste some sample code, text ... and I can edit the pasted text as well.
Peter
ModeratorHello Philipp,
Thank you for your feedback. It is an issue with the clone empty start feature of the group field. I've escalated this issue to the development team to fix it in the next update of our plugins.
Peter
ModeratorHello,
What do you mean "the front end does not show what the backend shows"? Please share the code that you use to output the field value in the frontend and some screenshots of the value on both sides (front, back) on your site.
Peter
ModeratorHello,
Thank you for your feedback.
I'm going to forward your ideas to the development team to consider supporting them in future updates.
October 11, 2024 at 10:32 PM in reply to: ✅Meta Box AIO License page not accessible with composer #46664Peter
ModeratorHello,
Even adding Metabox AIO through composer as a library still do I need to activate my license for the Meta Box AIO through the WP Admin dashboard settings page again?Yes, installing plugins via composer doesn't relate to the activated license key on your site. You still need to activate the license key on your site to use premium plugins.
If you cannot access the License page, try to activate the license key by adding the code to the file wp-config.php
define( 'META_BOX_KEY', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ123456' );Following the documentation https://docs.metabox.io/updates/#can-i-define-the-license-key-via-a-constant-in-wp-configphp
Peter
ModeratorHello Yasmine,
Thank you for your feedback.
I can reproduce the issue on my demo site, if you click on the radio text, it will select the last option. If you click on the radio circle icon, it will select the correct one. Screenshot https://imgur.com/5WBz1hd
October 11, 2024 at 9:43 PM in reply to: ✅WYISWG editor do not work inside nested group on some instances #46662Peter
ModeratorHello,
Can you please export the field group to a JSON file and share it here? I will check the post field on my demo site. Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorHello,
If you delete a cloneable entry, you can save the post and reload the page, the index number will be corrected. If you use a custom JS code, you might need to listen to the DOM change and re-trigger the function to check the clone entries.
October 9, 2024 at 10:41 PM in reply to: ✅Custom Post no longer editable (displays no content when pressing edit) #46647Peter
ModeratorHello Frerik,
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/Let me know how it goes.
Peter
ModeratorHello,
1. If you add the post ID directly to the frontend form shortcode, do you see the error appear? For example:
[mb_frontend_form id="your-form-id" post_id="208" post_type="artwork" edit="true"]2. Can you please let me know where you get this filter hook
rwmb_frontend_access? It isn't available in the documentation or the source code
https://docs.metabox.io/extensions/mb-frontend-submission/Peter
ModeratorHello,
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/Let me know how it goes.
October 9, 2024 at 9:50 PM in reply to: after_save_post on settings page - values not updated #46644Peter
ModeratorIs the documentation incorrect?The documentation is correct. But the function
update_post_meta()will update the post meta, not the settings page value. Here is an example:add_action( 'rwmb_fundraiser-fields_after_save_post', function( $object_id ) { update_option(...); } );If you cannot complete the task, we offer a customization service. Please contact us here for more details https://metabox.io/contact/
Peter
ModeratorHello Andrew,
There is only one variable
$message(text) is passed to the filter hookrwmb_oembed_not_available_stringso it isn't possible to add a link to the URL if it isn't available. I will inform the development team to consider adding the URL variable to the filter hook.Thanks for sharing your solution.
-
AuthorPosts