Changeset 187133
- Timestamp:
- 03/14/2023 07:18:00 PM (3 years ago)
- Location:
- avventura-lite/1.6.1
- Files:
-
- 4 edited
- 1 copied
- . (copied) (copied from avventura-lite/1.6.0)
- core/extras/changelog.php (modified) (1 diff)
- readme.txt (modified) (2 diffs)
- style.css (modified) (1 diff)
- woocommerce/cart/cart.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
avventura-lite/1.6.1/core/extras/changelog.php
r180821 r187133 1 1 <div class="changelog_container"> 2 2 3 <div class="changelog_element"> 4 5 <span class="theme_version"> 6 <strong><?php echo esc_html__('v1.6.1', 'avventura-lite'); ?></strong> 7 <?php echo esc_html__('Release date : March, 14 - 2023', 'avventura-lite'); ?> 8 <span class="dashicons dashicons-arrow-down-alt2"></span> 9 </span> 10 11 <div class="changelog_details" style="display: none; "> 12 <ul> 13 <li><?php echo esc_html__('Updated : WooCommerce templates', 'avventura-lite'); ?></li> 14 </ul> 15 </div> 16 17 </div> 18 3 19 <div class="changelog_element"> 4 20 -
avventura-lite/1.6.1/readme.txt
r180821 r187133 4 4 Requires at least: 4.0 5 5 Tested up to: 6.0 6 Stable tag: 1.6. 06 Stable tag: 1.6.1 7 7 Requires PHP: 5.3 8 8 License: GPLv3 or later … … 20 20 21 21 == Changelog == 22 23 = 1.6.1 = 24 Release date - March, 14 - 2023 25 26 * Updated : WooCommerce templates 22 27 23 28 = 1.6.0 = -
avventura-lite/1.6.1/style.css
r180821 r187133 6 6 Author: ThemeinProgress. 7 7 Author URI: https://www.themeinprogress.com 8 Version: 1.6. 08 Version: 1.6.1 9 9 Requires PHP: 5.3 10 10 Tested up to: 6.0 -
avventura-lite/1.6.1/woocommerce/cart/cart.php
r180502 r187133 13 13 * @see https://docs.woocommerce.com/document/template-structure/ 14 14 * @package WooCommerce\Templates 15 * @version 7. 0.115 * @version 7.4.0 16 16 */ 17 17 … … 152 152 153 153 <?php if ( wc_coupons_enabled() ) { ?> 154 <div class="coupon"> 155 <label for="coupon_code"><?php esc_html_e( 'Coupon:', 'avventura-lite' ); ?></label> 156 <input type="text" name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'avventura-lite' ); ?>" /> 157 <button type="submit" class="button<?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="apply_coupon" value="<?php esc_attr_e( 'Apply coupon', 'avventura-lite' ); ?>"><?php esc_html_e( 'Apply coupon', 'avventura-lite' ); ?></button> 158 <?php do_action( 'woocommerce_cart_coupon' ); ?> 159 </div> 160 <?php } ?> 154 155 <div class="coupon"> 156 157 <label for="coupon_code" class="screen-reader-text"><?php esc_html_e( 'Coupon:', 'avventura-lite' ); ?></label> 158 <input type="text" name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'avventura-lite' ); ?>" /> 159 <button type="submit" class="button<?php echo esc_attr( wc_wp_theme_get_element_class_name( 'button' ) ? ' ' . wc_wp_theme_get_element_class_name( 'button' ) : '' ); ?>" name="apply_coupon" value="<?php esc_attr_e( 'Apply coupon', 'avventura-lite' ); ?>"><?php esc_html_e( 'Apply coupon', 'avventura-lite' ); ?></button> 160 161 <?php do_action( 'woocommerce_cart_coupon' ); ?> 162 163 </div> 164 165 <?php } ?> 161 166 162 167 <?php do_action( 'woocommerce_cart_actions' ); ?>
Note: See TracChangeset for help on using the changeset viewer.