WPGLOBUS not working with Repeater Image (ACF)
-
I have created repeater in the ACF including image repeaters.
In the same time I configured WPGLOBUS multilingual plugin as well.
But when I try to get image url with, it return as empty. But if we disable the WPGLOUS plugin it works fine. Please refer code block as below.
<?php
if( have_rows(‘home_solution_image_box’) ):
while ( have_rows(‘home_solution_image_box’)) : the_row();
$image = get_sub_field(‘home_solution_image’);
$course_link = get_sub_field(‘home_solution_image_link’);
?>
<div class=””>
“>
” alt=””>
</div>
<?php
endwhile;
else :
// no rows found
endif;
?>Can anyone advice me how I can I get the image url with WPGLOUS implementation.
- The topic ‘WPGLOBUS not working with Repeater Image (ACF)’ is closed to new replies.