JezK
Edit File: add-to-wishlist-remove.php
<?php /** * Add to wishlist button template - Remove button * * @author YITH * @package YITH\Wishlist\Templates\AddToWishlist * @version 3.0.12 */ /** * Template variables: * * @var $base_url string Current page url * @var $wishlist_url string Url to wishlist page * @var $exists bool Whether current product is already in wishlist * @var $show_exists bool Whether to show already in wishlist link on multi wishlist * @var $show_count bool Whether to show count of times item was added to wishlist * @var $show_view bool Whether to show view button or not * @var $product_id int Current product id * @var $parent_product_id int Parent for current product * @var $product_type string Current product type * @var $label string Button label * @var $browse_wishlist_text string Browse wishlist text * @var $already_in_wishslist_text string Already in wishlist text * @var $product_added_text string Product added text * @var $icon string Icon for Add to Wishlist button * @var $link_classes string Classed for Add to Wishlist button * @var $available_multi_wishlist bool Whether add to wishlist is available or not * @var $disable_wishlist bool Whether wishlist is disabled or not * @var $template_part string Template part * @var $container_classes string Container classes * @var $found_in_list YITH_WCWL_Wishlist Wishlist * @var $found_item YITH_WCWL_Wishlist_Item Wishlist item */ if ( ! defined( 'YITH_WCWL' ) ) { exit; } // Exit if accessed directly global $product; if ( empty( $icon ) || strpos( $icon, 'fa-heart-o' ) || strpos( $icon, 'fa-heart' ) ) { $icon = \Razzi\Icon::get_svg( 'heart', '', 'shop' ); } ?> <div class="yith-wcwl-add-button yith-wcwl-wishlistexistsbrowse"> <a href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'remove_from_wishlist', $product_id, $base_url ), 'remove_from_wishlist' ) ); ?>" class="rz-loop_button delete_item <?php echo esc_attr( $link_classes ); ?>" data-item-id="<?php echo esc_attr( $found_item->get_id() ); ?>" data-product-id="<?php echo esc_attr( $product_id ); ?>" data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>" data-text="<?php echo esc_attr( apply_filters( 'yith_wcwl_add_to_wishlist_title', $label ) ); ?>" rel="nofollow" > <?php echo ! empty( $icon ) ? $icon : '';?> <span class="loop_button-text"><?php echo wp_kses_post( $label ); ?></span> </a> <?php if ( $show_view ) : ?> <span class="separator"><?php esc_html_e( 'or', 'razzi' ); ?></span> <a href="<?php echo esc_url( $found_in_list->get_url() ); ?>" class="view-wishlist"><?php echo esc_html( apply_filters( 'yith_wcwl_view_wishlist_label', __( 'View ›', 'razzi' ) ) ); ?></a> <?php endif; ?> </div>