Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
There are some issues in your View code:
- If you want to set the variable, don't use the dot (.)
{% set item_selection_group = mb.get_posts( args ) %}- There is no format to use the order in the for loop like that
{% for clone in post.item_selection_group, orderby: 'clone.select_d8hqbs14ib6.label', order: 'ASC' }If you are new to Twig, please read more in the documentation
https://docs.metabox.io/extensions/mb-views/#twigIf you are not able to accomplish the task, please create a customization service request here https://metabox.io/contact/, our development team will help you with an extra fee.
Peter
ModeratorHello,
I don't see that issue on my demo site. You can try to deactivate all plugins and leave Meta Box, MB extensions, switch to a standard theme of WordPress and check this issue again.
Peter
ModeratorHello,
You can try to use this View code to exclude the content from the provided post IDs
{% set post_ids = [895, 890, 882] %} {% set current_post_id = mb.get_queried_object_id() %} {% if ( current_post_id not in post_ids ) %} <h1>heading here</h1> {% set relationship = attribute( relationships, 'speaker-topic' ) %} ... {% endif %}Peter
ModeratorHello,
Can you please edit the page with Beaver Builder and recheck the gallery? Also, the plugin UABB (Ultimate Addons for Beaver Builder) is not compatible with Meta Box. Please use the standard modules of Beaver Themer only.
April 4, 2023 at 5:35 PM in reply to: Placing A Metabox Field Above A Metabox Tab Breaks The Edit Interface In A CPT #41329Peter
ModeratorHello,
If you want to hide a tab with conditional logic, please follow the documentation https://docs.metabox.io/hide-tabs-with-conditional-logic/
Peter
ModeratorHello,
You can read the changelog of Meta Box and Meta Box AIO plugins here
https://wordpress.org/plugins/meta-box/#developers
https://metabox.io/plugins/meta-box-aio/changelog/Meta Box does not have a slider image field so I think there could be an issue with the JS slider in your code because I see the image are displayed as well.
April 3, 2023 at 9:18 PM in reply to: Placing A Metabox Field Above A Metabox Tab Breaks The Edit Interface In A CPT #41316Peter
ModeratorHello,
If you are using the builder, the tab field must be added first then other fields in a field group. If you want to add a field above the tab, please create a new field group and add more fields.
April 3, 2023 at 9:12 PM in reply to: ✅How to add captcha /guards against spam user registration / bot #41315Peter
ModeratorHello,
>> Do i need to see additional fields like I am not a robot tick?
No, if you see there is a reCaptcha icon at the right-bottom of the site, then it works as it is. The robot tick is the design of reCaptcha v2. You can read more about reCaptcha version here https://www.google.com/recaptcha/about/April 3, 2023 at 7:18 PM in reply to: Issue with country dropdown field after form submission. #41309Peter
ModeratorHello,
Thank you for reaching out.
The integration between Meta Box and Fluent Forms is maintained on the Fluent Forms side. So I recommend contacting Fluent Forms support to get further assistance.
I also see the select field in the admin area is a text field. You can change it to the select field and see if it helps.
April 3, 2023 at 6:57 PM in reply to: ✅Add "css class" to Element with Switch Valua after Submit Front End Submission #41308Peter
ModeratorHello,
Please share the staging site by filling in the info in the contact form https://metabox.io/contact/
and let me know where I can see the issue on your site. I will take a look.Peter
ModeratorHello,
Can you please share a screenshot or the code that you use to render the block? Here is an example on my demo site:
$content = '<!-- wp:meta-box/block-meta {"id":"mb-block-013da68d-63fa-4783-be27-126100bac665","data":{"first_name1":"Meta Box"}} --> <!-- wp:heading --> <h2 class="wp-block-heading">This is the heading text</h2> <!-- /wp:heading --> <!-- /wp:meta-box/block-meta -->'; echo do_blocks( $content );Code to render the block https://monosnap.com/file/N8eBWEtGhkpcvya5Ot8Sv28GfOxnWA
what it displays on the frontend https://monosnap.com/file/zcEfNCjiRuqIMZGAhjk7sD3c5m79FrApril 3, 2023 at 6:29 PM in reply to: ✅How to add captcha /guards against spam user registration / bot #41306Peter
ModeratorHello,
The user registration form supports an option to add Google reCaptcha v3 to prevent spam. Please read more in the documentation https://docs.metabox.io/extensions/mb-user-profile/
Peter
ModeratorHello,
Can you please give more details about the issue? Please share the code that creates the relationship on your site and an example when you use the function
checkRelation().Peter
ModeratorHello,
What do you mean the innerHTML content in your case? It depends on the template that you use to output the custom block on your site. Or do you mean the inner blocks? I see the function
do_blocks()also renders the inner blocks as well.Peter
ModeratorHello Christie,
Thank you for your feedback.
I do not see the default value
stdworks with the field in the relationship metabox. I'm asking the development team about this issue and get back to you later. -
AuthorPosts