Changeset 179194
- Timestamp:
- 11/08/2022 06:51:40 PM (3 years ago)
- Location:
- joyas-shop/1.0.7
- Files:
-
- 1 deleted
- 4 edited
- 1 copied
-
. (copied) (copied from joyas-shop/1.0.6)
-
style.css (modified) (1 diff)
-
woocommerce/single-product/add-to-cart/external.php (modified) (2 diffs)
-
woocommerce/single-product/add-to-cart/grouped.php (deleted)
-
woocommerce/single-product/add-to-cart/simple.php (modified) (2 diffs)
-
woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
joyas-shop/1.0.7/style.css
r174761 r179194 8 8 Tested up to: 6.0.0 9 9 Requires PHP: 7.0 10 Version: 1.0. 610 Version: 1.0.7 11 11 License: GPLv3 or later 12 12 License URI: http://www.gnu.org/licenses/gpl-3.0.html -
joyas-shop/1.0.7/woocommerce/single-product/add-to-cart/external.php
r168370 r179194 13 13 * @see https://docs.woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 3.4.015 * @version 7.4.0 16 16 */ 17 17 … … 23 23 <?php do_action( 'woocommerce_before_add_to_cart_button' ); ?> 24 24 25 <button type="submit" class="single_add_to_cart_button button alt "><?php echo esc_html( $button_text ); ?></button>25 <button type="submit" class="single_add_to_cart_button button alt <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>"><?php echo esc_html( $button_text ); ?></button> 26 26 27 27 <?php wc_query_string_form_fields( $product_url ); ?> -
joyas-shop/1.0.7/woocommerce/single-product/add-to-cart/simple.php
r168370 r179194 13 13 * @see https://docs.woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 4.4.015 * @version 7.4.0 16 16 */ 17 17 … … 47 47 ?> 48 48 49 <button type="submit" name="add-to-cart" value="<?php echo esc_attr( $product->get_id() ); ?>" class="single_add_to_cart_button alt btn theme-btn bg-btn "><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>49 <button type="submit" name="add-to-cart" value="<?php echo esc_attr( $product->get_id() ); ?>" class="single_add_to_cart_button alt btn theme-btn bg-btn <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button> 50 50 51 51 <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?> -
joyas-shop/1.0.7/woocommerce/single-product/add-to-cart/variation-add-to-cart-button.php
r168370 r179194 5 5 * @see https://docs.woocommerce.com/document/template-structure/ 6 6 * @package WooCommerce\Templates 7 * @version 3.4.07 * @version 7.4.0 8 8 */ 9 9 … … 29 29 ?> 30 30 31 <button type="submit" class="single_add_to_cart_button button alt btn theme-btn bg-btn "><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>31 <button type="submit" class="single_add_to_cart_button button alt btn theme-btn bg-btn <?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button> 32 32 33 33 <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.