How get wishsuite counter?
-
I need to get the number of products that are in my favorites list. The shortcode is not suitable because I only need the number, not the finished html code!
I tried it this way, but got an error:<?php if ( class_exists( 'WishSuite_Base' ) ) : ?>
<a href="/wishlist/" class="btn p-1">
<span id="icde_wishlist_count"
class="wishlist-count badge text-bg-warning cart-badge bg-warning rounded-circle">
<?php echo
$products = Manage_Wishlist::instance()->get_products_data();
echo count($products)
?>
</span>
</a>
<?php endif; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.