| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/i/n/f/infrafs/INFRABIKEIT/wp-content/plugins/ |
Upload File : |
PK %�3\S��4 4 content-product.phpnu &1i� <?php
/**
* The template for displaying product content within loops
*
* This template can be overridden by copying it to yourtheme/woocommerce/content-product.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/
* @package WooCommerce/Templates
* @version 3.6.0
*/
defined( 'ABSPATH' ) || exit;
global $product;
// Ensure visibility
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
/**
* Elated function for overriding woocommerce list templates and functions
*/
$product_info_position = trackstore_elated_options()->getOptionValue('eltd_woo_product_list_info_position');
?>
<li <?php wc_product_class('', $product); ?>>
<?php
/**
* woocommerce_before_shop_loop_item hook.
*
* @hooked woocommerce_template_loop_product_link_open - 10
*/
do_action( 'woocommerce_before_shop_loop_item' );
/**
* woocommerce_before_shop_loop_item_title hook.
*
* @hooked woocommerce_show_product_loop_sale_flash - 10
* @hooked woocommerce_template_loop_product_thumbnail - 10
*/
do_action( 'woocommerce_before_shop_loop_item_title' );
/**
* Elated action for overriding woocommerce list templates and functions
*/
if($product_info_position === 'info_below_image') {
do_action( 'trackstore_elated_woo_pl_info_below_image' );
} else {
do_action( 'trackstore_elated_woo_pl_info_on_image_hover' );
}
/**
* woocommerce_shop_loop_item_title hook.
*
* @hooked woocommerce_template_loop_product_title - 10
*/
do_action( 'woocommerce_shop_loop_item_title' );
/**
* woocommerce_after_shop_loop_item_title hook.
*
* @hooked woocommerce_template_loop_rating - 5
* @hooked woocommerce_template_loop_price - 10
*/
do_action( 'woocommerce_after_shop_loop_item_title' );
/**
* woocommerce_after_shop_loop_item hook.
*
* @hooked woocommerce_template_loop_product_link_close - 5
* @hooked woocommerce_template_loop_add_to_cart - 10
*/
do_action( 'woocommerce_after_shop_loop_item' );
?>
</li>PK %�3\�ݴ�� � product-searchform.phpnu &1i� <?php
/**
* The template for displaying product search form
*
* This template can be overridden by copying it to yourtheme/woocommerce/product-searchform.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 3.3.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label class="screen-reader-text"><?php esc_html_e('Search for:', 'trackstore'); ?></label>
<div class="input-holder clearfix">
<input type="search" class="search-field" placeholder="<?php echo esc_html__('Search', 'trackstore'); ?>" value="<?php echo get_search_query(); ?>" name="s" title="<?php echo esc_html__('Search for:', 'trackstore'); ?>"/>
<button type="submit" class="eltd-woo-search-widget-button"><?php echo trackstore_elated_icon_collections()->renderIcon( 'ion-search', 'ion_icons' ); ?></button>
<input type="hidden" name="post_type" value="product"/>
</div>
</form>PK %�3\���� global/quantity-input.phpnu &1i� <?php
/**
* Product quantity inputs
*
* This template can be overridden by copying it to yourtheme/woocommerce/global/quantity-input.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/
* @package WooCommerce/Templates
* @version 4.0.0
*/
defined( 'ABSPATH' ) || exit;
if ( $max_value && $min_value === $max_value ) {
?>
<div class="eltd-quantity-buttons quantity hidden">
<input type="hidden" id="<?php echo esc_attr( $input_id ); ?>" class="qty" name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $min_value ); ?>" />
</div>
<?php
} else {
/* translators: %s: Quantity. */
$label = ! empty( $args['product_name'] ) ? sprintf( esc_html__( '%s quantity', 'trackstore' ), wp_strip_all_tags( $args['product_name'] ) ) : esc_html__( 'Quantity', 'trackstore' );
?>
<div class="eltd-quantity-buttons quantity">
<?php do_action( 'woocommerce_before_quantity_input_field' ); ?>
<label class="screen-reader-text" for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_attr( $label ); ?></label>
<span class="eltd-quantity-minus fa fa-angle-down"></span>
<input
type="text"
id="<?php echo esc_attr( $input_id ); ?>"
class="<?php echo esc_attr( join( ' ', (array) $classes ) ); ?> eltd-quantity-input"
data-step="<?php echo esc_attr( $step ); ?>"
data-min="<?php echo esc_attr( $min_value ); ?>"
data-max="<?php echo esc_attr( 0 < $max_value ? $max_value : '' ); ?>"
name="<?php echo esc_attr( $input_name ); ?>"
value="<?php echo esc_attr( ! empty( $input_value ) ? $input_value : 0 ); ?>"
title="<?php echo esc_attr_x( 'Qty', 'Product quantity input tooltip', 'trackstore' ) ?>"
size="4"
placeholder="<?php echo esc_attr( $placeholder ); ?>"
inputmode="<?php echo esc_attr( $inputmode ); ?>" />
<span class="eltd-quantity-plus fa fa-angle-up"></span>
<?php do_action( 'woocommerce_after_quantity_input_field' ); ?>
</div>
<?php
}
PK %�3\S��4 4 content-product.phpnu &1i� PK %�3\�ݴ�� � w product-searchform.phpnu &1i� PK %�3\���� n global/quantity-input.phpnu &1i� PK �