Plugin Directory

Changeset 3002175


Ignore:
Timestamp:
11/27/2023 12:33:35 PM (2 years ago)
Author:
spoddev2021
Message:

Version 2.1.2

Location:
wc-spod/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wc-spod/trunk/README.txt

    r2901259 r3002175  
    44Tags: Print on demand, Dropshipping, Woocommerce, POD, Print, Print on demand Europe, Print on demand US, SPOD, T-Shirts, Spreadshirt, Apparel
    55Requires at least: 4.6 - 5.7
    6 Tested up to: 6.2
    7 Stable tag: 2.1.1
     6Tested up to: 6.4.1
     7Stable tag: 2.1.2
    88License: GPLv2 or later
    99Requires PHP: 7.4
     
    7474== Changelog ==
    7575
     76= 2.1.2 =
     77
     78* Mark HPOS compatibility
     79
    7680= 2.1 =
    7781* Users having installed the SPOD plugin before 30th of January 2023 now have the possibility to migrate to the new, improved workflow. The old workflow will stop working in the next version, so we recommend following the steps shown in Wordpress Admin > SPOD.
  • wc-spod/trunk/wc-spod.php

    r2868187 r3002175  
    99 * Plugin URI:        https://www.spod.com/
    1010 * Description:       Connect your WooCommerce Shop to the leading provider of whitelabel print-on-demand services. Get an automatic product, order and order status synchronisation and a seamless integration into your WooCommerce setup ready within minutes.
    11  * Version:           2.1.1
     11 * Version:           2.1.2
    1212 * Author:            SPOD - Spreadshirt-Print-On-Demand
    1313 * Author URI:        https://www.spod.com
     
    1818 *
    1919 * WC requires at least: 4.7
    20  * WC tested up to: 7.4.0
     20 * WC tested up to: 8.2.2
    2121 */
    2222
     
    2727
    2828/**
     29*
     30* Mark HPOS compatibility
     31* @since 2.1.2
     32*/
     33add_action( 'before_woocommerce_init', function() {
     34    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     35        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     36    }
     37} );
     38
     39/**
    2940 * Currently plugin version.
    3041 */
    31 define( 'SPOD_POD_VERSION', '2.1.1' );
     42define( 'SPOD_POD_VERSION', '2.1.2' );
    3243define( 'MIN_WORDPRESS_VERSION_REQUIRED', 4.8 );
    3344define( 'MIN_WOOCOMMERCE_VERSION_REQUIRED', 4.7);
Note: See TracChangeset for help on using the changeset viewer.