Forum Replies Created
-
AuthorPosts
-
May 29, 2020 at 3:08 PM in reply to: ✅How to get to an archive view for all posts of CPT AND specific taxonomy? #19915
Long Nguyen
ModeratorHi,
To show the post with specific taxonomy, please just use the Taxonomy (Category) Archive and set the specific term. Let's take a look at my screen record https://www.loom.com/share/47a362bf159c4b1893598fede4d0b2ac.
Long Nguyen
ModeratorHi,
You can use the filter hook
rwmb_profile_register_fieldsto modify default fields of the register form. Follow my sample codeadd_filter( 'rwmb_profile_register_fields', 'add_more_register_fields' ); function add_more_register_fields( $fields ) { $new_fields = [ 'phonenumber' => [ 'name' => __( 'Phone Number', 'mb-user-profile' ), 'id' => 'phonenumber', 'type' => 'number', ], ]; $fields = array_merge( $fields, $new_fields ); return $fields; }and here is the result https://share.getcloudapp.com/P8uEJzqr.
For more information, please follow the documentation https://docs.metabox.io/extensions/mb-user-profile/#form-fields-filters.
Long Nguyen
ModeratorHi,
All texts of the extension are ready translation, you can use the plugin Loco Translate to translate the text on the page lost password to the Korean language.
When translating the text, remember click button Sync and Save to get the new translatable text, see my screenshot https://share.getcloudapp.com/nOu8qrvX.
Long Nguyen
ModeratorHi,
Could you please let me know what the problem with updating the plugin MB Tabs? I've tested to update the plugin again but not see any problem.
May 29, 2020 at 9:47 AM in reply to: ✅Select Tags and add a new tag with MB Frontend Submission #19895Long Nguyen
ModeratorHi,
Currently, we only support the field
taxonomyto add the taxonomy for the post with a list existing taxonomies. I'm going to create a feature request to support add a tag if it does not exist. Thank you.Long Nguyen
ModeratorHi guys,
Please update the latest version of MB AIO to v1.11.9 or MB Settings Page to v2.1.1 to fix this issue.
May 29, 2020 at 9:09 AM in reply to: ✅How to get to an archive view for all posts of CPT AND specific taxonomy? #19889Long Nguyen
ModeratorHi,
In the settings box of View, you can choose Type: Archive, Location: Product Archive AND (add rule group) Category Archive: Accessories (for WooCommerce example).
See my screenshot https://share.getcloudapp.com/BluZnqxz.
Long Nguyen
ModeratorHi,
You can use the function
get_the_post_thumbnail_url()to get the post thumbnail URL and call it viambproxy. The code should be{{ mb.get_the_post_thumbnail_url( post.ID ) }}.For more information, please follow the documentation https://developer.wordpress.org/reference/functions/get_the_post_thumbnail_url/.
Long Nguyen
ModeratorHi,
The plugin PublishPress Capabilities can help you to set the permission for users. Hope that helps.
Long Nguyen
ModeratorHi Locke,
The feature supports the
textareafield as the code editor is in our roadmap. We are working to make it done and include it in the future update. Thank you.Long Nguyen
ModeratorHi,
Could you please share the code which creates fields Map and Text? I will check the code on my end and let you know if there is any problem.
Long Nguyen
ModeratorHi Jason,
To get the post permalink, please use the function
get_permalink()and call it viambproxy. The code should be{{ mb.get_permalink( post.ID ) }}.For more information, please follow the documentation
https://developer.wordpress.org/reference/functions/get_permalink/and variables (properties) we can use with
postobject.
https://codex.wordpress.org/Class_Reference/WP_PostLong Nguyen
ModeratorHi,
As I understand, you are using MB Frontend Submission to collect the location from the user. Every time the user submits the form, it will create a post location with field value Business Address.
The footer content is fixed for the entire website, so I think you should use the shortcode to show the field value of a specific location (post type).
[rwmb_meta id="field_id" object_id="15"]For more information, please follow the documentation.
https://docs.metabox.io/shortcode/Long Nguyen
ModeratorHi,
I'm going to check it out and let you know later. Thank you.
Long Nguyen
ModeratorHi Steve,
There is a misunderstanding here, Product is a post type so you should choose Show for: Posts instead of Taxonomy, see my screenshot https://share.getcloudapp.com/o0ug5XAR.
Please follow this guide to know the post type and taxonomy https://www.wpbeginner.com/beginners-guide/when-do-you-need-a-custom-post-type-or-taxonomy-in-wordpress/.
-
AuthorPosts