Forum Replies Created
-
AuthorPosts
-
September 27, 2023 at 11:13 AM in reply to: ✅Settings Pages In Customiser Error after last update and other issues #43357
Peter
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
September 23, 2023 at 11:30 AM in reply to: ✅BUG - Image field's break backend with latest update MB Blocks #43334Peter
ModeratorHello,
This issue has been escalated to the development team and they are working on it. It should be fixed in the next update of the plugin.
Thank you.
Peter
ModeratorHello Daniel,
Thanks for your feedback.
I'm discussing this case with the development team and I will let you know when I have any information.
September 23, 2023 at 11:12 AM in reply to: ✅Custom taxonomies in a group field, save the data to the db, but don't display #43332Peter
ModeratorHello Jim,
Which is the field type
taxonomyortaxonomy_advanced? If it'staxonomy, it does not work in the group. You should use the field typetaxonomy_advanced.
https://docs.metabox.io/fields/taxonomy-advanced/September 23, 2023 at 11:08 AM in reply to: How to modify the slug for custom post type and custom taxonomy #43331Peter
ModeratorHello,
It might not work because the slug "our-service" is already used by the CPT and could lead to a conflicting slug issue. You should use a unique slug for the taxonomy and the single page. For example:
our-service-taxonomy,our-service-page.Peter
ModeratorHello,
1. Yes, you should add the option like that
'options' => [ '0' => __( 'One', 'your-text-domain' ), '1' => __( 'Multiple', 'your-text-domain' ) ],2. Yes, the field value is not affected when you use the gettext function to display the label.
September 23, 2023 at 10:53 AM in reply to: ✅I cannot see HTML and Tab titles in WPML string translation #43329Peter
ModeratorHello,
Thanks for your feedback.
Yes, it could be a feature request. I'm going to create a feature request and ask the development team to consider supporting localization for text generated in PHP code.
September 21, 2023 at 10:37 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #43317Peter
ModeratorHello,
Your case is conflicting with this case https://support.metabox.io/topic/bug-incorrect-url-when-setting-parent-menu-of-settings-page-to-custom-model/?swcfpc=1
One is custom model menu is a parent menu
One is custom model menu is a sub/child menu
The development team is working to find a solution to fix both cases. -
AuthorPosts