Support

Account

Forum Replies Created

  • Actually – I’m not sure myself but it looks like the issue may have cleared up. So maybe it was a caching bug. Sorry about that.

  • Hey John, so interestingly neither the <i> or the shows in the source code of a published page. Screenshot of source.

    We’ve got “icon” selected in ACF

  • Wow, thank you so much! Truly thank you for all your help! That worked perfectly!

  • Thank you so much! That worked!!! I really appreciate it!

    This code has brought up one other question – is it possible to add a conditional within the repeater. Is there a specific syntax to be used?

    I have tried multiple ways of writing it with no luck.

    <?php 
    		foreach ($section['testimonials'] as $item => $block) :
    	?>
    		<div class="testimonial-slideshow__slide background-cover">
    			<div class="testimonial-slideshow__slide-content">
    				<?=$block['testimonial_text']?>
    				<h5>- <?=$block['testimonial_attribution']?></h5>
    
    				<?php if ($block['testimonial_image'] !== '') : ?>
    					<div class="testimonial-image"><img src="<?=$block['testimonial_image']['sizes']['image-90-90']?>"/></div>
    				<?php endif; ?>
    
    				<?php if ($block['button_url'] !== '') : ?>
    					<a href="<?=$block['button_url']?>" class="caps outline button" ><?=$block['button_text']?></a>
    				<?php endif; ?>
    			</div>
    		</div>
    	<?php endforeach; ?>

    Oddly the button stays hidden but the testimonial_image circle div doesn’t stay hidden.

Viewing 4 posts - 1 through 4 (of 4 total)