Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 3,839 total)
  • Author
    Posts
  • in reply to: There seems to be a lot of issues lately .. why is that? #47044
    PeterPeter
    Moderator

    Hello Zenjukai,

    Please share your demo site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

    Thank you.

    in reply to: Show Multiple Clone Fields in Form #47043
    PeterPeter
    Moderator

    Hello Rebecca,

    The cloneable feature doesn't support adding a number of clone entries like that. I will inform the development team to consider supporting this option in future updates.

    PeterPeter
    Moderator

    Hello,

    Do you mean "required fields"? So I think it is working correctly.

    in reply to: CPT Blank Screen #47041
    PeterPeter
    Moderator

    Okay, if this happens again, please share the debug log so we can understand what's wrong on your site.

    Thank you.

    PeterPeter
    Moderator

    Hello Marco,

    Do you have any other settings that set the requirement for the file_upload field? A custom code or a custom field setting.
    I just use a simple file_upload field without any specific settings and don't see that issue.

    in reply to: Error on Image Advanced + MB Group #47027
    PeterPeter
    Moderator

    Hello,

    I use the code above to create a group field and subfields on my local site, add a page and save with some sample value but don't see that issue. Please check these screenshots https://imgur.com/a/49B1vCE

    You can try to deactivate all plugins except Meta Box, MB Group, switch to a WordPress theme and check the issue again.

    in reply to: Drag & Drop Issue (or Important Missing Feature Request) #47026
    PeterPeter
    Moderator

    Hello Peter,

    In the latest version of MB AIO 1.31.0 or MB Builder 4.9.7, you can drag and drop a subfield from a group field to another group field or in/outside the group field to be a top field.

    in reply to: AIO 1.31.0 Not Saving Group Fields via API #47022
    PeterPeter
    Moderator

    Hello Cameron,

    Can you share the group field settings and sub-fields that you try to update the value via POST API? I try with simple group field

    'fields'   => [
        [
            'name'              => __( 'Group', 'your-text-domain' ),
            'id'                => $prefix . 'group_ubce2rqmfm',
            'type'              => 'group',
            'fields'            => [
                [
                    'name'              => __( 'Text', 'your-text-domain' ),
                    'id'                => $prefix . 'text_wulikp8w5km',
                    'type'              => 'text',
                ],
            ],
        ],
    ],

    and I can update the subfield text value with POST API properly when using the latest version MB AIO 1.31.0.
    Also, do you use any caching plugins on your site or on your hosting? Please disable them all and recheck this issue.

    in reply to: Hide Custom Field Type #47021
    PeterPeter
    Moderator

    Hello Nick,

    What is the class that you extended to create the custom field type? You can extend any field class to create your own field, add some HTML to the field appearance like a checkbox and create some custom CSS, JS code to show or hide the field. Following the documentation
    https://docs.metabox.io/creating-new-field-types/
    For example:

    
    class RWMB_Custom_Type_Field extends RWMB_Input_Field {
        public static function html( $meta, $field ) {
    
            // Key.
            $key                       = isset( $meta[0] ) ? $meta[0] : '';
            $attributes                = self::get_attributes( $field, $key );
            $attributes['placeholder'] = $field['placeholder']['key'];
            $html                      = sprintf( '<input %s>', self::render_attributes( $attributes ) );
    
            // Value.
            $val                       = isset( $meta[1] ) ? $meta[1] : '';
            $attributes                = self::get_attributes( $field, $val );
            $attributes['placeholder'] = $field['placeholder']['value'];
            $html                     .= sprintf( '<input %s>', self::render_attributes( $attributes ) );
    
            $html                     .= '<input type="checkbox"'; // add your own code to the field appearance.
    
            return $html;
        }
    }
    

    I hope that makes sense.

    in reply to: Custom fields not displayed/editable in editor #47012
    PeterPeter
    Moderator

    Hello Fabian,

    Can you please share your site admin account by submitting this contact form?
    https://metabox.io/contact/

    I will take a look at this issue.

    in reply to: Taxonomy not saved in database (NULL) #47011
    PeterPeter
    Moderator

    Hello Oskar,

    The taxonomy field doesn't work as a normal field. It sets the post term like the default category, tag of WordPress and doesn't save the meta value.
    If you want to save meta value to the custom table, please use the field taxonomy_advanced.

    Following the documentation
    https://docs.metabox.io/fields/taxonomy/
    https://docs.metabox.io/fields/taxonomy-advanced/

    in reply to: display multiple addresses on google maps #47010
    PeterPeter
    Moderator

    Hello Jayron,

    In theory, it is possible to list all addresses on a map with some custom code. Please refer to this article to display more points on a map https://metabox.io/display-all-listings-on-a-map/

    In this step https://metabox.io/display-all-listings-on-a-map/#display-data-using-javascript
    you will need to use the script code that supports showing Google Map
    https://developers.google.com/maps/documentation/javascript/adding-a-google-map

    This is the custom code and is beyond our scope of support. If you are not able to complete the task, we offer a customization service with an extra fee. Please contact us here for more details https://metabox.io/contact/

    in reply to: rwmb_frontend_field_value_post_id not working anymore #47009
    PeterPeter
    Moderator

    Hello,

    Thank you for your feedback.

    There is an issue with the filter hook rwmb_frontend_field_value_post_id in the latest version of MB Frontend Submission. I've escalated this issue to the development team to fix it for the next update of MB plugins.

    in reply to: User notes? #47008
    PeterPeter
    Moderator

    Hello,

    You can use some custom fields like textarea, WYSIWYG to allow users to add something as a note to the CPT. But Meta Box doesn't support showing that note on the user profile page. You might need to create some custom code to show the note on the user profile page, however it is beyond our scope of support.
    I recommend contacting an expert developer and asking them to help you create some custom code to achieve the goal.

    in reply to: Empty select2 fields push the label together #47007
    PeterPeter
    Moderator

    Hello Berg,

    Can you please share a screenshot of the issue? And please let me know how to create the custom fields to reproduce this.

Viewing 15 posts - 1,066 through 1,080 (of 3,839 total)