Viewing File: /home/maglabs/valvtec1/wp-content/themes/indobi/inc/sections/price.php
<?php
$data = indobi_el()->merge_options([
'Repeators' => [],
'text_heading' => [],
], $data);
?>
<!-- pricing-area -->
<section id="pricing" class="pricing-area pt-120 pb-60">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="section-title mb-50 wow fadeInLeft animated text-center" data-animation="fadeInLeft" data-delay=".4s">
<h2>
<?php echo html_entity_decode($data['text_heading']) ?>
</h2>
</div>
</div>
<?php $i = 0; ?>
<?php foreach ((array) $data['Repeators'] as $price_var): ?>
<div class="col-lg-4 col-md-4">
<div class="pricing-box pricing-box2 text-center mb-60">
<div class="pricing-head">
<h3><?php echo html_entity_decode($price_var['text'])?></h3>
<div class="price-count">
<h2><?php echo html_entity_decode($price_var['price']) ?></h2>
<p><?php echo html_entity_decode($price_var['price_text']) ?></p>
</div>
<hr>
</div>
<div class="pricing-body mt-20 mb-30 text-left">
<ul>
<?php echo html_entity_decode($price_var['content'])?>
</ul>
</div>
<div class="pricing-btn">
<a href="<?php echo esc_url($price_var['price-button-link']['url'])?>" class="btn ss-btn"><?php echo html_entity_decode($price_var['price-button'])?></a>
</div>
</div>
</div>
<?php $i++; endforeach; ?>
</div>
</div>
</section>
<!-- pricing-area-end -->
Back to Directory
File Manager