| Server IP : 144.76.79.100 / Your IP : 216.73.216.103 [ Web Server : Apache System : Linux ch05.wehostwebserver.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64 User : razzlestore ( 1092) PHP Version : 8.2.29 Disable Function : NONE Domains : 343 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/public_html/application/views/front/ |
Upload File : |
<section class="store section pb-0 pt-0" style="margin-top: 25px;">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1 col-lg-3 offset-lg-0">
<div class="sidebar">
<div class="widget related-store store-detail-bar p-30">
<img src="<?php echo base_url('uploads/store/').$store->store_logo;?>" class="logo m-0-auto">
</div>
<div class="widget related-store store-detail-bar">
<p class="mb-0"><b>About <?php echo $store->store_name;?></b></p>
<p class="light-text mb-0"><?php echo $store->store_description;?></p>
</div>
<?php if(!empty($related_stores)):?>
<div class="widget related-store related-store-d">
<h5 class="widget-header">Related Store</h5>
<ul class="store-list md list-inline">
<?php foreach($related_stores as $related_store):?>
<li class="list-inline-item">
<a href="<?php echo base_url($related_store['store_slug']);?>"><img src="<?php echo base_url('uploads/store/').$related_store['store_logo'];?>"></a>
</li>
<?php endforeach;?>
</ul>
<a href="<?php echo base_url('category/').$store->category_slug;?>" target="_blank" class="btn btn-small btn-transparent hide-m">Browse Similar Stores</a>
</div>
<?php endif;?>
</div>
</div>
<div class="col-md-10 offset-md-1 col-lg-9 offset-lg-0">
<div class="block">
<h1 class="store-main-heading hide-m"><?php echo $store->store_name;?> Coupons <?php echo ($store->store_month_visibility == 1)?date('F Y').' ':'';?></h1>
<ul class="nav nav-pills transparent store-nav offers-nav store-actions" role="tablist">
<li class="nav-item">
<a class="nav-link active text-left all" href="#">All Offers (<?php echo count($offers);?>)</a>
</li>
<li class="nav-item">
<a class="nav-link text-left codes" href="#">Codes</a>
</li>
<li class="nav-item">
<a class="nav-link text-left deals" href="#">Deals</a>
</li>
<?php if(!empty($store->store_content)):?>
<li class="nav-item">
<a class="nav-link text-left about" href="#">About</a>
</li>
<?php endif;?>
</ul>
<div class="tab-content">
<div class="tab-pane active">
<?php if(!empty($offers)):foreach($offers as $offer):?>
<div class="deal-item bg-light <?php echo $offer['offer_type'];?> all ">
<div class="media">
<div class="img-content align-self-center">
<a href="<?php echo base_url($store->store_slug);?>">
<img src="<?php echo base_url('uploads/store/').$store->store_logo;?>">
</a>
</div>
<div class="media-body">
<h5 class="mt-0"><?php echo $offer['offer_title'];?></h5>
<ul class="list-inline">
<li>
<a data-affliate-url="<?php echo $offer['offer_affiliate_url'];?>" targe="_blank" href="<?php echo current_url();?>#offer_<?php echo $offer['offer_id'];?>" class="btn btn-dual btn-<?php echo $offer['offer_type'];?> offer-btn"><span class="upper"><?php echo ($offer['offer_type'] == 'code')?'Show Code':'Get Deal';?></span><?php if($offer['offer_type'] == 'code'):?><span class="lower"><?php echo 'code'.substr($offer['offer_code'], -4);?></span><?php endif;?></a>
</li>
<li class="list-inline-item"><a href="#"><?php echo ($offer['offer_expiry_date_days_left'] > 0)?'Offer will expire in '.$offer['offer_expiry_date_days_left'].' days':'Offer Expired';?></a>
</li>
<ul class="success-list list-inline align-content-center">
<li class="list-inline-item text-muted"> <?php echo $offer['offer_views'];?> views</li>
<?php if($offer['offer_verified'] == '1'):?>
<li class="list-inline-item success"><i class="fa fa-check"></i> Verified</li>
<?php endif;?>
<?php if($offer['offer_exclusive'] == '1'):?>
<li class="list-inline-item success"><i class="fa fa-diamond"></i> Exclusive</li>
<?php endif;?>
</ul>
</ul>
</div>
</div>
</div>
<?php endforeach;endif;?>
<?php if(!empty($offers)):?>
<div class="deal-card bg-light all about">
<div class="media">
<div class="media-body bl-none">
<table class="table">
<thead>
<tr>
<th>Description</th>
<th>Expiry</th>
<th>Code</th>
</tr>
</thead>
<tbody>
<?php $i = 0;foreach($offers as $offer):if($offer['offer_type'] == 'code' && $i <= 4):?>
<tr>
<td><?php echo $offer['offer_title'];?></td>
<td><?php echo ($offer['offer_expiry_date_days_left'] > 0)?'Offer will expire in '.$offer['offer_expiry_date_days_left'].' days':'Offer Expired';?></td>
<td><?php echo substr($offer['offer_code'], -4);?>****</td>
</tr>
<?php endif;$i++;endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
<?php endif;?>
<?php if(!empty($store->store_content)):?>
<div class="deal-card bg-light all about">
<div class="media">
<div class="media-body bl-none">
<?php echo $store->store_content;?>
</div>
</div>
</div>
<?php endif;?>
</div>
</div>
</div>
</div>
<div class="col-md-10 offset-md-1 col-lg-3 offset-lg-0 related-store-m">
<div class="sidebar">
<?php if(!empty($related_stores)):?>
<div class="widget related-store">
<h5 class="widget-header">Related Store</h5>
<ul class="store-list md list-inline">
<?php foreach($related_stores as $related_store):?>
<li class="list-inline-item">
<a href="<?php echo base_url($related_store['store_slug']);?>"><img src="<?php echo base_url('uploads/store/').$related_store['store_logo'];?>"></a>
</li>
<?php endforeach;?>
</ul>
<a href="<?php echo base_url('category/').$store->category_slug;?>" target="_blank" class="btn btn-small btn-transparent hide-m">Browse Similar Stores</a>
</div>
<?php endif;?>
</div>
</div>
</div>
</div>
</section>