Changeset 3179445
- Timestamp:
- 10/31/2024 12:57:57 PM (5 months ago)
- Location:
- custom-thank-you-pages-for-woocommerce
- Files:
-
- 17 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
custom-thank-you-pages-for-woocommerce/trunk/readme.txt
r2761651 r3179445 3 3 Donate link: https://paypal.me/bogdanfix 4 4 Tags: thank you, page, ty page, order received, custom, woocommerce 5 Requires at least: 4.66 Tested up to: 6.07 5 Requires PHP: 5.2.4 8 Stable tag: 1.0. 06 Stable tag: 1.0.1 9 7 License: GPLv2 or later 10 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 57 55 == Changelog == 58 56 57 = 1.0.1 = 58 * Declare HPOS compatibility; 59 59 60 = 1.0.0 = 60 61 * initial release; -
custom-thank-you-pages-for-woocommerce/trunk/wc-custom-thank-you-pages.php
r2761651 r3179445 6 6 Author: BogdanFix 7 7 Author URI: https://handsomewp.com 8 Version: 1.0. 08 Version: 1.0.1 9 9 Text Domain: ctyp 10 10 Domain Path: /lang … … 17 17 define( 'GB_TYP_NAME', 'Custom Thank You Pages PRO for WooCommerce' ); 18 18 define( 'GB_TYP_ID', 'gb_wc_typ' ); 19 define( 'GB_TYP_VER', '1.0. 0' );19 define( 'GB_TYP_VER', '1.0.1' ); 20 20 21 21 define( 'GB_TYP_PLUGIN_NAME', 'gb_wc_typ' ); 22 22 define( 'GB_TYP_URL', plugins_url() . '/' . basename( dirname( __FILE__ ) ) ); 23 24 /** 25 * Declare HPOS compatibility 26 * @since 1.0.1 27 */ 28 29 add_action('before_woocommerce_init', function() 30 { 31 if (class_exists(\Automattic\WooCommerce\Utilities\FeaturesUtil::class)) { 32 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', __FILE__, true); 33 } 34 }); 23 35 24 36 /**
Note: See TracChangeset
for help on using the changeset viewer.