Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 250 total)
  • Author
    Posts
  • in reply to: Problem with image_advanced field #1814
    Tan NguyenTan Nguyen
    Participant

    Hi bravebits,

    This bug caused when Meta Box 4.6 use new structure for File Advanced and Image Advanced, we're fixing this bug. If you want to fix immediately, please replace this file:

    
    https://github.com/rilwis/meta-box/blob/0054dce58a359d71058c057190965afc62da1631/js/media.js
    

    I'm looking to your code and will reply you soon.

    in reply to: Problem with image_advanced field #1782
    Tan NguyenTan Nguyen
    Participant

    Hi Bravebits,

    This bug is the compatilibity bug with Conditional Logic addon and Meta Box plugin. We're in progress to fix this bug, will be released within 2 days.

    Btw, I've tested with your provided code and it works properly, perhaps your provided code not same as your code you're testing in video.

    Thanks for your patience.

    Tan Nguyen

    in reply to: Getting Errors On Site When #1716
    Tan NguyenTan Nguyen
    Participant

    Hi, can you please export that meta box and send me to email: [email protected]?

    in reply to: Show meta box data on theme #1697
    Tan NguyenTan Nguyen
    Participant

    Hi qbangla,

    To display data on frontend, simply follow this guide:

    https://metabox.io/docs/get-meta-value/

    Btw, in your case, Brands_and_Products is a meta box, not holds any value, you can only get value of your field ids. For example:

    
    // Brand
    echo rwmb_meta( 'brand' );
    
    // Samsumg Products
    echo rwmb_meta( 'Samsung_products' );
    
    // ...
    

    Regards

    Tan Nguyen

    in reply to: Hide fields on multiple parent pages & hiding groups #1684
    Tan NguyenTan Nguyen
    Participant

    Hi bro,

    To hide a field from one of these parent pages, try in operator instead of equal. Equal means parent id should be 31 AND 35 AND 37. in means parent id in one of these values. So please change to:

    'hidden' => array('parent_id', 'in', array(31,35,37))

    About the bug when you hide groups, thank you for reporting, we're going to release new patch for that annoying bug.

    Best regards

    Tan Nguyen

    in reply to: Add custom fields to MB Builder #1648
    Tan NguyenTan Nguyen
    Participant

    Hi Akhimien,

    Thanks for downloading MB Builder, you can migrate MB Builder with any custom field that you want. In your case, just create a meta box with a textarea (or text field) which have id is wprss_item_permalink. Like this example:

    http://prnt.sc/8wmvku

    Best regards
    Tan Nguyen

    Tan NguyenTan Nguyen
    Participant

    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

    Tan NguyenTan Nguyen
    Participant

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

    Tan NguyenTan Nguyen
    Participant

    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?

    Tan NguyenTan Nguyen
    Participant

    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.

    Tan NguyenTan Nguyen
    Participant

    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? #1572
    Tan NguyenTan Nguyen
    Participant

    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: Field visibility issue #1561
    Tan NguyenTan Nguyen
    Participant

    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: MB Group doesn't save any values #1452
    Tan NguyenTan Nguyen
    Participant

    Glad that you've solved your problem ๐Ÿ™‚

    in reply to: Conditional Logic Between Checklist Group and Checkbox #1438
    Tan NguyenTan Nguyen
    Participant

    Hi Justin,

    Thanks again for contacting us, I've checked your registered code and see that's a bug and we'll list in in our documentation shortly.

    That bug happen when you define two field with similar ID, for example, 'hello' and 'hello_foo' or 'hello*' (* matches any characters)

    To workaround, you can update:

    
    'id' => $prefix . $slug . '_categories',
    

    To

    
    'id' => $prefix . 'categories_' . $slug,
    

    Best regards

    Tan Nguyen

Viewing 15 posts - 181 through 195 (of 250 total)