PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.6
ShopBuilder – WooCommerce Builder For Elementor v3.2.6
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | templates/wishlist/counter.php +6 -12 2.2.23.2.6 View file →
@@ -1,23 +1,17 @@
1 1 <?php
2 -
3 2 /**
4 - * Add to wishlist template
3 + * Go to wishlist Page
5 4 *
6 - * @author RadiusTheme
7 - * @package RTSB_ABSPATH\Templates\Wishlist\counter
8 - * @version 1.0.0
9 - */
10 -
11 -
12 -/**
13 - * Template variables:
14 - *
15 5 * @var $page_url string Wishlist page url
6 + * @var $icon_html string
16 7 * @var $item_count int Total number of product of wishlist
17 8 */
18 9
10 +use RadiusTheme\SB\Helpers\Fns;
11 +
19 12 defined( 'ABSPATH' ) || die( 'Keep Silent' );
20 13 ?>
21 14 <a href="<?php echo esc_url( $page_url ); ?>" class="rtsb-wishlist-counter-wrap">
22 - <span class="rtsb-wishlist-counter"><?php echo esc_html( $item_count ); ?></span>
15 + <?php Fns::print_html( $icon_html, true ); ?>
16 + <span class="rtsb-wishlist-counter"><?php echo esc_html( $item_count ); ?></span>
23 17 </a>