Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 3,702 total)
  • Author
    Posts
  • in reply to: MB Revisions in combination with MB Custom Table #9562
    Anh TranAnh Tran
    Keymaster

    Hello,

    The latest version 1.1.0 supports for MB Custom Table extension. Please update.

    Thanks.

    in reply to: Forgotten test code on line 30 #9561
    Anh TranAnh Tran
    Keymaster

    Sorry, I've just updated the extension and Meta Box AIO. Please update them.

    Thanks.

    in reply to: User registration #9552
    Anh TranAnh Tran
    Keymaster

    FYI, I've just completed the extension. Please get it here: https://metabox.io/plugins/mb-user-profile/

    in reply to: Custom table save error #9547
    Anh TranAnh Tran
    Keymaster

    Hello, can you give me the code to test? This seems to be a weird situation.

    in reply to: Problem with image advanced style #9534
    Anh TranAnh Tran
    Keymaster

    Hello,

    Is the field image_advanced? Do you have any custom CSS that might affect that? It seems not to happen on my side.

    in reply to: User registration #9529
    Anh TranAnh Tran
    Keymaster

    I faced some issues that took me so long to refactor the code. I promise to release this within 3 days. Please wait.

    in reply to: Date picker when cloned adds data when it shouldn't #9516
    Anh TranAnh Tran
    Keymaster

    Hello,

    When the timestamp is set to true, the date/datetime field will store values as an array in a group. This array contains 2 elements:

    • timestamp: the Unix timestampt
    • formatted: the formatted (user-entered) value

    This is a difference between a single date/datetime field, which stores only timestamp value.

    So, when you get the value from this field, please check both values.

    Here is the video that demonstrates how the data is saved:

    https://imgur.com/a/wHVSOWT

    in reply to: MB Frontend Submission #9515
    Anh TranAnh Tran
    Keymaster

    Hi, I've added your CPT "work" and it works. Here is the video:

    https://imgur.com/a/tsq8wNE

    in reply to: Hide Metabox Field on Custom Frontend Form #9514
    Anh TranAnh Tran
    Keymaster

    I see. Can you try CSS approach, like this:

    array(
        'name'  => 'Website Screenshot URL:',
        'desc'  => '',
        'id'    => $prefix . 'website_screenshot',
        'type'  => 'text',
        'class' => 'hidden',
    ),

    And in the Customizer > CSS and add this:

    .hidden { display: none; }

    in reply to: MB Frontend Submission #9508
    Anh TranAnh Tran
    Keymaster

    Hi,

    I've just tested your code and it works for me. Here is the video:

    https://imgur.com/a/Wn11Wmt

    Can you please check again? Probably there's some hooks elsewhere that modifies the requests?

    in reply to: Custom table save error #9502
    Anh TranAnh Tran
    Keymaster

    Hello,

    I've just tested again with the custom table for only 1 CPT. When I save another CPT, there's nothing happened. Can you please check again? Maybe there's somewhere else that you use the same CPT.

    in reply to: How to show up the custom column in grouped meta #9499
    Anh TranAnh Tran
    Keymaster

    I'm not sure about the quick edit for groups. It's kind of custom output + JavaScript. As long as you format the submitted data in correct way (e.g. array of sub-fields values), it might work. So, please be very careful about the data, or you might lost them.

    in reply to: Basic post type relationship dont work. #9498
    Anh TranAnh Tran
    Keymaster

    Hello,

    I've just did a similar test and it works for me. Do you have any filter/code that change the query? Some kind of hooks to pre_get_posts, query_vars, etc.?

    in reply to: How to set a upload directory for file_upload #9497
    Anh TranAnh Tran
    Keymaster

    That's cool. Is the global $post object is available and set to the being edited post inside the filter?

    in reply to: image_select value not working #9496
    Anh TranAnh Tran
    Keymaster

    Yes, you can do that. However, because PHP doesn't allow to use same keys in an array, you need to change the selector to something else (while still make it work):

    'input_value' => array(
        'input[name=rnr_wr_pagetype]' => 'st2',
        'input[name*=rnr_wr_pagetype]' => 'st3',
    ),
Viewing 15 posts - 2,161 through 2,175 (of 3,702 total)