For anyone else that is looking to do this I was able to achieve this by changing get_field to get_sub_field.
frontend-gallery-slider-for-advanced-custom-field/includes/shortcodes/fagsfacf-slider.php
on line 111 change
$images = get_field($acf_field_value);
to
$images = get_sub_field($acf_field_value);
I would much rather be able to hook into the plugin instead of overwriting plugin code, but I’m not sure how. The only other drawback is now it can ONLY be used on sub fields. In my case it is fine because I am only using it in one location
-
This reply was modified 7 years, 3 months ago by
dadadmin.