Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,181 through 3,195 (of 3,722 total)
  • Author
    Posts
  • in reply to: Gutenberg Block with Relation does not work anymore #40576
    PeterPeter
    Moderator

    Hello,

    I'm sorry about that, there was an issue with our ticket system. Can you please send the info again?

    in reply to: AJAX submission no longer redirects after AIO update #40565
    PeterPeter
    Moderator

    Hello Stephen,

    I do not see any issue with the setting ajax="true" when using the frontend submission shortcode. There are some updates to the form and you can read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#submission-form

    You can try to deactivate all plugins except Meta Box, MB extensions, switch to a standard theme of WordPress and recheck this issue on your site.

    in reply to: How to display Single Image? #40563
    PeterPeter
    Moderator

    Hello,

    If the single image is a term meta field, you also need to add the setting 'object_type' => 'term' to the second parameter and add the term ID to the third parameter to output the image.

    For example:

    rwmb_meta( 'custom_field_item', ['size' => 'thumbnail', 'object_type' => 'term'], 123 )
    

    where 123 is the term ID.

    Please read more on the documentation https://docs.metabox.io/extensions/mb-term-meta/#getting-field-value

    in reply to: User Dashboard displaying the right form #40562
    PeterPeter
    Moderator

    Hello,

    Please move the return statement outside of the condition if statement and check the title again.

    add_filter( 'rwmb_frontend_post_title', function( $field ) {
    if ( is_page( "Green Care Sub Site Form" ) ) {
    $field['required'] = true;
    $field['name'] = 'Name of Green Care Sub Site';
    }
    return $field;
    } );
    in reply to: Unable to get MB Comment Meta to process #40561
    PeterPeter
    Moderator

    Hello Sam,

    Meta Box custom fields actually do not work on the frontend. It is designed to work on the backend to input the value and output it on the frontend. I will inform the development team to consider supporting this case in future updates.
    You can submit a customization service with an extra fee to make it works on the frontend by submitting form here https://metabox.io/contact/.

    in reply to: Using custom fields with Media Attachment #40560
    PeterPeter
    Moderator

    Hello,

    Thanks for your feedback.

    I've added this to the task and sent it to the development team. They will work on it and I will let you know when I have any information.

    PeterPeter
    Moderator

    Hello,

    I've tested this case on my local site but do not see that issue. Can you please share some screenshots when you select the date time and output the field value? How can I reproduce the issue on my site?

    PeterPeter
    Moderator

    Hello,

    After checking your staging site, I see you are also using the plugin Query Monitor to monitor the error message and queries. Then I see there are two plugins (WPCodeBox and Page scroll to ID) that cause some PHP errors and I turn them off. Then edit the field group in less than 1 second.

    Can you please confirm this?

    in reply to: User Dashboard displaying the right form #40541
    PeterPeter
    Moderator

    Hello,

    You can create 2 separate pages for 2 frontend submit forms. Then create 2 different pages for 2 user dashboards. Read more on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#user-dashboard

    Let me know how it goes.

    in reply to: New professional redesign of Matabox #40540
    PeterPeter
    Moderator

    Hello Joo,

    Thank you for your suggestion.

    I will forward this ticket to the development team to consider improving the custom field appearance in future updates.

    in reply to: Unable to get MB Comment Meta to process #40539
    PeterPeter
    Moderator

    Hello Sam,

    Do you mean you submit a comment with custom fields on the frontend? I think it will not work because it is noted in the documentation

    It's important to note that MB Comment Meta works only in the back end. It does not add custom fields for comments in the front end.

    Please read more here https://metabox.io/plugins/mb-comment-meta

    in reply to: Image Select Help #40538
    PeterPeter
    Moderator

    Hello,

    Please follow the documentation to know how to output the image_select field
    https://docs.metabox.io/fields/image-select/

    For example: rwmb_meta( 'wordpress_builder_select' );

    And please notice that, this field saves the value, not the image URL. If you want to output the image with URL, please use the helper function rwmb_the_value().

    For example: rwmb_the_value( 'wordpress_builder_select' );

    in reply to: Refund. #40537
    PeterPeter
    Moderator

    Hello,

    I see you've submitted a refund ticket also. I will close this one.

    in reply to: Custom field changes won't save #40536
    PeterPeter
    Moderator

    Hello,

    The field group exported indicates that you are using the default table (wp_postmeta) of WordPress. I don't know how your DB engine cannot work with the default table of WordPress, even with a custom table and broken down.
    There are many plugins that use the default table of WordPress to store the post meta or create other custom tables to store its data like WooCommerce.
    I'm not sure how you design your server to work but I think it's not a Meta Box issue itself.

    PeterPeter
    Moderator

    Hello James,

    Can you please share the code that you use to create the conditional logic and custom fields on your site? And please share some screenshots or a screen record of the issue. I will try to reproduce it on my local site to see if it is a bug.

Viewing 15 posts - 3,181 through 3,195 (of 3,722 total)