default.php
16 lines
| 1 | <div class="shopengine-archive-result-count"> |
| 2 | <?php |
| 3 | defined('ABSPATH') || exit; |
| 4 | |
| 5 | \ShopEngine\Widgets\Widget_Helper::instance()->wc_template_filter(); |
| 6 | |
| 7 | if(\Elementor\Plugin::$instance->editor->is_edit_mode() || is_preview()) { ?> |
| 8 | |
| 9 | <p class="woocommerce-result-count"><?php echo esc_html__('Showing all results', 'shopengine'); ?></p> <?php |
| 10 | |
| 11 | } else { |
| 12 | |
| 13 | woocommerce_result_count(); |
| 14 | } ?> |
| 15 | </div> |
| 16 |