Good I have the following doubt, I have created this carrousel of images taking the data of custom fields. The case that in the image, the corresponding link does not apply and no image appears in the carrousel.
Previously if I do a var_dump ($ casosexitoespecificos ['image']), if it shows the links correctly.
Client_name and description shows it correctly.
<?php $carousel = '[vc_row][vc_column][ultimate_carousel slide_to_scroll="single" title_text_typography="" slides_on_mob="1" autoplay_speed="3000" el_class="carousel-sectores" dots="off" item_space="0"]'; ?>
<?php foreach ($casos_exito_carrousel as $casoexitoespecifico) {
$carousel = $carousel.'[vc_single_image image="'.$casoexitoespecifico["imagen"].']';
$carousel = $carousel.'[vc_column_text]'.$casoexitoespecifico["nombre_cliente"].'[/vc_column_text]';
$carousel = $carousel.'[vc_column_text]'.$casoexitoespecifico["descripcion"].'[/vc_column_text]';
}?>
<?php $carousel = $carousel.'[/ultimate_carousel][/vc_column][/vc_row]'; ?>