Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Ger,
I think you can add a custom class for the field group then apply CSS code for that field group based on the custom class. Screenshot https://monosnap.com/file/33zF2RjyK5ItFQA3SevQOujANl6cA4
Refer documentation https://docs.metabox.io/creating-fields-with-code/September 29, 2023 at 10:35 AM in reply to: Output CSS + JS only once for all shortcode instances [Question / Improvement] #43378Peter
ModeratorHello,
Thanks for your feedback.
If you have CSS and JS code and want to use it globally or on a page one time, you can consider using the code to register it in the file functions.php
https://developer.wordpress.org/reference/hooks/wp_enqueue_scripts/Meanwhile, I will forward this feature request to the development team to research and get back to you later.
Peter
ModeratorHello,
Do you mean to save the field value in the custom block as the post meta? If yes, please set the parameter
storage_typetopost_meta'storage_type' => 'post_meta'Follow the documentation https://docs.metabox.io/extensions/mb-blocks/#storage_type
Peter
ModeratorHello,
It's hard to change the taxonomy description to WYSIWYG field. You can use a third-party plugin to do that like Yoast SEO or Visual Term Description Editor
https://wordpress.org/plugins/wordpress-seo/
https://wordpress.org/plugins/visual-term-description-editor/Peter
ModeratorHello Joe,
I don't see that issue on my demo site, here is the screenshot https://monosnap.com/file/U89xAAD4BsVxhSVUCl4yo3pzl4NBGv
You can try to update Meta Box and MB extension plugins to the latest versions. Then deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress and recheck this.
Peter
ModeratorHello,
All fields in the field group are subfields in a group field. And it is possible the Breakdance builder does not work with the subfield. You can create some top-fields and recheck this. Or contact Breakdance support to get more information.
Peter
ModeratorHello,
I see it works with the hierarchical taxonomy like Category, not with the non-hierarchical taxonomy like Tag. Here is the screen record https://drive.google.com/file/d/1GolM0KZpDEpNlAUvoIgs4DdzqAlK__E8/view?usp=sharing
Please edit the custom taxonomy, enable hierarchical setting for this taxonomy and recheck the issue.
September 27, 2023 at 11:13 AM in reply to: ✅Settings Pages In Customiser Error after last update and other issues #43357Peter
ModeratorThe error with the custom block was fixed in this commit https://github.com/wpmetabox/meta-box/commit/2635f09fc634ce830a6c9d7e1164f86f26546a4c
It will be included in the next update of Meta Box.
Peter
ModeratorHello Rob,
I think it is possible but you need to create some custom code to modify the processing of the frontend form. If you just want to have a form to send the email, I think you can create a form with HTML code and send email, without using MB Frontend Submission form.
You can find more frontend hooks here https://docs.metabox.io/extensions/mb-frontend-submission/#hooks-1Peter
ModeratorHello Brandon,
Please disable the meta box RLC Artist Details in the Screen Options and check this issue again.
September 25, 2023 at 8:52 PM in reply to: ✅Inconsistency with rwmb_the_value/rwmb_get_value and Switch fields #43348Peter
ModeratorHello,
Can you call the function
is_online()in the Bricks template without using the echo statement? If you want to use the helper functionrwmb_the_value(), you can set the fourth parameterechotofalse. Like thisrwmb_the_value( 'status', ['object_type' => 'user'], get_queried_object_id(), false )Read more in the documentation https://docs.metabox.io/functions/rwmb-the-value/
Peter
ModeratorHello,
I think the example is added below that sentence. Here is an example of the post type
'visible' => [ 'post_type', '=', 'cpt-slug' ]or
'visible' => [ 'when' => [['post_type', '=', 'post']], 'relation' => 'or', ]September 25, 2023 at 11:34 AM in reply to: View Shortcode not showing at Homepage but able to display at Archive page #43345Peter
ModeratorHello,
I'm asking for some screenshots when you edit the View, specifically the settings.
September 25, 2023 at 11:30 AM in reply to: Custom post type with a relationship doesn't display on the front end #43344Peter
ModeratorHello,
You can add the code to a template file of the theme on your site, without using Bricks to see if the issue comes from Meta Box or not. You can read more about WordPress template here https://developer.wordpress.org/themes/basics/template-hierarchy/
September 23, 2023 at 11:39 AM in reply to: Custom post type with a relationship doesn't display on the front end #43335Peter
ModeratorHello,
Can you please use some simple code to display the relationship and recheck this issue? Refer to the documentation https://docs.metabox.io/extensions/mb-relationships/#getting-connected-items
-
AuthorPosts