Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Peter,
Thank you for your feedback.
It's just a default favorite posts dashboard. You can follow this documentation to create your own dashboard with coding
https://docs.metabox.io/mb-favorite-posts/#dataAugust 6, 2021 at 10:04 PM in reply to: ✅Use shortcode to display custom taxonomy metadata with taxonomy #29973Long Nguyen
ModeratorHi,
The shortcode helps you to show the custom fields created by Meta Box, one field per shortcode.
But if you want to create a page that supports editing the taxonomy on the frontend, I think you are going in the wrong way. The shortcode supports showing the value on the frontend instead of changing its value.
August 6, 2021 at 9:42 PM in reply to: How to Install Custom Table if I created the table with phpmyadmin #29971Long Nguyen
ModeratorHi,
Yes, it works with any post type including the Product. You need to assign
productto the settingpost_typeswhen registering the meta box.add_filter( 'rwmb_meta_boxes', 'prefix_register_meta_boxes' ); function prefix_register_meta_boxes( $meta_boxes ) { $meta_boxes[] = [ 'title' => 'Personal Information', 'post_types' => 'product', ...Get more details here https://docs.metabox.io/creating-meta-boxes/#using-code
Long Nguyen
ModeratorHi,
Yes, that issue is in our development queue. It will be fixed and included in future updates.
Long Nguyen
ModeratorHi,
Total columns under each tab should be 12, like this
'fields' => [ [ 'name' => __( 'Active', 'monitor_status' ), 'id' => $prefix . 'active', 'type' => 'switch', 'style' => 'rounded', 'on_label' => 'Active', 'off_label' => 'Inactive', 'std' => true, 'columns' => 12, 'tab' => 'monitor_details', ], [ 'name' => __( 'Total Gallons', 'total_gallons' ), 'id' => $prefix . 'total_gallons', 'type' => 'number', 'columns' => 12, 'tab' => 'tank_configuration', ], ]Get more details on the documentation https://docs.metabox.io/extensions/meta-box-columns/
Long Nguyen
ModeratorHi Paul,
If you assign a View to a specific post type location, Elementor might not preview to edit this post because the View template will override the post template of the theme. If you want to use Elementor to edit that post type, please set the View location to Shortcode then add the shortcode to Elementor builder.
August 6, 2021 at 12:58 PM in reply to: ✅Use shortcode to display custom taxonomy metadata with taxonomy #29951Long Nguyen
ModeratorHi,
The helper shortcode
[rwmb_meta]also support showing the term meta, please read more on the documentation https://docs.metabox.io/shortcode/#examplesLong Nguyen
ModeratorHi,
Thanks for your feedback.
Please add the attribute
patterninattributessetting like this// Attributes for validation. 'required' => true, // Make the field required. 'attributes' => [ 'pattern' => '[0-9]{9}', // Must have 9 digits ]I will inform the development team to check the issue with the global attributes.
Long Nguyen
ModeratorHi Andrew,
Using a double of open and closing curly bracket means printing out the variable. If you want to compare it in a condition, please just remove them.
{% if post.orange_button is empty %}August 5, 2021 at 9:44 PM in reply to: ✅Displaying Taxonomy Advanced / Select Advanced field in front end #29930Long Nguyen
ModeratorHi Darren,
That means you need to use a loop to iterate through the array elements to get terms. Please get more details here https://docs.metabox.io/fields/taxonomy-advanced/#template-usage
Long Nguyen
ModeratorHi Lukas,
Thank you for getting in touch.
We have a short video tutorial to get started with Meta Box and extensions, please find it here https://docs.metabox.io/quick-start/
Long Nguyen
ModeratorHi Daniel,
Thank you for your feedback.
I do not see the house number with a hyphen between numbers when typing the address, screenshot https://share.getcloudapp.com/Jruxl97D
The house number should be typed first. Can you please re-check it?
Long Nguyen
ModeratorHi,
I've issued the refund for you.
Long Nguyen
ModeratorHi,
I didn't see the issue like that, screen record https://www.loom.com/share/2ec8f7c28566454db4c07bcbfc498d13
The conditional logic works based on JavaScript show/hide so it is possible that there is a plugin or a block of code that affects the function of conditional logic on your admin area. Please open the Console tab in the Inspect tool to check if there is an error message.
Long Nguyen
ModeratorHi,
We need only one relationship between Author and Publication.
- Assign some publication posts to the term
highlight - Use the setting
query_argswhen creating the relationship to show the publications that have the termhighlighton the select box.
- Assign some publication posts to the term
-
AuthorPosts