Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 526 through 540 (of 3,836 total)
  • Author
    Posts
  • in reply to: Relationship - wsform - frontend post #48571
    PeterPeter
    Moderator

    Hello Rebecca,

    Thanks for reaching out.

    >> I'd like to be able to select a relationship to other listing entries in the front-end post form.
    >> How do I integrate the fields into a front-end post form?

    You can follow this reply to add the relationship meta box to a front-end form
    https://support.metabox.io/topic/front-end-form/#post-47960
    and our documentation https://docs.metabox.io/extensions/mb-frontend-submission/

    >> How can I save my bidirectional relationships in the field groups?

    It isn't possible. The relationship saves data to a separate table wp_mb_relationships.
    https://docs.metabox.io/extensions/mb-relationships/#database

    >> Which field do I select for this in the WSForm plugin, and how do I set it up?

    It is beyond our scope of support. Please contact WSForm support to get further assistance.

    in reply to: Something weird with one of my custom fields #48570
    PeterPeter
    Moderator

    Hello,

    No, I didn't receive your email with the credentials. Can you please share it again?

    in reply to: CPT not saving #48568
    PeterPeter
    Moderator

    Hello Jordan,

    Thanks for reaching out.

    Can you please share the full fatal error log and the field group JSON file after exporting it? I will help you investigate the issue.
    Please follow the documentation https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
    to enable WP debug log.

    in reply to: edit model and default values and submission issue #48562
    PeterPeter
    Moderator

    Hello Nick,

    I've escalated the #1 issue to the development team to fix this. For #2 issue, if you know how to reproduce the issue with clear steps, please let me know. I will investigate it and get back to you soon.

    in reply to: Something weird with one of my custom fields #48556
    PeterPeter
    Moderator

    Hello Tanja,

    I don't see any issues through your screen record. Please share your site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

    PeterPeter
    Moderator

    Hello Simon,

    Thanks for reaching out and for your feedback.

    I can reproduce the issue on my demo site when using builder RC1. I've escalated this issue to the development team to fix it in the next update of builder plugin.

    in reply to: Something weird with one of my custom fields #48552
    PeterPeter
    Moderator

    Hello Tanja,

    Thanks for reaching out.

    Can you please share a screen record of the issue on your end? Specifically, the tab Settings of the field group.

    I will help you investigate the issue.

    PeterPeter
    Moderator

    Hello Nick,

    >> I assume the cleanup operation for the forms cloneable groups is not removed

    Yes, the cleanup process will be executed when saving the field value. If you set the post data when using the filter hook, you can check if a field value is not empty before setting the post data.

    I will also inform the development team to recheck this case and see if we can improve this in future updates.

    Thank you.

    in reply to: edit model and default values and submission issue #48548
    PeterPeter
    Moderator

    Hello Nick,

    Thanks for reaching out.

    I can reproduce the #1 issue. This happens when you don't add any value to the field group and submit the form. You can try to add at least a field value or remove the setting clone_empty_start to fix this issue.

    I cannot reproduce #2 issue because the object ID 0 is not available in the database. The column ID is incremental and starts from 1. Do you use any custom code to adjust the form?

    in reply to: Move Relationships to Tab in Custom Field Group #48547
    PeterPeter
    Moderator

    Hello Joshua,

    Thanks for reaching out.

    I'm afraid that there isn't a way to move the relationship meta box to a field group as a custom field. I will inform the development team to explore the possibility.

    PeterPeter
    Moderator

    Hello Oliver,

    If Amelia supports getting events via Rest API, you can create a custom PHP function to get the events and return the expected data.
    Then in the View editor, you can call the custom function via mb. proxy to get the data and output in the frontend. Refer to this documentation https://docs.metabox.io/extensions/mb-views/#running-php-functions

    in reply to: wpdberror on frontend submission form #48541
    PeterPeter
    Moderator

    Hello,

    The issue max_allowed_packet means that you're trying to send (usually via a query or form submission) a packet of data larger than the MySQL server is configured to accept. You can contact your hosting support and ask them to check the max_allowed_packet value of your database. If it is too low (less than 64MB), please increase this value.

    If it doesn't help, please try to create a full backup of your site and databases. Then access the database, table wp_options, delete the option name mbfs_keys and recheck the issue.

    in reply to: Affiliate Link from Impact #48536
    PeterPeter
    Moderator

    Hello Thomas,

    Thanks for reaching out.

    Please contact us here for the issue with Affiliate program https://metabox.io/contact/
    we will get in touch with you as soon as possible.

    PeterPeter
    Moderator

    Hello,

    Not related to Bricks but if you use the code to create the custom query and order posts by meta value, please try this one

    $args = [
        'post_type'      => 'your_post_type', // e.g., 'post', 'page', or custom post type
        'posts_per_page' => -1,
        'meta_key'       => 'title',          // your custom field key
        'orderby'        => 'meta_value',     // or 'meta_value_num' for numeric values
        'order'          => 'ASC',            // or 'DESC'
    ];
    
    $query = new WP_Query( $args );
    

    Refer to the WordPress documentation https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters

    Let me know how it goes.

    in reply to: ℹ️Thanks and Request #48532
    PeterPeter
    Moderator

    Hello Amber,

    Thanks for reaching out.

    Currently, there isn't a field type Star Rating. But you can follow the documentation below to use the radio field and some custom code to make it work like the rating field
    https://docs.metabox.io/tutorials/add-star-rating-fields/

Viewing 15 posts - 526 through 540 (of 3,836 total)