PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
content-egg
/
templates
<?php /* * Name: Price alert for lowest price product * Modules: * Module Types: PRODUCT * */ __('Price alert for lowest price product', 'content-egg-tpl'); use ContentEgg\application\helpers\TemplateHelper; use ContentEgg\application\helpers\TextHelper; ?> <?php $all_items = TemplateHelper::sortAllByPrice($data); $item = $all_items[0]; $module_id = $item['module_id']; if (!$title) $title = __('Set Alert for', 'content-egg-tpl') . ' ' . TextHelper::truncate($item['title'], 100) . ' - ' . TemplateHelper::formatPriceCurrency($item['price'], $item['currencyCode']); ?> <div class="egg-container cegg-price-tracker-item"> <div class="panel panel-default cegg-price-tracker-panel panel-warning"> <div class="panel-heading"><i class="fa fa-bell-o" aria-hidden="true"></i> <?php _e('Create Your Free Price Drop Alert!', 'content-egg-tpl'); ?></div> <div class="panel-body"> <?php $this->renderBlock('price_alert_inline', array('item' => $item, 'module_id' => $module_id, 'title' => $title)); ?> </div> </div> </div>
[+]
..
[-] block_price_alert.php
[edit]
[-] wdgt_price_movers_list.php
[edit]
[-] wdgt_price_movers_grid.php
[edit]
[-] block_offers_logo.php
[edit]
[-] block_price_statistics.php
[edit]
[-] block_price_history.php
[edit]
[-] block_price_comparison.php
[edit]
[-] block_offers_list.php
[edit]
[-] block_offers_tile.php
[edit]
[-] block_offers_grid.php
[edit]