. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 54.36.91.62 / Your IP :
216.73.216.87 [
Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : eticmes ( 123698) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/eticmes/www/wp-content/themes/goya/woocommerce/ |
Upload File : |
<?php
/**
* Add to wishlist popup template
*
* @author Your Inspiration Themes
* @package YITH WooCommerce Wishlist
* @version 3.0.0
*/
/**
* Template variables:
*
* @var $base_url string Current page url
* @var $lists YITH_WCWL_Wishlist[]
* @var $show_exists bool Whether to show Exists message or not
* @var $product_id int Current product id
* @var $parent_product_id int Parent for current product
* @var $show_count bool Whether to show count of times item was added to wishlist
* @var $exists bool Whether the product is already in list
* @var $already_in_wishslist_text string Already in wishlist message
* @var $browse_wishlist_text string Browse wishlist message
* @var $wishlist_url string View wishlist url
* @var $link_classes string Classes for the Add to Wishlist link
* @var $link_popup_classes string Classes for Open Add to Wishlist Popup link
* @var $label_popup string Label for Open Add to Wishlist Popup link
* @var $popup_title string Popup title
* @var $product_image string Product image url (not is use)
* @var $icon string Icon HTML tag
* @var $heading_icon string Heading icon HTML tag
*/
if ( ! defined( 'YITH_WCWL' ) ) {
exit;
} // Exit if accessed directly
$unique_id = mt_rand();
?>
<div class="yith-wcwl-add-button et-tooltip">
<a href="#add_to_wishlist_popup_<?php echo esc_attr( $product_id ); ?>_<?php echo esc_attr( $unique_id ); ?>" rel="nofollow" class="<?php echo esc_attr( $link_classes ); ?> open-pretty-photo" data-rel="prettyPhoto[add_to_wishlist_<?php echo esc_attr( $product_id ); ?>_<?php echo esc_attr( $unique_id ); ?>]" data-title="<?php echo esc_attr( apply_filters( 'yith_wcwl_add_to_wishlist_title', $label ) ); ?>"><span class="text"><?php echo wp_kses_post( $label ); ?></span><span class="icon"><span class="et-icon et-heart"></span></span></a>
<!-- WISHLIST POPUP -->
<div id="add_to_wishlist_popup_<?php echo esc_attr( $product_id ); ?>_<?php echo esc_attr( $unique_id ); ?>" class="yith-wcwl-popup">
<form class="yith-wcwl-popup-form" method="post" action="<?php echo esc_url( add_query_arg( 'add_to_wishlist', $product_id, $base_url ) ); ?>">
<div class="yith-wcwl-popup-content">
<?php if ( apply_filters( 'yith_wcwl_show_popup_heading_icon_instead_of_title', ! empty( $heading_icon ), $heading_icon ) ): ?>
<p class="heading-icon">
<?php echo apply_filters( 'yith_wcwl_popup_heading_icon_class', $heading_icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</p>
<?php else: ?>
<h3><?php echo esc_html( $popup_title ); ?></h3>
<?php endif; ?>
<p class="popup-description">
<a href="#" class="show-tab active" data-tab="choose"><?php esc_html_e( 'Choose a wishlist', 'yith-woocommerce-wishlist' ); ?></a>
<?php esc_html_e( 'or', 'yith-woocommerce-wishlist' ); ?>
<a href="#" class="show-tab" data-tab="create"><?php esc_html_e( 'Create a new list', 'yith-woocommerce-wishlist' ); ?></a>
</p>
<div class="tab choose">
<div class="yith-wcwl-wishlist-select-container">
<p class="form-row form-row-wide">
<select name="wishlist_id" class="wishlist-select">
<?php if ( empty( $lists ) ): ?>
<option value="0" <?php selected( true ); ?> ><?php echo esc_html( apply_filters( 'yith_wcwl_default_wishlist_name', get_option( 'yith_wcwl_wishlist_title' ) ) ); ?></option>
<?php else: ?>
<?php foreach ( $lists as $list ): ?>
<?php if ( $list ) : ?>
<option value="<?php echo esc_attr( $list->get_id() ); ?>"><?php echo esc_html( $list->get_formatted_name() ); ?></option>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<option value="new"><?php echo esc_html( apply_filters( 'yith_wcwl_create_new_list_text', __( 'Create a new list', 'yith-woocommerce-wishlist' ) ) ); ?></option>
</select>
</p>
</div>
</div>
<div class="tab create">
<p class="form-row form-row-wide">
<input name="wishlist_name" class="wishlist-name input-text" type="text" placeholder="<?php echo esc_html( apply_filters( 'yith_wcwl_new_list_title_text', __( 'Enter wishlist name', 'yith-woocommerce-wishlist' ) ) ); ?>"/>
</p>
<p class="form-row form-row-wide">
<label>
<input type="radio" name="wishlist_visibility" value="0" class="public-visibility wishlist-visibility" <?php checked( true ); ?> />
<?php echo yith_wcwl_get_privacy_label( 0, true ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</label>
<label>
<input type="radio" name="wishlist_visibility" value="1" class="shared-visibility wishlist-visibility"/>
<?php echo yith_wcwl_get_privacy_label( 1, true ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</label>
<label>
<input type="radio" name="wishlist_visibility" value="2" class="private-visibility wishlist-visibility"/>
<?php echo yith_wcwl_get_privacy_label( 2, true ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</label>
</p>
</div>
</div>
<div class="yith-wcwl-popup-footer">
<a rel="nofollow" class="button wishlist-submit <?php echo esc_attr( $link_popup_classes ); ?>" data-product-id="<?php echo esc_attr( $product_id ); ?>" data-product-type="<?php echo esc_attr( $product_type ); ?>" data-original-product-id="<?php echo esc_attr( $parent_product_id ); ?>">
<?php echo esc_html( $label_popup ); ?>
</a>
</div>
</form>
</div>
</div>