Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
I do not see that issue on my demo site. Can you please share the code that creates the field and some screenshots on your site?
And please make sure that you have the latest version of Meta Box AIO 1.15.5 or MB User Profile 1.8.2
Long Nguyen
ModeratorHi,
If you want to create the custom permalink structure like that, please refer to this topic https://stackoverflow.com/questions/41494883/show-only-specific-categories-in-permalinks-for-custom-post-type-in-wordpress/#answer-41654620
January 24, 2022 at 1:06 PM in reply to: ✅Links in WP Admin Bar not appearing for custom post types #33425Long Nguyen
ModeratorHi,
No need to activate the CPT UI plugin when you use the MB Custom Post Type plugin. You can move all CPTs from CPT UI to Meta Box as well. Refer to this article https://metabox.io/move-custom-post-types-custom-taxonomies-from-cpt-ui-to-meta-box/
Long Nguyen
ModeratorHi,
The returning array means you need to use another loop to iterate through elements of the array to output the value.
To get the info of a term ID, field taxonomy in a group, you can use the WordPress function
get_term(). Refer to this documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-valuesLong Nguyen
ModeratorHi Ben,
You can follow this article to increase the PHP setting
max_input_varshttps://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/If it does not help, please share the code that creates the field on your site. I will check it on my end.
Long Nguyen
ModeratorHi Chris,
Please follow this documentation to add the custom data to the View shortcode via the custom attribute https://docs.metabox.io/extensions/mb-views/#custom-data
Long Nguyen
ModeratorHi,
We've pushed the fixed and kept the current version. Please go to the My Account page and download this extension again.
January 23, 2022 at 5:00 PM in reply to: ✅Links in WP Admin Bar not appearing for custom post types #33411Long Nguyen
ModeratorHi,
Please share the code that creates the CPT on your site, I will try to implement it on my end and check the issue.
Long Nguyen
ModeratorHi,
The code will look like
add_action( 'rwmb_frontend_after_process', function( $config, $post_id ) { $value = empty( $_POST['post_title'] ) ? null : $_POST['post_title']; wp_mail( '[email protected]', 'New submission', 'A new post has been just submitted from '. $value .' user' ); }, 10, 2 );Long Nguyen
ModeratorHi,
You need to include two meta box IDs in the frontend shortcode to make the conditional logic works on the frontend. It's just the JavaScript code to show/hide HTML elements.
[mb_frontend_form id='ctavideos_decision_player_metabox,ctavideos_playlist_metabox']January 23, 2022 at 8:32 AM in reply to: ✅Links in WP Admin Bar not appearing for custom post types #33402Long Nguyen
ModeratorHi,
Please try to re-save the permalink settings (Post name) to fix this issue. I didn't see that on my demo site.
https://monosnap.com/file/ebd1rvUOgrNVoxNSdNva7CaNvuGKKlLong Nguyen
ModeratorHi,
You can use the extension MB Include Exclude to load meta box based on a condition. Read more on the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/
Long Nguyen
ModeratorHi Chris,
Please refer to this topic to query posts with taxonomy arguments
https://support.metabox.io/topic/create-filter-by-category/Long Nguyen
ModeratorHi Armand,
Can you please share the code that creates the fields and logic on your site? You can also troubleshoot the issue by deactivating all plugins except Meta Box, Meta Box AIO and switching to the standard theme of WordPress (Twenty TwentyOne).
Long Nguyen
ModeratorHi,
You can use 1 CPT for that structure. You also need to use the extension MB Relationships to create a relation between two taxonomy Destinations and Categories. In each term City, you can create connections to term Restaurants, Parks, Airports ...
https://docs.metabox.io/extensions/mb-relationships/ -
AuthorPosts