Forum Replies Created
-
AuthorPosts
-
April 2, 2024 at 10:32 PM in reply to: Getting Clonable Text Fields in Field Group to Display in Brizy Template Editor #45113
Peter
ModeratorHello,
The compatibility between Meta Box and Brizy is maintained on Brizy's side. Please get in touch with their support to get further assistance. Or you can use the top fields instead of sub fields in a group.
Refer to our support policy https://metabox.io/support/topic/support-policy/
April 2, 2024 at 10:17 PM in reply to: How to target a specific index of cloned fields with Metabox Group #45112Peter
ModeratorHello,
You can create a loop to iterate through the cloneable group value and check the key to update the hidden field of a specific clone group. For example:
$group_values = rwmb_meta( 'group_id' ) ?: []; foreach ( $group_values as $group_key => $group_value ) { if ( $group_key == 1 ) { $group_value[1]['hidden_field'] = 'something'; } }Following the documentation https://docs.metabox.io/extensions/meta-box-group/#sub-field-values
April 2, 2024 at 10:07 PM in reply to: Show/Hide Field Group based on Taxonomy when Taxonomy is not in editor #45111Peter
ModeratorHello,
As I said above, you should assign the term ID to the condition value, not "Solo". You can get the term ID in the URL when editing it.
Screenshot https://imgur.com/mm7LSSIApril 1, 2024 at 10:02 PM in reply to: ✅For-Loop iterates only 5 times but there are more items than 5 #45095Peter
ModeratorHello,
You can set the number of posts in admin area > Settings > Reading > Blog pages show at most. Or add the setting
posts_per_pageto the query args:{% set args = { post_type: 'my-job', posts_per_page: 8, relationship: { id: 'post-to-job', from: current_post_id } } %}Following the documentation https://developer.wordpress.org/reference/classes/wp_query/#pagination-parameters
April 1, 2024 at 9:33 PM in reply to: select_advanced field for taxonomy_advanced auto selecting first option #45094Peter
ModeratorHello,
It works properly on my demo site, showing the blank option by default. You can try to deactivate all plugins except Meta Box, switch to a standard theme of WordPress and check this issue again.
April 1, 2024 at 9:17 PM in reply to: Show/Hide Field Group based on Taxonomy when Taxonomy is not in editor #45093Peter
ModeratorHello Keith,
You should use the Conditional Logic option in the Settings tab of the field group to set the field group show/hide based on a field value. Screenshot https://monosnap.com/file/Hx63fMcezrUbbOo14iJ5uSOe2SSI19
where 123 is the term ID.Peter
ModeratorHello,
The extension MB Relationship only saves the ID of the object to the database, so you have to use the ID in the
relationshipargument.
If it still doesn't work, please share the code that creates the relationship between the client and project on your site.April 1, 2024 at 8:30 PM in reply to: front end submission for post type does not auto refresh permalinks #45090Peter
ModeratorCan you please share your site credentials by submitting this contact form https://metabox.io/contact/ ?
I will take a look.
Peter
ModeratorOk, let me know if you have any questions.
Peter
ModeratorHello Keith,
MB Relationships doesn't support an option to set the max connection based on the taxonomy. I think it is possible but you need to create a custom code to do that. However, it is beyond our scope of support. You can contact an expert developer to help you in this case.
Peter
ModeratorHello,
Can you please share screenshots of the Meta Box menu in the admin area and the page Meta Box > Extensions?
If you use the plugin Meta Box AIO, please follow the documentation to enable extension MB Views.
https://docs.metabox.io/extensions/meta-box-aio/March 30, 2024 at 11:15 AM in reply to: front end submission for post type does not auto refresh permalinks #45068Peter
ModeratorHello Nick,
I make a test on my local site with your fields but don't see that issue, here is the screen record https://drive.google.com/file/d/1qXIh26Qf6S60XcZcUbVLUocVtPllBai7/view?usp=sharing
I also notice the setting
'post_types' => 'Product',the post slug should be in lowercaseproduct. Please correct the slug and try this again on a clean installation then see how it goes.March 30, 2024 at 10:44 AM in reply to: ✅Cannot Update CPT - Related to ACPT to MetaBox Transition #45067Peter
ModeratorHello Keith,
Currently, there isn't an option to move post types ACPT to Meta Box, however, you can re-create a post type with the same slug when using Meta Box to manage the post type.
Regarding the error, please open all tabs or collapsible groups and recheck the required fields. Mostly, the issue is related to a required field that is not filled in.
Peter
ModeratorHello Nick,
Please add a helper shortcode to a post content, check the output value in the frontend, use the filter hook and see how it works. Following the documentation
https://docs.metabox.io/shortcode/Peter
ModeratorHello,
There are some updates that change the builder structure and the old JSON file might not work with the new version. Can you please share the JSON file here? I will check if there is something we can do on our side.
-
AuthorPosts