Forum Replies Created
-
AuthorPosts
-
May 13, 2023 at 9:53 AM in reply to: ✅"Group Title" shows the text "{subfield_id}" instead of the value #41815
Peter
ModeratorHello,
Can you please share some screenshots of the field group? Or export it to a JSON file and share it here, I will import the field group to my demo site and check the issue.
May 12, 2023 at 8:43 PM in reply to: ✅Beaver Builder Launch Button Broken when Meta Box fields added to post type #41812Peter
ModeratorHello,
Sorry, a mistake. It's in the Meta Box plugin, please wait for the next update of the plugin or you can try to apply the fix on your end.
May 12, 2023 at 8:42 PM in reply to: Post Field: 'Set as Parent' Does not save field value in Custom DB Table #41811Peter
ModeratorHello,
If you use the option "Set as Parent", the field does not save the value to the postmeta table or custom table. It will set the post_parent in the table wp_posts. Saving a meta value, in this case, is not necessary.
If you want to save a meta value to the DB, you can take a look at the actionrwmb_after_save_postto set a post meta after saving the post.Please read more on the documentation
https://docs.metabox.io/actions/rwmb-after-save-post/
https://docs.metabox.io/extensions/mb-custom-table/#apiPeter
ModeratorHello,
If you want to stripe the slashed from the field value after adding in the admin area, please create a custom sanitize callback. The default sanitize function of WordPress does not support striping the slashes, please follow the documentation https://developer.wordpress.org/reference/functions/sanitize_text_field/
https://docs.metabox.io/sanitization/#custom-sanitize-callbackIf the value is inserted into the DB from another source like Rest API, you can stripe the slashes from the value before inserting it into the DB.
I've tested with a custom table and see the same results.
Peter
ModeratorFix the issue by enabling the option "Save field value" in the field settings > Advanced tab, screenshot https://monosnap.com/file/vYTozfp7hXYF5EIii9s3fSBgrOqovD
May 11, 2023 at 9:08 PM in reply to: ✅"Group Title" shows the text "{subfield_id}" instead of the value #41805Peter
ModeratorHello,
Do you enable the Collapsible option for the group field? It is required to use the dynamic group title, please follow this documentation https://docs.metabox.io/extensions/meta-box-group/#collapsible-groups
Peter
ModeratorHello,
There is no option to group each cloneable field by category.
If you want to set the dynamic title for the group based on the field value, please follow the documentation https://docs.metabox.io/extensions/meta-box-group/#collapsible-groupsPeter
ModeratorHello Scott,
Thanks for your feedback.
I see in the frontend dashboard table, the status text is capitalized as the label. In the favorite dashboard table, you can simply use this CSS code.
.mbfp-posts tbody tr td:nth-child(3) { text-transform: capitalize; }Peter
ModeratorHello,
Thank you for your feedback.
There is an issue with the WYSIWYG field and I've escalated it to the development team to fix the issue. Meanwhile, you can switch to the Text mode of the field and use the quick tags to insert
<li>and other tags with a basic knowledge of HTML.Peter
ModeratorHello Jason,
The JS source map file is used to debug the error easier, it does not cause the error on your site. The popper and tippy js files are the library of Bootstrap so I think there is a plugin or block of code that conflicts with the code in those files.
Please read more here https://stackoverflow.com/questions/21719562/how-can-i-use-javascript-source-maps-map-files
Peter
ModeratorHello Jorge,
The lowest user role of WordPress to create/edit a post is Contributor and they can still add the custom block when editing a post. I do not see that issue on my end. You can check the capabilities of this role with the plugin User Role Editor and apply them to your custom role.
https://wordpress.org/plugins/user-role-editor/Peter
ModeratorHello,
Here is an example to move field value from the default table wp_postmeta to the custom table and delete the old data also
https://metabox.io/move-custom-fields-data-to-custom-tables/?swcfpc=1May 10, 2023 at 7:09 PM in reply to: The main Settings page URL is wrong when my custom settings page is at the top #41791Peter
ModeratorHello,
It looks like you are using a custom code to move the custom settings page to the top of the default submenus. If you use the WordPress function to register a submenu and move it to the top also, does the issue happen?
https://developer.wordpress.org/reference/functions/add_submenu_page/Peter
ModeratorHello Jan,
I see the reCaptcha feature works as well on your site so I'm not sure why the bot can pass the restriction. If the reCaptcha v3 does not help to prevent the bot from spamming, you can consider using another plugin like Akismet to see if it helps.
Or you can create honeypot fields to filter the bot submission, follow this article https://dev.to/felipperegazio/how-to-create-a-simple-honeypot-to-protect-your-web-forms-from-spammers--25n8May 10, 2023 at 5:44 PM in reply to: ✅Beaver Builder Launch Button Broken when Meta Box fields added to post type #41789Peter
ModeratorHello Mark,
Thank you for your feedback. The development team has fixed this issue in this commit https://github.com/wpmetabox/meta-box/commit/289131a7e5fcda89959453ee1af24b35181fe5bd
I will be included in the next update of MB Beaver Themer Integrator. -
AuthorPosts