add-to-cart
5 years ago
tabs
5 years ago
meta.php
5 years ago
photoswipe.php
5 years ago
price.php
5 years ago
product-attributes.php
5 years ago
product-image.php
5 years ago
product-thumbnails.php
5 years ago
rating.php
5 years ago
related.php
5 years ago
review-meta.php
5 years ago
review-rating.php
5 years ago
review.php
5 years ago
sale-flash.php
5 years ago
share.php
5 years ago
short-description.php
5 years ago
stock.php
5 years ago
title.php
5 years ago
up-sells.php
5 years ago
photoswipe.php
57 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Photoswipe markup |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/single-product/photoswipe.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion WooCommerce will need to update template files and you |
| 8 | * (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce\Templates |
| 15 | * @version 3.0.0 |
| 16 | */ |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; // Exit if accessed directly. |
| 20 | } |
| 21 | ?> |
| 22 | |
| 23 | <div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"> |
| 24 | <div class="pswp__bg"></div> |
| 25 | <div class="pswp__scroll-wrap"> |
| 26 | <div class="pswp__container"> |
| 27 | <div class="pswp__item"></div> |
| 28 | <div class="pswp__item"></div> |
| 29 | <div class="pswp__item"></div> |
| 30 | </div> |
| 31 | <div class="pswp__ui pswp__ui--hidden"> |
| 32 | <div class="pswp__top-bar"> |
| 33 | <div class="pswp__counter"></div> |
| 34 | <button class="pswp__button pswp__button--close" aria-label="<?php esc_attr_e( 'Close (Esc)', 'woocommerce' ); ?>"></button> |
| 35 | <button class="pswp__button pswp__button--share" aria-label="<?php esc_attr_e( 'Share', 'woocommerce' ); ?>"></button> |
| 36 | <button class="pswp__button pswp__button--fs" aria-label="<?php esc_attr_e( 'Toggle fullscreen', 'woocommerce' ); ?>"></button> |
| 37 | <button class="pswp__button pswp__button--zoom" aria-label="<?php esc_attr_e( 'Zoom in/out', 'woocommerce' ); ?>"></button> |
| 38 | <div class="pswp__preloader"> |
| 39 | <div class="pswp__preloader__icn"> |
| 40 | <div class="pswp__preloader__cut"> |
| 41 | <div class="pswp__preloader__donut"></div> |
| 42 | </div> |
| 43 | </div> |
| 44 | </div> |
| 45 | </div> |
| 46 | <div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"> |
| 47 | <div class="pswp__share-tooltip"></div> |
| 48 | </div> |
| 49 | <button class="pswp__button pswp__button--arrow--left" aria-label="<?php esc_attr_e( 'Previous (arrow left)', 'woocommerce' ); ?>"></button> |
| 50 | <button class="pswp__button pswp__button--arrow--right" aria-label="<?php esc_attr_e( 'Next (arrow right)', 'woocommerce' ); ?>"></button> |
| 51 | <div class="pswp__caption"> |
| 52 | <div class="pswp__caption__center"></div> |
| 53 | </div> |
| 54 | </div> |
| 55 | </div> |
| 56 | </div> |
| 57 |