Plugin Directory

Changeset 3473293


Ignore:
Timestamp:
03/03/2026 06:00:52 AM (4 weeks ago)
Author:
greyforestdigital
Message:

Update to v1.0.1

Location:
user-collections-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • user-collections-for-woocommerce/trunk/readme.txt

    r3374889 r3473293  
    11=== User Collections for WooCommerce ===
    22Plugin URI: https://www.greyforest.digital/plugins/user-collections-for-woocommerce
    3 Author: Greyforest Digital
     3Author: Greyforest
    44Author URI: https://www.greyforest.digital
    55Contributors: GreyforestDigital
     
    77Tags: woocommerce, users, collections, customer, membership
    88Requires at least: 6.0
    9 Tested up to: 6.8
    10 Stable tag: 1.0.0
     9Tested up to: 6.9
     10Stable tag: 1.0.1
    1111Requires PHP: 7.0
    1212License: GPLv2 or later
     
    7878Yes, the collection page & shortcode output use simple naming conventions for a product grid, and all CSS can be easily customized via your theme or custom template overrides. 
    7979
    80 ```
     80<pre><code>
    8181<div id="user-collection">
    8282    <ul id="collection-products">
     
    8989    </ul>
    9090</div>
    91 ```
     91</code></pre>
    9292
    9393== Screenshots ==
     
    108108== Changelog ==
    109109
    110 = 1.0.0 - 2025.10.08 =
     110= 1.0.1 -> 2026.03.03 =
     111* Compatibility up to WP 6.9 + WC 10.5.3
     112
     113= 1.0.0 -> 2025.10.08 =
    111114* Initial submission to repository
  • user-collections-for-woocommerce/trunk/user-collections-for-woocommerce.php

    r3374889 r3473293  
    44Plugin URI: https://www.greyforest.digital/plugins/user-collections-for-woocommerce
    55Description: Easily view all WooCommerce products in a user's collection.
    6 Author: GreyforestDigital
     6Author: Greyforest
    77Author URI: https://www.greyforest.digital
    8 Version: 1.0.0
     8Version: 1.0.1
    99Requires at least: 6.0
    1010Requires PHP: 7.0
    11 Tested up to: 6.8
     11Tested up to: 6.9
    1212WC requires at least: 9.0.0
    13 WC tested up to: 10.2.1
     13WC tested up to: 10.5.3
    1414Requires Plugins: woocommerce
    1515Text Domain: user-collections-for-woocommerce
     
    2424if (!defined('ABSPATH')) { return; }
    2525
    26 define('GF_USERCOLLECTIONS_WC_PLUGIN_VERSION','1.0.0');
     26define('GF_USERCOLLECTIONS_WC_PLUGIN_VERSION','1.0.1');
    2727define('GF_USERCOLLECTIONS_WC_PLUGIN_URL',substr( plugin_dir_url( __FILE__ ), 0, -1 ) );
    2828define('GF_USERCOLLECTIONS_WC_PLUGIN_PATH',dirname( __FILE__ ));
Note: See TracChangeset for help on using the changeset viewer.