Forum Replies Created
-
AuthorPosts
-
August 21, 2020 at 10:16 AM in reply to: ✅Customizer Draft/Schedule Does not work with MB Settings Values #21375
Long Nguyen
ModeratorHi,
Thank you for pointing this out.
Luckily, the Share Preview Link still saves the value and displays it correctly. I'm going to discuss with the developer team to cover this case.
Long Nguyen
ModeratorHi Jackky,
As I understand you want to create the custom admin columns, it helps you to show the custom field which is not created by Meta Box. But the sortable is only supported for the field which created by Meta Box.
I will discuss it with the developer team to research and cover this case. Thank you.
Long Nguyen
ModeratorHi,
I'm using WordPress version 5.5, Meta Box v5.3.3, Meta Box AIO v1.11.18 but not experience this issue. See my screen record https://www.loom.com/share/3561117e89484af292da4ba0298b21e8.
Could you please deactivate all plugins except Meta Box and MB extensions then clear all the cache and check the issue again?
August 20, 2020 at 10:49 AM in reply to: ✅How to implement text limiter in "text field" using Plugin #21363Long Nguyen
ModeratorHi Shane,
If you do not use the code, you can use the MB Builder then add the custom attribute to the field. See my screenshot https://share.getcloudapp.com/L1uJdZOe.
For more information, please follow the documentation.
https://docs.metabox.io/extensions/meta-box-text-limiter/
https://docs.metabox.io/extensions/meta-box-builder/#custom-attributesLong Nguyen
ModeratorHi,
The extension MB Tooltip v1.1.3 supports to show the HTML code in the content.
array( 'id' => 'name', 'type' => 'text', 'name' => 'Name', 'tooltip' => array( 'icon' => 'help', 'content' => '<img src="https://homepages.cae.wisc.edu/~ece533/images/airplane.png" alt="image alt" width="100px" height="100px">', 'position' => 'top', ), ),For more information, please follow this documentation https://docs.metabox.io/extensions/meta-box-tooltip/.
Long Nguyen
ModeratorHi,
FacetWP can’t filter by maps. You should make it filter by other fields (cities, wards, etc.), and the map will be displayed accordingly.
Refer to this topic https://support.metabox.io/topic/render-openstreetmap-for-archive-pages-elementor-or-any/.
Long Nguyen
ModeratorHi,
You need to use the theme which supports the sidebar such as Twenty Seventeen https://wordpress.org/themes/twentyseventeen/.
Or follow this article to know how to create a custom sidebar https://themeisle.com/blog/custom-wordpress-sidebar/.
Then add the shortcode to the widget HTML or Text, the filter will display on the archive (post type) page like blog or category.
Long Nguyen
ModeratorHi there,
We want the user/customer to use the newest version of any plugin, get new features/options and bug fixing so the older version is not supported.
Thanks for your understanding and patience.
Long Nguyen
ModeratorHi Eric,
The extension Meta Box - FacetWP Integrator also supports to index the post which has the field's value save in the custom table. See my screen record https://www.loom.com/share/bfee1ed88ef04a33bf79c16147898163.
If you want to customize more, please follow the developer documentation of Facet https://facetwp.com/documentation/developers/.
Long Nguyen
ModeratorHi there,
Since WordPress 5.5 released, there are a lot of themes/page builder plugins that need to update the source code to compatible with the new feature of WP core.
Please follow these steps to help me isolate the problem:
- 1: Try to deactivate all plugins (leave only Beaver and BB Themer activate) and switch to the default theme of WordPress (Twenty Twenty) to check the problem again.
- 2: If it solves the problem, you can activate the plugin Meta Box then recheck it. If the problem happens in this step, please let me know the version of Beaver (Lite or Agency) and BB Themer, open the Console tab to get the JavaScript error, take some screenshots of this problem then share on the next reply.
- 3: If it does not solve the problem, please contact the Beaver support to get a better response.
Long Nguyen
ModeratorHi,
Please follow this article to know how to create an ajax filter post https://rudrastyh.com/wordpress/ajax-post-filters.html.
And this article to create a filter post by custom fields https://metabox.io/filter-posts-custom-fields-custom-taxonomies-archive-pages/.
Long Nguyen
ModeratorHi,
Currently, the attribute
minlengthis not a common attribute, so you should use it in the arrayattributes().With the builder, you can use the dot notation https://docs.metabox.io/extensions/meta-box-builder/#dot-notation. See my screenshot https://share.getcloudapp.com/Jru6gdZL.
Long Nguyen
ModeratorHi,
I think you can register the cloneable group field in a separate meta box, then use the filter
rwmb_show_{$meta_box_id}to show/hide this meta box.add_filter( 'rwmb_show_{$meta_box_id}', function( $show, $meta_box ) { if ( true ) { return true; } else { return false; } }, 99, 2 );For more information, please follow this documentation https://docs.metabox.io/filters/#rwmb_show_meta_box_id.
Long Nguyen
ModeratorHi,
You can use this custom CSS code to make the editing post table scrollable horizontally. See my short screen record https://www.loom.com/share/f500e6f6dd9f4c568fafea49390f624c.
body form#posts-filter { overflow-x: scroll; width: 100%; } body table.fixed { table-layout: unset; }This plugin will help you to run the code in the backend https://wordpress.org/plugins/admin-css-mu/.
Long Nguyen
ModeratorHi,
I'm using WordPress version 5.5 and Meta Box v5.3.3, haven't seen any issue with those fields. Maybe there is a broken plugin after updating WP v5.5 then the field does not work properly. You can re-upgrade WP version 5.5 then deactivate all plugins except Meta Box then activate one by one to find the broken plugin.
-
AuthorPosts