Server : Apache/2.4.18 (Ubuntu) System : Linux canvaswebdesign 3.13.0-71-generic #114-Ubuntu SMP Tue Dec 1 02:34:22 UTC 2015 x86_64 User : oppastar ( 1041) PHP Version : 7.0.33-0ubuntu0.16.04.15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Directory : /var/www/blue-sky.co.id/public_html/application/modules/bestseller/views/1/ |
Upload File : |
<?php if(count($best_sellers) > 0) : ?> <!-- mt bestseller start here --> <div class="mt-bestseller bg-grey text-center wow fadeInUp" data-wow-delay="0.4s"> <div class="container"> <div class="row"> <div class="col-xs-12 mt-heading text-uppercase"> <h2 class="heading"><?= ucwords(lang('trending')); ?></h2> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="bestseller-slider"> <?php foreach ($best_sellers as $item):?> <div class="slide"> <!-- mt product1 center start here --> <div class="mt-product1 large"> <div class="box"> <div class="b1"> <div class="b2"> <?php //get product image $image_name = $this->db->select('image')->from('product_images')->where('product_id', $item->id_products)->limit(1)->order_by('priority', 'ASC')->get()->row()->image; ?> <a href="<?= base_url() . 'product/' . $item->alias; ?>"><img src="<?= base_url() . 'uploads/product/small/' . $image_name; ?>" alt="<?= $item->title; ?>"></a> </div> </div> </div> <div class="txt"> <strong class="title"><a href="<?= base_url() . 'product/' . $item->alias; ?>"><?= ucwords($item->title); ?></a></strong> </div> </div><!-- mt product1 center end here --> </div> <?php endforeach; ?> </div> </div> </div> </div> </div> <?php endif; ?>