Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
careerusa.star4hire.com
/
wp-content
/
plugins
/
essential-blocks
/
views
✏️
Editing: product-images.php
<?php defined( 'ABSPATH' ) || exit; global $product; if(! $product ) return; // These come from the merged attribute array via Helper::views(); // guard them so a missing attribute does not raise a PHP 8.x // "undefined variable" warning on WP 7.0. $blockId = isset( $blockId ) ? $blockId : ''; $classHook = isset( $classHook ) ? $classHook : ''; $enableZoom = isset( $enableZoom ) ? $enableZoom : false; $galleryPosition = isset( $galleryPosition ) ? $galleryPosition : 'bottom'; $settings = isset( $settings ) ? $settings : []; $nav_settings = isset( $nav_settings ) ? $nav_settings : []; $wrapper_attributes = get_block_wrapper_attributes( [ 'class' => 'root-' . $blockId, ] ); $post_thumbnail_id = $product->get_image_id(); $attachment_ids = $product->get_gallery_image_ids(); $wrapper_classes = [ $blockId, is_array($attachment_ids) && count($attachment_ids) <= 4 ? 'eb-product-images-disable-nav' : '' ]; ?> <div <?php echo wp_kses_data( $wrapper_attributes); ?>> <div class="eb-parent-wrapper eb-parent-<?php echo esc_attr( $blockId ); ?> <?php echo esc_attr( $classHook ); ?>"> <div class="<?php echo esc_attr( implode(" ",$wrapper_classes )); ?> eb-product-images-wrapper" data-id="<?php echo esc_attr( $blockId ); ?>" data-settings="<?php echo esc_attr(wp_json_encode($settings)); ?>" data-nav-settings="<?php echo esc_attr(wp_json_encode($nav_settings)); ?>" data-enable-zoom="<?php echo esc_attr($enableZoom ? 'true' : 'false'); ?>"> <?php if( $post_thumbnail_id && is_array($attachment_ids) && ! empty($attachment_ids)) { $helper::views( 'woocommerce/gallery', [ 'thumbnail_id' => $post_thumbnail_id, 'attachment_ids' => $attachment_ids, 'gallery_position' => $galleryPosition ] ); } else if ($post_thumbnail_id) { $helper::views( 'woocommerce/image', [ 'thumbnail_id' => $post_thumbnail_id, ] ); } else { ?> <div class="woocommerce-product-gallery__image--placeholder"> <?php echo sprintf( '<img src="%s" alt="%s" class="wp-post-image" />', esc_url( wc_placeholder_img_src( 'woocommerce_single' ) ), esc_html__( 'Awaiting product image', 'essential-blocks' ) ); ?> </div> <?php } ?> </div> </div> </div>
💾 Save Changes
❌ Cancel