Changeset 3473293
- Timestamp:
- 03/03/2026 06:00:52 AM (4 weeks ago)
- Location:
- user-collections-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (5 diffs)
-
user-collections-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
user-collections-for-woocommerce/trunk/readme.txt
r3374889 r3473293 1 1 === User Collections for WooCommerce === 2 2 Plugin URI: https://www.greyforest.digital/plugins/user-collections-for-woocommerce 3 Author: Greyforest Digital3 Author: Greyforest 4 4 Author URI: https://www.greyforest.digital 5 5 Contributors: GreyforestDigital … … 7 7 Tags: woocommerce, users, collections, customer, membership 8 8 Requires at least: 6.0 9 Tested up to: 6. 810 Stable tag: 1.0. 09 Tested up to: 6.9 10 Stable tag: 1.0.1 11 11 Requires PHP: 7.0 12 12 License: GPLv2 or later … … 78 78 Yes, 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. 79 79 80 ``` 80 <pre><code> 81 81 <div id="user-collection"> 82 82 <ul id="collection-products"> … … 89 89 </ul> 90 90 </div> 91 ``` 91 </code></pre> 92 92 93 93 == Screenshots == … … 108 108 == Changelog == 109 109 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 = 111 114 * Initial submission to repository -
user-collections-for-woocommerce/trunk/user-collections-for-woocommerce.php
r3374889 r3473293 4 4 Plugin URI: https://www.greyforest.digital/plugins/user-collections-for-woocommerce 5 5 Description: Easily view all WooCommerce products in a user's collection. 6 Author: Greyforest Digital6 Author: Greyforest 7 7 Author URI: https://www.greyforest.digital 8 Version: 1.0. 08 Version: 1.0.1 9 9 Requires at least: 6.0 10 10 Requires PHP: 7.0 11 Tested up to: 6. 811 Tested up to: 6.9 12 12 WC requires at least: 9.0.0 13 WC tested up to: 10. 2.113 WC tested up to: 10.5.3 14 14 Requires Plugins: woocommerce 15 15 Text Domain: user-collections-for-woocommerce … … 24 24 if (!defined('ABSPATH')) { return; } 25 25 26 define('GF_USERCOLLECTIONS_WC_PLUGIN_VERSION','1.0. 0');26 define('GF_USERCOLLECTIONS_WC_PLUGIN_VERSION','1.0.1'); 27 27 define('GF_USERCOLLECTIONS_WC_PLUGIN_URL',substr( plugin_dir_url( __FILE__ ), 0, -1 ) ); 28 28 define('GF_USERCOLLECTIONS_WC_PLUGIN_PATH',dirname( __FILE__ ));
Note: See TracChangeset
for help on using the changeset viewer.