Changeset 3144071
- Timestamp:
- 08/30/2024 06:36:18 AM (19 months ago)
- Location:
- quick-buy-now-button-for-woocommerce
- Files:
-
- 16 added
- 3 edited
-
tags/1.0.13 (added)
-
tags/1.0.13/includes (added)
-
tags/1.0.13/includes/admin (added)
-
tags/1.0.13/includes/admin/class-woo_buy_now_button_settings.php (added)
-
tags/1.0.13/includes/admin/js (added)
-
tags/1.0.13/includes/admin/js/scripts.js (added)
-
tags/1.0.13/includes/class-woo_buy_now_button.php (added)
-
tags/1.0.13/includes/class-woo_buy_now_button_backend.php (added)
-
tags/1.0.13/includes/class-woo_buy_now_button_frontend.php (added)
-
tags/1.0.13/includes/themes-support.php (added)
-
tags/1.0.13/index.php (added)
-
tags/1.0.13/languages (added)
-
tags/1.0.13/languages/woo-buy-now-button.pot (added)
-
tags/1.0.13/quick-buy-now-button-for-woocommerce.php (added)
-
tags/1.0.13/readme.txt (added)
-
tags/1.0.13/wpml-config.xml (added)
-
trunk/includes/class-woo_buy_now_button_frontend.php (modified) (1 diff)
-
trunk/quick-buy-now-button-for-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-buy-now-button-for-woocommerce/trunk/includes/class-woo_buy_now_button_frontend.php
r3070420 r3144071 205 205 206 206 $product_id = $product->get_ID(); 207 $button_class = apply_filters( 'woo_buy_now_button_class_arc ive', 'wc-buy-now-btn wc-buy-now-btn-archive button add_to_cart_button', $product_id );207 $button_class = apply_filters( 'woo_buy_now_button_class_archive', 'wc-buy-now-btn wc-buy-now-btn-archive button add_to_cart_button', $product_id ); 208 208 $button_text = apply_filters( 'woo_buy_now_button_text_archive', get_option( 'wbnb_button_text', 'Buy Now' ), $product_id ); 209 209 $quantity = apply_filters( 'woo_buy_now_button_quantity', get_option( 'wbnb_default_qnt', 1 ), $product_id ); -
quick-buy-now-button-for-woocommerce/trunk/quick-buy-now-button-for-woocommerce.php
r3070420 r3144071 5 5 * Description: Makes your customers' checkout process easier and faster and allows you to redirect customers directly to the checkout, cart or any external link for quick purchase. 6 6 * Author: Tanvirul Haque 7 * Version: 1.0.1 27 * Version: 1.0.13 8 8 * Author URI: https://wpxpress.net 9 9 * Text Domain: woo-buy-now-button … … 12 12 * Requires PHP: 7.4 13 13 * Requires at least: 4.8 14 * Tested up to: 6. 515 * WC tested up to: 8.714 * Tested up to: 6.6 15 * WC tested up to: 9.2 16 16 * WC requires at least: 4.6 17 17 * License: GPLv2+ … … 21 21 22 22 if ( ! defined( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION' ) ) { 23 define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.1 2' );23 define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.13' ); 24 24 } 25 25 -
quick-buy-now-button-for-woocommerce/trunk/readme.txt
r3070420 r3144071 4 4 Requires PHP: 7.4 5 5 Requires at least: 4.8 6 Tested up to: 6. 56 Tested up to: 6.6 7 7 WC requires at least: 4.5 8 WC tested up to: 8.79 Stable tag: 1.0.1 28 WC tested up to: 9.2 9 Stable tag: 1.0.13 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 112 112 == Changelog == 113 113 114 = 1.0.13 = 115 * Add - WordPress 6.6+ compatibility 116 * Add - WooCommerce 9.2+ compatibility 117 114 118 = 1.0.12 = 115 119 * Add - WordPress 6.5+ compatibility
Note: See TracChangeset
for help on using the changeset viewer.