Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,721 through 3,735 (of 3,958 total)
  • Author
    Posts
  • in reply to: Tabs inside Groups #1609
    Anh TranAnh Tran
    Keymaster

    Unfortunately, Tabs is not supported by Group extension. You can use Columns extension with Group. The UI of the tabs is too special and not suitable for groups.

    in reply to: Get Alt for caption slider #1608
    Anh TranAnh Tran
    Keymaster

    Can you please write in English?

    in reply to: Meta Box Not Showing Up #1601
    Anh TranAnh Tran
    Keymaster

    Hi,

    I don't see post_types parameter for the meta box. Please add this:

    'post_types' => 'page',
    'fields' => ... // Your fields here

    For more info about post_types, please check here.

    Anh TranAnh Tran
    Keymaster

    Hi Jan,

    Please view your website and see the magic ๐Ÿ˜‰ I've just updated code in your pemtec/includes/custom-post-fields.php

    I have checked your code and see that you're not register meta boxes by rwmb_meta_boxes filter. So Conditional Logic can't get these fields. Please see example at:

    https://metabox.io/docs/registering-meta-boxes/

    Sorry, my computer was broken fn, up, down, left, right, backspace key so I can't reply you quicky.

    Best regards
    Tan Nguyen

    Anh TranAnh Tran
    Keymaster

    Sorry, did you sent via Contact Form? Or what receiver email did you sent to? I haven't received any email yet.

    Anh TranAnh Tran
    Keymaster

    Btw, can you please try to change ID of 'test_me_now' and 'my_test_price' to some dummy text. For example 'f0310_tmn' and 'r01944_mtp'. Perhaps your ID is defined somewhere else?

    Anh TranAnh Tran
    Keymaster

    Yes, we declare 'use strict'; to force browser uses strict mode, therefore make sure that it can run on old browsers. It's will be good for us if I can access your website and test.

    Anh TranAnh Tran
    Keymaster

    Hmm, it's so weird. I have just tested with your registered fields and it works on my machine. Can you please give me full code which you used to register your meta box, or better give me a credential to your production server via contact form?
    Btw, Conditional Logic just require WP 3.5+, your PHP version is good for install.

    in reply to: Show an excerpt from a meta box? #1573
    Anh TranAnh Tran
    Keymaster

    If you just want to show, then you can use the custom_html field. This field can show any content in your meta box. You just need to pass $post->post_excerpt to its std attribute, like this:

    global $post;
    
    // Define meta box
    ...
    'fields' => array(
        array(
            'type' => 'custom_html',
            'std'  => $post->post_excerpt,
        ),
    )
    in reply to: Show an excerpt from a meta box? #1572
    Anh TranAnh Tran
    Keymaster

    Did you means limit words retrieved from a field? If so, you can follow this guide:

    http://stackoverflow.com/questions/965235/how-can-i-truncate-a-string-to-the-first-20-words-in-php

    in reply to: Problems with date picker in group #1567
    Anh TranAnh Tran
    Keymaster

    I've just pushed a fix to Github. It will be in the core plugin in the next version (soon).

    Thanks for letting me know about the bug!

    in reply to: Problems with date picker in group #1566
    Anh TranAnh Tran
    Keymaster

    Let me check that again. By the way, are you using the stable version or development version on Github?

    in reply to: Field visibility issue #1561
    Anh TranAnh Tran
    Keymaster

    Hi Vladimir,

    Thanks for using and reporting. Exactly, this is the existing bug in MB Conditional Logic.

    Long answer:
    When you define 'pg_vehicles_cta' in group field, if they clonable, so we can have 'pg_vehicles_cta_1', 'pg_vehicles_cta_2', etc... Or when you use conditional logic on special field which haven't normal ID or class name or name so I'll have to create a selector which match all 'pg_vehicles_cta*', so you can try to use different IDs in these field to make sure not match with 'pg_vehicles_cta*'. We're trying to fix this bug in next release.

    Short answer: Change ID to something doesn't starts with 'pg_vehicles_cta' like you've did will works.

    Regards

    Tan Nguyen

    in reply to: AutoNumber Group #1554
    Anh TranAnh Tran
    Keymaster

    I think this related with some custom Javascript. It's not something the plugin does by default.

    in reply to: include clonable meta-content in search #1553
    Anh TranAnh Tran
    Keymaster

    If the data is serialized (cloned fields), then there's no easy way to search with SQL.

    But if you want to search normal meta data, not serialized, you can do this by following this tutorial:

    http://www.deluxeblogtips.com/2012/04/search-all-custom-fields.html

    Another solution is using the plugin SearchWP. I haven't tested it yet, but from what it says, it can handle serialized and JSON data in the custom fields.

Viewing 15 posts - 3,721 through 3,735 (of 3,958 total)