Forum Replies Created
-
AuthorPosts
-
April 7, 2023 at 6:39 PM in reply to: [MB Frontend Submission] Post Management & User Dashboard delete post action #41381
Peter
ModeratorHello,
Please make sure the id attribute of the frontend submission shortcode is added to display the trash icon in the frontend dashboard. For example:
[mb_frontend_form id='my-custom-fields' post_fields='title,content']Peter
ModeratorHello,
It could be an issue with a custom code on your site. You can try to deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress and check this issue again.
April 7, 2023 at 5:57 PM in reply to: ✅Issues with Custom Field Groups not saving to Custom Table #41379Peter
ModeratorHello,
Please add the table name to create the custom table and save the field value to the table.
April 7, 2023 at 5:54 PM in reply to: ✅Why is this Type (Backup) only availabe via CustomCode? #41378Peter
ModeratorHello,
Do you mean to use the backup field type in the builder? It is possible, please read more here https://docs.metabox.io/extensions/mb-settings-page/#backup--restore-settings
Peter
ModeratorHello,
The custom field ID and value are saved in the database, table wp_postmeta with the format meta_key: meta_value and they are associated with the post by ID. So if you want to display the same field value on page B as page A, you need to copy the value to the field on page B.
If you don't want to do that manually, you can use the code. Please read more on the documentation
https://docs.metabox.io/functions/rwmb-set-meta/
https://developer.wordpress.org/reference/functions/update_post_meta/Peter
ModeratorHello Will,
Do you use the Rest API to get/update the value from the custom table?
Peter
ModeratorThanks for your confirmation. Have a good day 🙂
April 5, 2023 at 7:16 PM in reply to: ✅Newly created custom post type name is not showing up in wordpress dashboard - l #41358Peter
ModeratorHello Jordan,
You can try to use the
rewriteoption to set the unlimited characters for CPT slug. It is not restricted by WordPress. Refer to the documentation https://developer.wordpress.org/reference/functions/register_post_type/#rewriteApril 5, 2023 at 7:10 PM in reply to: [Feature Request] Conditional logic on TAB field (and all the fields within) #41357Peter
ModeratorHello,
If you want to hide tabs with conditional logic, please follow the documentation https://docs.metabox.io/hide-tabs-with-conditional-logic/
Peter
ModeratorHello Adrien,
Thanks for your feedback.
I will inform our development team to consider supporting this feature in future updates.
Peter
ModeratorHello,
I run your code on my demo site and add some images to the WYSIWYG field and save post but do not see that issue. Please try to disable all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress and check this issue again.
April 5, 2023 at 6:12 PM in reply to: ✅Issues with Custom Field Groups not saving to Custom Table #41354Peter
ModeratorHello,
Can you please share some screenshots of the issue on your site? You can try to deactivate all plugins except Meta Box, MB AIO and switch to a standard theme and check the issue again. If it does not help, please enable WP debug and check if there is any error in the log then share it with me.
Peter
ModeratorHello,
There are some issues in your View code:
- If you want to set the variable, don't use the dot (.)
{% set item_selection_group = mb.get_posts( args ) %}- There is no format to use the order in the for loop like that
{% for clone in post.item_selection_group, orderby: 'clone.select_d8hqbs14ib6.label', order: 'ASC' }If you are new to Twig, please read more in the documentation
https://docs.metabox.io/extensions/mb-views/#twigIf you are not able to accomplish the task, please create a customization service request here https://metabox.io/contact/, our development team will help you with an extra fee.
Peter
ModeratorHello,
I don't see that issue on my demo site. You can try to deactivate all plugins and leave Meta Box, MB extensions, switch to a standard theme of WordPress and check this issue again.
Peter
ModeratorHello,
You can try to use this View code to exclude the content from the provided post IDs
{% set post_ids = [895, 890, 882] %} {% set current_post_id = mb.get_queried_object_id() %} {% if ( current_post_id not in post_ids ) %} <h1>heading here</h1> {% set relationship = attribute( relationships, 'speaker-topic' ) %} ... {% endif %} -
AuthorPosts