Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi John,
Thank you for your feedback.
The media popup on the frontend works like the popup of WordPress in the Media page. So there is no submit button, the value is automatically saved after typing. Regarding the gray square buttons, they are the next and prev buttons but somehow do not work, I will inform the development team to fix it soon.
Long Nguyen
ModeratorHi Michael,
Please open the tab Console of the Inspect tool and share some screenshots if there is a JavaScript error message.
Please read more here https://developer.chrome.com/docs/devtools/overview/Long Nguyen
ModeratorHi Ger,
1. For the frontend form, please try to deactivate all plugins except Meta Box, MB Frontend Submission extensions and switch to the standard theme of WordPress (Twenty TwentyTwo) and recheck this issue. If it still does not work, please share the page URL, I will help you to check the issue.
2. It is not possible to drag the image on this field because there is only one image. Can you please share a screen record of this issue?
Long Nguyen
ModeratorHi,
1. Currently there is no option to set the max number of favorite posts for a user. I will inform the development team to consider supporting this feature in future updates.
2. The favorite dashboard (item listing) also has the Delete button for each item. What do you want to use or change this button?
Long Nguyen
ModeratorHi Will,
Thanks for your feedback.
I will inform the development team to consider supporting filter hooks to modify the standard messages.
Long Nguyen
ModeratorHi,
Can you please share some screenshots of the Plugins page on your site? And the code that you are using to output the field value?
Please notice that the builder Oxygen ignores the theme functions, and templates from loading so if you add the code to the theme template file but still activate Oxygen, the code will not be executed.
Long Nguyen
ModeratorHi,
Can you please clear the cache, remove other Views and deactivate all plugins except Meta Box, MB extensions then re-check this issue? See how it works on my site https://monosnap.com/file/zmlMxh6AO5CVMMPGzf2hL1VIQVhUA0
June 22, 2022 at 11:14 AM in reply to: [BUG] Time picker field required despite field group is not shown #36625Long Nguyen
ModeratorHi Thomas,
Thank you for your feedback.
There is an issue with the conditional logic if the field is visible but the meta box is hidden. I've escalated this issue to the development team to fix it in the next update.
Long Nguyen
ModeratorHi Chris,
Thanks for providing more information.
I do not see that issue on my local site, please check this screen record https://monosnap.com/file/JhCZcm5DtvysJos6ocKGhwipAcDm2G
Steps to reproduce:
1. I create a simple loop to display posts
{% set args = { post_type: 'post', posts_per_page: 5 } %} {% set posts = mb.get_posts( args ) %} {% for post in posts %} Post title: {{ post.post_title }} <br> {% endfor %}which is a shortcode type
2. I create another View with type shortcode to render the post title based on the parameter
my_post_id{{ mb.get_the_title( my_post_id ) }}3. I add the view shortcode 2 to the post title and pass a post ID to it
[mbv name="shortcode" my_post_id=1241]4. I add the view shortcode 1 to a page to render the list posts with titles and it works as well.
Long Nguyen
ModeratorHi,
Thanks for your additional information.
Yes, you can use the field
postwith the post type Page to create a dropdown field with all pages. Please read more on the documentation https://docs.metabox.io/fields/post/Long Nguyen
ModeratorHi,
Currently, it is not possible to add an icon before the option label like that. I will inform the development team to consider supporting this feature in future updates.
Long Nguyen
ModeratorHi,
To make sure the Meta Box works correctly, you can try to deactivate all plugins except Meta Box, MB extensions and switch to the standard theme of WordPress (Twenty TwentyTwo) then follow this documentation to add the code to the archive template file in the theme to display the images
https://docs.metabox.io/extensions/mb-term-meta/#getting-field-valueOr you can try to use the field
single_imageinstead ofimage_advanced.Let me know how it goes.
June 21, 2022 at 5:13 PM in reply to: ✅Website (wordpress) slows down dramatically when I enable Metabox plugin #36611Long Nguyen
ModeratorHi Paul,
Can you please deactivate all plugins except Meta Box, MB extensions, Query Monitor and switch to the standard theme of WordPress (Twenty TwentyTwo) then re-check this issue?
I see some PHP notice errors and slow queries from other plugins and the theme on your site, they might cause this issue.June 21, 2022 at 12:51 PM in reply to: Customizing the background color, the dashboard AND More #36608Long Nguyen
ModeratorHi Laurent,
Thank you for your feedback.
1, 3, 4, 5, 6. I will inform the development team to consider supporting these requests in future updates.
2. If the post ID is not passed to the shortcode
[mbfp-button], it will take the post ID of the current post which might be the page in your case. MB Favorite Posts can work with a list of posts (in a query loop) but you need to pass the post ID to the attributeidof this shortcode. Something like// The Query $the_query = new WP_Query( $args ); // The Loop if ( $the_query->have_posts() ) { echo '<ul>'; while ( $the_query->have_posts() ) { $the_query->the_post(); echo '<li>' . get_the_title() . '</li>'; echo do_shortcode( '[mbfp-button id="'. get_the_ID() .'"]' ); } echo '</ul>'; } wp_reset_postdata();You can try to contact GridBuilder support to ask to get the post ID in their loop and pass it to the button shortcode.
June 21, 2022 at 11:30 AM in reply to: Shortcode creation from number custom field in Oxygen 4 repeater #36607Long Nguyen
ModeratorHi,
So we can understand that there is a problem with the compatibility of Oxygen in their new version. You can try to use this code to get the field value in the repeater
$form_id = rwmb_meta( 'my_gravity_form_id_number_field', '', get_the_ID() );If it still does not work, please contact Oxygen support to ask for help with this issue.
-
AuthorPosts