Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello David,
You can use the custom rewrite URL to add the CPT slug to the term URL. Go to Meta Box > Taxonomies > Edit the taxonomy > Advanced tab > Custom rewrite slug. Please check this screenshot https://imgur.com/BfQ23IH
September 28, 2024 at 9:44 AM in reply to: ✅Can no longer reference group number in group_title #46561Peter
ModeratorHello Yasmin,
I'm using Meta Box 5.10.2 and MB AIO 1.30.2, the collapsible feature is working as well as the group title index, screenshots https://imgur.com/a/L5pOVAq
Please try to clear all caches (browser, plugin ...), deactivate other plugins and switch to a WordPress theme then check the issue again.
Peter
ModeratorHello Rebecca,
Thank you for your feedback.
I can see the issue on the demo site when having a cloneable group field and a cloneable WYSIWYG subfield. I've escalated this issue to the development team to fix this.
Peter
ModeratorHello Sheila,
The code
{{ mb.get_the_term_list( post.ID,'topic', '', ', ' ) }}will get the term list of the current post or a specific post so I think you see only one term of the post.If you want to show all terms of the taxonomy
topic, you can use the WordPress functionget_terms()
https://developer.wordpress.org/reference/functions/get_terms/Peter
ModeratorHello,
Thank you for your feedback.
The compatibility between Meta Box and WP All Import (WPAI) is maintained on WPAI side, so I suggest you contact their support to get further assistance. I also will inform our development team to cooperate with their team to support import value to existing field value.
Peter
ModeratorSo where do you add the custom_html field? On an editing post or on a settings page? Can you please explain more about the case?
Peter
ModeratorHello,
You can create a callback function with a parameter and include the file from that parameter. For example:
function my_callback_func( $file_name ) { include( $file_name . '.php'); }the pass the file name to the callback function:
my_callback_func( 'help_file' )September 26, 2024 at 8:54 PM in reply to: MB Testimonials not updating to 1.1.1 (There is no 1.1.1!) #46541Peter
ModeratorHello,
Thank you for your feedback.
The version actually is 1.1.1 after updating. I've escalated the issue to update the version number in the source code. It should be fixed in the next update.
Peter
ModeratorHello,
Do you use ACF to update the field value with the function
update_field()? If you use Meta Box and settings page, please use the functionrwmb_set_meta()to update the field value on the settings page. Please follow the documentation
https://docs.metabox.io/functions/rwmb-set-meta/Peter
ModeratorHello Ripal,
If you want to style the lowest value, I think you need to use the code to output the field value, please follow the documentation https://docs.metabox.io/functions/rwmb-meta/
then create a custom code to check the lowest value, add a specific class to the element and use the CSS code to style that element.
Peter
ModeratorHello,
If you have a refund request, please contact us here https://metabox.io/contact/
we will get in touch with you as soon as possible.September 24, 2024 at 10:17 PM in reply to: Bug in Bricks Builder Front End Submission Form Element #46527Peter
ModeratorHello John,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello,
You can use the code to run the script on loading https://docs.metabox.io/extensions/mb-blocks/#enqueue_script
( function( $ ) { function init() { // Do something. } // Run when a document ready on the front end. $( document ).ready( init ); } )( jQuery );Or wait for the next version to use the JS event
mb_blocks_preview.Peter
ModeratorHello Michael,
Thank you for your feedback.
There is an issue with the feature MB Conditional Logic and that causes the JS error. The development team is working on that issue and it will be fixed in the next update of our plugin.
Peter
ModeratorHello,
In the new version, we've updated the block code and the event
mb_blocks_previewwas removed. I've escalated this issue to the development team to add the event again.Thank you.
-
AuthorPosts