Forum Replies Created
-
AuthorPosts
-
October 1, 2024 at 10:49 PM in reply to: In group field, first WYISWG element can't switch from Tet to Visual #46581
Peter
ModeratorHello,
It is similar to this issue https://support.metabox.io/topic/wysiwyg-2/#post-46572
please try to enable the option "Clone empty start" for the WYSIWYG subfield in a group and check the issue again.
Peter
ModeratorHello,
In this case, it is beyond our scope of support. You can use the filter hook
register_taxonomy_argsto modify the argument of a taxonomy. Here is an example https://stackoverflow.com/questions/34977582/how-to-filter-taxonomy-args-with-register-taxonomy-args-wordpress
and following the WordPress documentation
https://developer.wordpress.org/reference/hooks/register_taxonomy_args/Peter
ModeratorHello,
Please update Meta Box and MB AIO plugins to the new version to fix the issue with Conditional Logic. Let me know how it goes.
Peter
ModeratorHello,
The callback function of the custom HTML field with a parameter works properly on my demo site, here is the screen record https://drive.google.com/file/d/1NCmayn0rm1SIf3WiS_MHmfuPYS9Mf5aw/view?usp=sharing
Can you please recheck this?
Peter
ModeratorHello Yumiko,
What is the PHP version on your server? Please use PHP 7.4 and see if it helps. If you want to disable auto updates, please follow the documentation https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-updates-in-wordpress/
Peter
ModeratorHello Ben and Kyle,
Please update Meta Box and MB extensions plugin to the new version to fix the issue with Conditional Logic. Let me know how it goes.
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/ -
AuthorPosts