Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Can you please share the fatal error message? You can pass the post ID to the helper function to get the field value. For example
$co_author_group = rwmb_meta( 'academicadd_co_author', '', $post->ID );Long Nguyen
ModeratorHi,
The query args misses the parameter
terms'query_args' => [ 'tax_query' => [ [ 'taxonomy' => 'category', 'field' => 'slug', 'terms' => 'technology', ], ], ],Please check the documentation again https://docs.metabox.io/extensions/meta-box-builder/#dot-notation
Long Nguyen
ModeratorHi Fergal,
Thanks for your feedback.
Currently, our plugin does not change the default menu structure, it just fills the position of a menu between the default positions of WordPress which you can see here https://developer.wordpress.org/reference/functions/add_menu_page/#menu-structure
2 – Dashboard 4 – Separator 5 – PostsSo that means only 1 menu can be inserted between Dashboard and Separator. Hope that makes sense.
Long Nguyen
ModeratorHi,
The integration between Meta Box and Bricks builder is created and officially supported by Bricks. So please contact Bricks support to ask for help with this case. Thanks.
https://docs.metabox.io/compatibility/Long Nguyen
ModeratorThere was a conflicting issue with another plugin, resolve this by using custom CSS code in the admin area.
.rwmb-wysiwyg.wp-editor-area { visibility: visible !important; }Long Nguyen
ModeratorHi,
In case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/October 13, 2022 at 12:18 PM in reply to: ✅Taxonomy field in group nested in cloneable group not loading selected value #38652Long Nguyen
ModeratorHi,
As I said on this topic https://support.metabox.io/topic/how-to-set-taxonomy-terms-from-multiple-taxonomy-fields/#post-38573
the fieldtaxonomydoes not work when it is a subfield in a group. You have to register it as a top field. Or use the fieldtaxonomy_advancedin a group to save the post meta.October 13, 2022 at 9:48 AM in reply to: ✅How to get a Metabox to show up on custom post type which uses one page #38650Long Nguyen
ModeratorHi,
You can pass the configurator ID as the third argument of the helper function
rwmb_meta()to get the field value of a specific post.rwmb_meta( 'my_field_id', '', $configurator_id );Read more on the documentation https://docs.metabox.io/functions/rwmb-meta/
Long Nguyen
ModeratorHi Jo,
You should get the field value separately and concatenate them later. For example:
$my_meta1 = rwmb_meta( 'nb_pieces_bien', '', $post_id ); $my_meta2 = rwmb_meta( 'type_offre_bien', '', $post_id ); $my_post = array( 'ID' => $post_id, 'post_title' => $my_post_title . ' ' . $my_meta1 . ' ' . $my_meta2, );Long Nguyen
ModeratorHi Arno,
Please share your site credentials via the contact form https://metabox.io/contact/
I will take a closer look.Long Nguyen
ModeratorHi Dragos,
Yes, it is possible. You can use the setting
query_argsto filter posts to select in the list. Please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/#using-code
https://docs.metabox.io/extensions/meta-box-builder/#dot-notationand refer to this topic https://support.metabox.io/topic/help-needed-for-using-query-args-at-relationships/
Long Nguyen
ModeratorHi Rod,
You can use the WP function
get_terms()to get all terms of a taxonomy and check if a term is exist on that array.{% if 'allitems' in my_terms %}Read more on the documentation
https://developer.wordpress.org/reference/functions/get_terms/
https://docs.metabox.io/extensions/mb-views/#running-php-functionsLong Nguyen
ModeratorHi Arno,
Can you please share some screenshots of the issue and the code that creates the custom fields on your site? I do not see that issue on my end.
October 12, 2022 at 11:24 AM in reply to: ✅MB Frontend Submission display Articles WP post instead my Custom fields #38636Long Nguyen
ModeratorHi,
Thank you for your feedback.
I will inform the development team to consider creating Elementor widgets to display frontend dashboard/form in future updates.
October 12, 2022 at 11:17 AM in reply to: Outputting a different user meta photo from field group #38635Long Nguyen
ModeratorHi,
Can you please add a specific post ID to the helper function and recheck the field value?
rwmb_get_value( 'academicadd_co_author', '', 123 )You can also use this code to print out any variable
echo '<pre>'; print_r( $field_id); echo '</pre>'; -
AuthorPosts