PATH:
home
/
ajwellnessmassag
/
angelictravels.online
/
wp-content
/
plugins
/
essential-blocks
/
views
/
woocommerce
<?php $otherArgs = ['showSoldCount' => $showSoldCount, 'showSoldCountBar' => $showSoldCountBar, 'soldCountPrefix' => $soldCountPrefix, 'soldCountSuffix' => $soldCountSuffix, 'stockPercent' => $stockPercent]; $grid_sequence = [ 'rating' => function () use ($helper, $product, $showRating, $ratingStyle) { if ($showRating) { $helper::views( 'woocommerce/rating', [ 'product' => $product, 'ratingStyle' => $ratingStyle ] ); } }, 'category' => function () use ($helper, $product, $showCategory) { if ($showCategory) { $helper::views('woocommerce/category', [ 'product' => $product ]); } }, 'title' => function () use ($helper, $titleTag) { $helper::views('woocommerce/title', [ 'titleTag' => $titleTag ]); }, 'price' => function () use ($helper, $product, $showPrice) { if ($showPrice) { $helper::views( 'woocommerce/price', [ 'product' => $product ] ); } } ]; $_grid_sequence = apply_filters('eb_woo_product_grid_grid_sequence', $grid_sequence, $helper, $product, $otherArgs); $list_sequence = [ 'category' => function () use ($helper, $product, $showCategory) { if ($showCategory) { $helper::views('woocommerce/category', [ 'product' => $product ]); } }, 'title' => function () use ($helper, $titleTag) { $helper::views('woocommerce/title', [ 'titleTag' => $titleTag ]); }, 'price' => function () use ($helper, $product, $showPrice) { if ($showPrice) { $helper::views( 'woocommerce/price', [ 'product' => $product ] ); } }, 'rating' => function () use ($helper, $product, $showRating, $ratingStyle) { if ($showRating) { $helper::views( 'woocommerce/rating', [ 'product' => $product, 'ratingStyle' => $ratingStyle ] ); } }, 'details' => function () use ($helper, $productDescLength) { $helper::views( 'woocommerce/details', [ 'productDescLength' => $productDescLength ] ); }, 'button-list' => function () use ($helper, $showDetailBtn, $detailBtnText) { $helper::views('woocommerce/button-list', [ 'showDetailBtn' => $showDetailBtn, 'detailBtnText' => $detailBtnText ]); } ]; $_list_sequence = apply_filters('eb_woo_product_grid_list_sequence', $list_sequence, $helper, $product, $otherArgs); ?> <div class="eb-woo-products-col"> <div class="eb-woo-product"> <?php if ('grid' === $layout && 'grid-preset-3' === $gridPreset): ?> <a class="grid-preset-anchor" href="<?php echo esc_attr(esc_url(get_permalink())); ?>"></a> <?php endif; ?> <div class="eb-woo-product-image-wrapper"> <?php if ('grid' === $layout && 'grid-preset-3' !== $gridPreset): ?> <a class="grid-preset-anchor" href="<?php echo esc_attr(esc_url(get_permalink())); ?>"></a> <?php endif; ?> <div class="eb-woo-product-image"> <?php if ('list' === $layout): ?> <a href="<?php echo esc_attr(esc_url(get_permalink())); ?>"> <?php endif; // Use imageSize if provided, otherwise fallback to 'woocommerce_thumbnail' $image_size = isset($imageSize) && !empty($imageSize) ? $imageSize : 'woocommerce_thumbnail'; echo wp_kses_post($product->get_image($image_size)); if ($showSaleBadge && $product->is_on_sale()) { echo wp_kses_post('<span class="eb-woo-product-ribbon ' . $saleBadgeAlign . '">' . $saleText . '</span>'); } if ('list' === $layout) { echo wp_kses_post('</a>'); } ?> </div> <?php if ('grid' === $layout): ?> <div class="eb-woo-product-overlay"> <?php $helper::views('woocommerce/button-list', [ 'showDetailBtn' => $showDetailBtn, 'detailBtnText' => $detailBtnText ]); ?> </div> <?php endif; ?> </div> <div class="eb-woo-product-content-wrapper"> <div class="eb-woo-product-content"> <?php $_sequence = ('list' === $layout) ? $_list_sequence : $_grid_sequence; foreach ($_sequence as $_sq_function) { $_sq_function(); } ?> </div> </div> </div> </div>
[-] single-product.php
[edit]
[-] single-rating.php
[edit]
[-] rating.php
[edit]
[-] category.php
[edit]
[-] image.php
[edit]
[-] button-list.php
[edit]
[-] price.php
[edit]
[+]
..
[-] gallery.php
[edit]
[-] details.php
[edit]
[-] title.php
[edit]