Hello, how are you? I had a cake php theme and I adapted the canvas for the wonderful design it has! The big problem is that the icons that previously appeared as comparatives in my plans and differed stopped working:
Before> http://cuidadordeidoso.rio/Plans
After> http://cuidadorideal.com.br/Plans
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<?php echo $this->Session->flash();?>
<div class="container clearfix">
<div class="fancy-title title-dotted-border title-center">
<?php if($userValue || !$memberValue){?>
<?php }?>
</div>
<?php if($userValue || !$memberValue){?>
<div class="pricing bottommargin clearfix">
<?php foreach($planT as $post){?>
<div class="col-md-3">
<div class="pricing-box <?php if($post['Plan']['amount'] == 10.99 ){ echo 'best-price'; } ?>">
<div class="pricing-title">
<h3><?php echo$post['Plan']['name'];?></h3>
</div>
<div class="pricing-price ">
<span class="price-unit"><?php echo$currency;?></span><?php echo$post['Plan']['amount'];?><span class="price-tenure">/<?php if($post['Plan']['duration']){echo$post['Plan']['duration'].' '.__('M');}else{echo __('Unlimited (Months)');}?></span>
</div>
<div class="pricing-features"><span><?php echo$post['Plan']['name'];?></span>
-
</div> <div class="pricing-action " style="<?php if($post['Plan']['amount'] == 10.99 ){ echo 'padding-bottom: 20px;'; } ?>"> <?php if($post['Plan']['amount']>0){?><a <?php if($post['Plan']['amount'] == 10.99 ){ echo 'class="btn btn-danger btn-block btn-lg bgcolor border-color"'; }else{ echo 'class="popup-with-zoom-anim order-btn btn btn-danger btn-block btn-lg"'; } ?> data-toggle="modal" data-target=".payment-option-<?php echo$post['Plan']['id'];?>" style="<?php if($post['Plan']['amount'] == 10.99 ){ echo 'margin-top: 40px;'; } ?>" href="javascript:void(0);"><?php echo __('Selecionar Plano');} else{echo $this->Html->link(__('Free Checkout'),array('controller'=>'Tpayments','action'=>'checkout',$post['Plan']['id']),array('class'=>'popup-with-zoom-anim order-btn btn btn-danger btn-block btn-lg'));}?> </div> </div> </div> <?php } unset($post);?> </div>
