ACF-Image-Select
ACF-Image-Select copied to clipboard
Using selection in Conditional Logic
Hello, Great add-on :) Only I want to use the selected option in my Conditional Logic for a other field. Do you know how I can add this to the functionality.
Thanks in advance!
Same here. It would be nice.
@cyberwani Can you add this slick hack to your plugin to enable conditional logic?
(function($){
var myFieldName = 'image-select'; //name of field
$(document).ready(function () {
$(document)
.find('[data-type="'+ myFieldName +'"]')
.data('type', 'radio'); // here is the change
});
})(jQuery);