File: /var/www/zaklada/wp-content/themes/zaklada/page-elements/element06.php
<?php /*
Element label: Call to action
Element name: element06
*/
$button = get_sub_field('button_linked_page');
$page_link = get_permalink( $button );
?>
<section class="become-a-patron">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 offset-md-3">
<h1 class="become-a-patron__title"><?= get_sub_field('title'); ?></h1>
<p class="become-a-patron__text">
<?= get_sub_field('description'); ?>
</p>
<div class="flex flex--center">
<?php if(get_sub_field('button_text') || $button || get_sub_field('button_url'))
{?>
<a href="<?= get_sub_field('button_is_manual_url') ? get_sub_field('button_url') : $page_link; ?>" class="btn btn--gold-alt"
target=""<?= get_sub_field('open_link_in_new_tab') ? '_blank"' : "" ?>">
<?= get_sub_field('button_text'); ?>
</a>
<?php }?>
</div>
</div>
</div>
</div>
</section>