Changeset 3259800
- Timestamp:
- 03/21/2025 03:18:23 PM (12 months ago)
- Location:
- untappd-ratings-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
untappd-ratings-for-woocommerce.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
untappd-ratings-for-woocommerce/trunk/readme.txt
r3056746 r3259800 3 3 Tags: untappd, woocommerce, ratings, reviews, map feed 4 4 Requires at least: 6.0 5 Tested up to: 6. 45 Tested up to: 6.6 6 6 Requires PHP: 7.4 7 Stable tag: 1.0. 67 Stable tag: 1.0.7 8 8 WC requires at least: 6 9 WC tested up to: 89 WC tested up to: 9.1.2 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
untappd-ratings-for-woocommerce/trunk/untappd-ratings-for-woocommerce.php
r3056746 r3259800 12 12 * Plugin URI: https://github.com/chillcode/untappd-ratings-for-woocommerce 13 13 * Description: Connect your WooCommerce Store with Untappd 14 * Version: 1.0. 614 * Version: 1.0.7 15 15 * Requires at least: 6.0 16 16 * Requires PHP: 7.4 … … 23 23 * 24 24 * WC requires at least: 6.0.1 25 * WC tested up to: 8.5.225 * WC tested up to: 9.1.2 26 26 */ 27 27 … … 33 33 define( 'URWC_PLUGIN_DIR', dirname( URWC_PLUGIN_FILE ) . DIRECTORY_SEPARATOR ); 34 34 define( 'URWC_NAME', 'Untappd Ratings for WooCommerce' ); 35 define( 'URWC_VERSION', '1.0. 6' );35 define( 'URWC_VERSION', '1.0.7' ); 36 36 37 37 require_once URWC_PLUGIN_DIR . 'includes' . DIRECTORY_SEPARATOR . 'class-urwc-ratings.php'; … … 52 52 53 53 /** 54 * HPOS compatibility. 55 * 56 * More info: https://developer.woocommerce.com/docs/hpos-extension-recipe-book/ 57 */ 58 add_action( 59 'before_woocommerce_init', 60 function () { 61 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 62 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 63 } 64 } 65 ); 66 67 /** 54 68 * Initialize the plugin. 55 69 */
Note: See TracChangeset
for help on using the changeset viewer.