Make WordPress Themes

Changeset 179194


Ignore:
Timestamp:
11/08/2022 06:51:40 PM (3 years ago)
Author:
themedropbox
Message:

New version of Joyas Shop - 1.0.7

Location:
joyas-shop/1.0.7
Files:
1 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • joyas-shop/1.0.7/style.css

    r174761 r179194  
    88Tested up to: 6.0.0
    99Requires PHP: 7.0
    10 Version: 1.0.6
     10Version: 1.0.7
    1111License: GPLv3 or later
    1212License 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  
    1313 * @see https://docs.woocommerce.com/document/template-structure/
    1414 * @package WooCommerce\Templates
    15  * @version 3.4.0
     15 * @version 7.4.0
    1616 */
    1717
     
    2323    <?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
    2424
    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>
    2626
    2727    <?php wc_query_string_form_fields( $product_url ); ?>
  • joyas-shop/1.0.7/woocommerce/single-product/add-to-cart/simple.php

    r168370 r179194  
    1313 * @see https://docs.woocommerce.com/document/template-structure/
    1414 * @package WooCommerce\Templates
    15  * @version 4.4.0
     15 * @version 7.4.0
    1616 */
    1717
     
    4747        ?>
    4848
    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>
    5050
    5151        <?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  
    55 * @see https://docs.woocommerce.com/document/template-structure/
    66 * @package WooCommerce\Templates
    7  * @version 3.4.0
     7 * @version 7.4.0
    88 */
    99
     
    2929    ?>
    3030
    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>
    3232
    3333    <?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
Note: See TracChangeset for help on using the changeset viewer.