You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.4 KiB

<?php
if ( ! woodmart_woocommerce_installed() || ! woodmart_get_opt( 'wishlist' ) || ( woodmart_get_opt( 'wishlist_logged' ) && ! is_user_logged_in() ) ) {
return;
}
$extra_class = '';
$icon_type = $params['icon_type'];
$extra_class .= ' wd-style-' . $params['design'];
if ( ! $params['hide_product_count'] ) {
$extra_class .= ' wd-with-count';
$extra_class .= woodmart_get_old_classes( ' with-product-count' );
}
if ( $icon_type == 'custom' ) {
$extra_class .= ' wd-tools-custom-icon';
}
$extra_class .= woodmart_get_old_classes( ' woodmart-wishlist-info-widget' );
woodmart_enqueue_js_script( 'wishlist' );
?>
<div class="wd-header-wishlist wd-tools-element<?php echo esc_attr( $extra_class ); ?>" title="<?php echo esc_attr__( 'My Wishlist', 'woodmart' ); ?>">
<a href="<?php echo esc_url( woodmart_get_whishlist_page_url() ); ?>">
<span class="wd-tools-icon<?php echo woodmart_get_old_classes( ' wishlist-icon' ); ?>">
<?php
if ( $icon_type == 'custom' ) {
echo whb_get_custom_icon( $params['custom_icon'] );
}
?>
<?php if ( ! $params['hide_product_count'] ) : ?>
<span class="wd-tools-count">
<?php echo esc_html( woodmart_get_wishlist_count() ); ?>
</span>
<?php endif; ?>
</span>
<span class="wd-tools-text<?php echo woodmart_get_old_classes( ' wishlist-label' ); ?>">
<?php esc_html_e( 'Wishlist', 'woodmart' ); ?>
</span>
</a>
</div>