Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,701 through 2,715 (of 3,958 total)
  • Author
    Posts
  • in reply to: Collapsible Attribute #6412
    Anh TranAnh Tran
    Keymaster

    I pushed a new version yesterday with an improvement for this. Please just update.

    Anh TranAnh Tran
    Keymaster

    Hi Matt, I just realized this bug some days ago and fixed it.

    Can you please try the latest version on Github and let me know if it works?

    Thanks.

    in reply to: Strange issue with tabs + columns #6403
    Anh TranAnh Tran
    Keymaster

    Thanks for your reply. I see 1 problem with the syntax above: what if we have multiple flex-item?

    Currently, we're working on an improved version of Columns, which supports syntax like this (similar to tabs):

    $meta_boxes[] = array(
        'title'      => 'Test Columns',
        'columns' => array(
            'column-1' => 4, // Short syntax
            'column-2' => array( 'size' => 8, 'class' => 'custom-class' ), // Advanced syntax
        ),
        'fields' => array(
            array(
                // ...
                'column' => 'column-1',
            ),
            array(
                // ...
                'column' => 'column-2',
            ),
        ),
    );

    I think this syntax makes thing easier to implement. I tried using nested syntax, but it requires to completely rewrite the plugin, which might break backward compatibility.

    I'll think more about the flex syntax. My goal is making it as simple as possible. Currently, I see it's kind of complicated.

    in reply to: Parse error in class-rwmb-group-field.php #6401
    Anh TranAnh Tran
    Keymaster

    Oops, I used the short array syntax, which is available for PHP >= 5.4. Just fixed it in 1.2.10.

    Thanks a lot for reporting!

    in reply to: admin columns not working #6386
    Anh TranAnh Tran
    Keymaster

    Oh, I see your custom code set a column show and you have a custom field with the same ID. Then you set that custom field displayed in admin columns, which already exists there. It might be confused. I'd suggest removing your custom code and try again.

    in reply to: Optimize rwmb_meta_boxes filter #6385
    Anh TranAnh Tran
    Keymaster

    I got it. The thing is we couldn't load the meta box or fields for a specific page in admin. Because the code need to run not only when showing fields, but also when saving fields. And the saving part requires to be run on admin in general.

    in reply to: admin columns not working #6380
    Anh TranAnh Tran
    Keymaster

    Hi, I'd like to see what you've done with your custom code. I guess you added or renamed an existing column, so Admin Columns extension couldn't find it to "hook" other columns to.

    in reply to: Optimize rwmb_meta_boxes filter #6379
    Anh TranAnh Tran
    Keymaster

    What @Jackky recommended is correct. However, in that case you can't use rwmb_meta for users in the frontend (yes, it works). get_user_meta is totally fine.

    in reply to: Strange issue with tabs + columns #6378
    Anh TranAnh Tran
    Keymaster

    Hi Jackky, thanks a lot for your idea.

    Can you post what you have in your mind here?

    Currently, we're refactoring the Columns extension to allow multiple fields in 1 column. However, to make it backward-compatible, I can't use your syntax (I'd love too). We're moving to use the syntax similar to Tabs extension. It's not optimal, but it works.

    in reply to: Feature request : admin list filters (taxonomies...) #6370
    Anh TranAnh Tran
    Keymaster

    FYI:

    1. Filter is done with MB Admin Columns v1.2. Please just update. You can also use this plugin to do the same job.

    2. Search is done in v1.1. Just add 'searchable' => true to the field to enable search by that field.

    Cheers
    Anh

    in reply to: Admin search meta key #6369
    Anh TranAnh Tran
    Keymaster

    It's been a long time, but just want to let you know that the search functionality is done. Please just update the plugin.

    in reply to: Feature request : admin list filters (taxonomies...) #6362
    Anh TranAnh Tran
    Keymaster

    FYI, #3 can be resolved with a free plugin.

    in reply to: admin columns not working #6361
    Anh TranAnh Tran
    Keymaster

    Hi, is that really admin-columns or you mistyped? It should be admin_columns, underscore.

    in reply to: admin columns not working #6358
    Anh TranAnh Tran
    Keymaster

    Can you post full code of your meta box to check?

    PS: I fixed the link in the sidebar. Thanks a lot!

    in reply to: Core Extensions Bundle refund. #6357
    Anh TranAnh Tran
    Keymaster

    Yes, you can always do that with class attribute of the field. Just add a custom CSS class to the "5-columns" field and change its width with CSS. It's kind of a hack while waiting for a better solution that we're working on.

Viewing 15 posts - 2,701 through 2,715 (of 3,958 total)