Forum Replies Created
-
AuthorPosts
-
Tan Nguyen
ParticipantHi 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.jsI'm looking to your code and will reply you soon.
Tan Nguyen
ParticipantHi 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
Tan Nguyen
ParticipantHi, can you please export that meta box and send me to email: [email protected]?
Tan Nguyen
ParticipantHi qbangla,
To display data on frontend, simply follow this guide:
https://metabox.io/docs/get-meta-value/
Btw, in your case,
Brands_and_Productsis 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
Tan Nguyen
ParticipantHi bro,
To hide a field from one of these parent pages, try
inoperator instead of equal. Equal means parent id should be 31 AND 35 AND 37.inmeans 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
Tan Nguyen
ParticipantHi 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:
Best regards
Tan NguyenOctober 19, 2015 at 8:55 PM in reply to: URGENT: Unable to make the Conditional Plugin work after activation ;( #1590Tan Nguyen
ParticipantHi Jan,
Please view your website and see the magic ๐ I've just updated code in your
pemtec/includes/custom-post-fields.phpI have checked your code and see that you're not register meta boxes by
rwmb_meta_boxesfilter. 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 NguyenOctober 19, 2015 at 6:31 PM in reply to: URGENT: Unable to make the Conditional Plugin work after activation ;( #1587Tan Nguyen
ParticipantSorry, did you sent via Contact Form? Or what receiver email did you sent to? I haven't received any email yet.
October 19, 2015 at 6:20 PM in reply to: URGENT: Unable to make the Conditional Plugin work after activation ;( #1585Tan Nguyen
ParticipantBtw, 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?
October 19, 2015 at 6:13 PM in reply to: URGENT: Unable to make the Conditional Plugin work after activation ;( #1584Tan Nguyen
ParticipantYes, 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.
October 19, 2015 at 6:00 PM in reply to: URGENT: Unable to make the Conditional Plugin work after activation ;( #1582Tan Nguyen
ParticipantHmm, 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.Tan Nguyen
ParticipantDid 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
Tan Nguyen
ParticipantHi 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
Tan Nguyen
ParticipantGlad that you've solved your problem ๐
September 14, 2015 at 12:27 PM in reply to: Conditional Logic Between Checklist Group and Checkbox #1438Tan Nguyen
ParticipantHi 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
-
AuthorPosts