Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 691 through 705 (of 4,839 total)
  • Author
    Posts
  • in reply to: Problem with frontend media library #36644
    Long NguyenLong Nguyen
    Moderator

    Hi 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.

    in reply to: Fields within a field group do not load #36639
    Long NguyenLong Nguyen
    Moderator

    Hi 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/

    in reply to: Single Image field on Mobile? #36638
    Long NguyenLong Nguyen
    Moderator

    Hi 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?

    in reply to: Max. number of Favorite Posts and Delete button #36636
    Long NguyenLong Nguyen
    Moderator

    Hi,

    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?

    in reply to: List table view messages limited #36635
    Long NguyenLong Nguyen
    Moderator

    Hi Will,

    Thanks for your feedback.

    I will inform the development team to consider supporting filter hooks to modify the standard messages.

    in reply to: Change background of product category #36628
    Long NguyenLong Nguyen
    Moderator

    Hi,

    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.

    in reply to: Date format is giving error MB views template #36627
    Long NguyenLong Nguyen
    Moderator

    Hi,

    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

    Long NguyenLong Nguyen
    Moderator

    Hi 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.

    in reply to: Displaying shortcodes in title or other fields #36624
    Long NguyenLong Nguyen
    Moderator

    Hi 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.

    in reply to: Linking Pages with Meta Box Custom Fields #36622
    Long NguyenLong Nguyen
    Moderator

    Hi,

    Thanks for your additional information.

    Yes, you can use the field post with the post type Page to create a dropdown field with all pages. Please read more on the documentation https://docs.metabox.io/fields/post/

    in reply to: Add svg icon before label in Select Advanced Field #36621
    Long NguyenLong Nguyen
    Moderator

    Hi,

    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.

    in reply to: Change background of product category #36612
    Long NguyenLong Nguyen
    Moderator

    Hi,

    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-value

    Or you can try to use the field single_image instead of image_advanced.

    Let me know how it goes.

    Long NguyenLong Nguyen
    Moderator

    Hi 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.

    in reply to: Customizing the background color, the dashboard AND More #36608
    Long NguyenLong Nguyen
    Moderator

    Hi 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 attribute id of 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.

    Long NguyenLong Nguyen
    Moderator

    Hi,

    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.

Viewing 15 posts - 691 through 705 (of 4,839 total)