PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / trunk
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant vtrunk
2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 All 59 releases
merchant / templates / modules / quick-view / modal.php

modal.php in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant trunk, at templates/modules/quick-view/modal.php

46 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Quick View modal template — centered layout.
5 *
6 * @var array $args Template args: settings (array).
7 *
8 * @since 2.3.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit; // Exit if accessed directly
13 }
14
15 $settings = $args['settings'];
16 ?>
17 <div class="single-product merchant-quick-view-modal merchant-quick-view-<?php echo esc_attr( $settings[ 'place_product_image' ] ); ?>">
18 <div class="merchant-quick-view-overlay"></div>
19 <div class="merchant-quick-view-inner">
20 <a href="#" class="merchant-quick-view-close-button" title="<?php echo esc_attr__( 'Close quick view modal', 'merchant' ); ?>">
21 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
22 <path d="M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z"/>
23 </svg>
24 </a>
25 <?php if ( ! empty( $settings[ 'show_navigation_arrows' ] ) ) : ?>
26 <a href="#" class="merchant-quick-view-nav-prev" title="<?php echo esc_attr__( 'Previous product', 'merchant' ); ?>">
27 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
28 <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
29 </svg>
30 </a>
31 <a href="#" class="merchant-quick-view-nav-next" title="<?php echo esc_attr__( 'Next product', 'merchant' ); ?>">
32 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
33 <path d="M8.59 16.59L10 18l6-6-6-6-1.41 1.41L13.17 12z"/>
34 </svg>
35 </a>
36 <?php endif; ?>
37 <div class="merchant-quick-view-content"></div>
38 <div class="merchant-quick-view-loader">
39 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
40 <path opacity="0.4" d="M478.71 364.58zm-22 6.11l-27.83-15.9a15.92 15.92 0 0 1-6.94-19.2A184 184 0 1 1 256 72c5.89 0 11.71.29 17.46.83-.74-.07-1.48-.15-2.23-.21-8.49-.69-15.23-7.31-15.23-15.83v-32a16 16 0 0 1 15.34-16C266.24 8.46 261.18 8 256 8 119 8 8 119 8 256s111 248 248 248c98 0 182.42-56.95 222.71-139.42-4.13 7.86-14.23 10.55-22 6.11z" />
41 <path d="M271.23 72.62c-8.49-.69-15.23-7.31-15.23-15.83V24.73c0-9.11 7.67-16.78 16.77-16.17C401.92 17.18 504 124.67 504 256a246 246 0 0 1-25 108.24c-4 8.17-14.37 11-22.26 6.45l-27.84-15.9c-7.41-4.23-9.83-13.35-6.2-21.07A182.53 182.53 0 0 0 440 256c0-96.49-74.27-175.63-168.77-183.38z" />
42 </svg>
43 </div>
44 </div>
45 </div>
46