Changeset 3144521
- Timestamp:
- 08/31/2024 04:11:25 AM (19 months ago)
- Location:
- wcboost-wishlist
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.3 (copied) (copied from wcboost-wishlist/trunk)
-
tags/1.1.3/includes/compatibility.php (modified) (2 diffs)
-
tags/1.1.3/includes/plugin.php (modified) (1 diff)
-
tags/1.1.3/languages/wcboost-wishlist.pot (modified) (2 diffs)
-
tags/1.1.3/readme.txt (modified) (2 diffs)
-
tags/1.1.3/wcboost-wishlist.php (modified) (2 diffs)
-
trunk/includes/compatibility.php (modified) (2 diffs)
-
trunk/includes/plugin.php (modified) (1 diff)
-
trunk/languages/wcboost-wishlist.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wcboost-wishlist.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wcboost-wishlist/tags/1.1.3/includes/compatibility.php
r3113521 r3144521 40 40 // Always use the same item key for removing actions. 41 41 add_filter( 'wcboost_wishlist_item_key', [ $this, 'translate_item_key_to_default' ], 10, 3 ); 42 43 // Translate the wishlist page ID. 44 add_filter( 'option_wcboost_wishlist_page_id', [ $this, 'translate_option_wishlist_page_id' ] ); 42 45 } 43 46 } … … 137 140 return md5( implode( '_', [ $product_id, $variation_id ] ) ); 138 141 } 142 143 /** 144 * Translate the option of wishlist page id 145 * 146 * @param int $page_id 147 * 148 * @return int 149 */ 150 public function translate_option_wishlist_page_id( $page_id ) { 151 return apply_filters( 'wpml_object_id', $page_id, 'page' ); 152 } 139 153 } 140 154 -
wcboost-wishlist/tags/1.1.3/includes/plugin.php
r3132036 r3144521 236 236 $page_id = get_option( 'wcboost_wishlist_page_id' ); 237 237 238 return $page_id;238 return absint( $page_id ); 239 239 } 240 240 -
wcboost-wishlist/tags/1.1.3/languages/wcboost-wishlist.pot
r3132036 r3144521 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WCBoost - Wishlist 1.1. 2\n"5 "Project-Id-Version: WCBoost - Wishlist 1.1.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wcboost-wishlist\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-08- 07T08:39:23+00:00\n"12 "POT-Creation-Date: 2024-08-31T03:59:37+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2. 10.0\n"14 "X-Generator: WP-CLI 2.9.0\n" 15 15 "X-Domain: wcboost-wishlist\n" 16 16 17 17 #. Plugin Name of the plugin 18 #: wcboost-wishlist.php19 18 msgid "WCBoost - Wishlist" 20 19 msgstr "" 21 20 22 21 #. Plugin URI of the plugin 23 #: wcboost-wishlist.php24 22 msgid "https://wcboost.com/plugin/woocommerce-wishlist/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash" 25 23 msgstr "" 26 24 27 25 #. Description of the plugin 28 #: wcboost-wishlist.php29 26 msgid "Our WooCommerce Wishlist plugin enables customers to create personalized collections of products that they like but aren't ready to purchase immediately. Enhance the shopping experience by saving products for further consideration, making decisions easier than ever." 30 27 msgstr "" 31 28 32 29 #. Author of the plugin 33 #: wcboost-wishlist.php34 30 msgid "WCBoost" 35 31 msgstr "" 36 32 37 33 #. Author URI of the plugin 38 #: wcboost-wishlist.php39 34 msgid "https://wcboost.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash" 40 35 msgstr "" -
wcboost-wishlist/tags/1.1.3/readme.txt
r3132036 r3144521 3 3 Tags: woocommerce wishlist, wishlist, products, e-commerce, woocommerce 4 4 Tested up to: 6.6 5 Stable tag: 1.1. 25 Stable tag: 1.1.3 6 6 Requires PHP: 7.0 7 7 Requires at least: 4.5 8 8 WC requires at least: 3.0.0 9 WC tested up to: 9. 19 WC tested up to: 9.2 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 95 95 == Changelog == 96 96 97 = 1.1.3 = 98 - Fix - Resolved compatibility issues with WPML. 99 97 100 = 1.1.2 = 98 101 - Fix - Fix issues with guest wishlists. -
wcboost-wishlist/tags/1.1.3/wcboost-wishlist.php
r3132036 r3144521 5 5 * Plugin URI: https://wcboost.com/plugin/woocommerce-wishlist/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 6 6 * Author: WCBoost 7 * Version: 1.1. 27 * Version: 1.1.3 8 8 * Author URI: https://wcboost.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash 9 9 * … … 15 15 * Tested up to: 6.6 16 16 * WC requires at least: 3.0.0 17 * WC tested up to: 9. 117 * WC tested up to: 9.2 18 18 * 19 19 * @package WCBoost -
wcboost-wishlist/trunk/includes/compatibility.php
r3113521 r3144521 40 40 // Always use the same item key for removing actions. 41 41 add_filter( 'wcboost_wishlist_item_key', [ $this, 'translate_item_key_to_default' ], 10, 3 ); 42 43 // Translate the wishlist page ID. 44 add_filter( 'option_wcboost_wishlist_page_id', [ $this, 'translate_option_wishlist_page_id' ] ); 42 45 } 43 46 } … … 137 140 return md5( implode( '_', [ $product_id, $variation_id ] ) ); 138 141 } 142 143 /** 144 * Translate the option of wishlist page id 145 * 146 * @param int $page_id 147 * 148 * @return int 149 */ 150 public function translate_option_wishlist_page_id( $page_id ) { 151 return apply_filters( 'wpml_object_id', $page_id, 'page' ); 152 } 139 153 } 140 154 -
wcboost-wishlist/trunk/includes/plugin.php
r3132036 r3144521 236 236 $page_id = get_option( 'wcboost_wishlist_page_id' ); 237 237 238 return $page_id;238 return absint( $page_id ); 239 239 } 240 240 -
wcboost-wishlist/trunk/languages/wcboost-wishlist.pot
r3132036 r3144521 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WCBoost - Wishlist 1.1. 2\n"5 "Project-Id-Version: WCBoost - Wishlist 1.1.3\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wcboost-wishlist\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-08- 07T08:39:23+00:00\n"12 "POT-Creation-Date: 2024-08-31T03:59:37+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2. 10.0\n"14 "X-Generator: WP-CLI 2.9.0\n" 15 15 "X-Domain: wcboost-wishlist\n" 16 16 17 17 #. Plugin Name of the plugin 18 #: wcboost-wishlist.php19 18 msgid "WCBoost - Wishlist" 20 19 msgstr "" 21 20 22 21 #. Plugin URI of the plugin 23 #: wcboost-wishlist.php24 22 msgid "https://wcboost.com/plugin/woocommerce-wishlist/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash" 25 23 msgstr "" 26 24 27 25 #. Description of the plugin 28 #: wcboost-wishlist.php29 26 msgid "Our WooCommerce Wishlist plugin enables customers to create personalized collections of products that they like but aren't ready to purchase immediately. Enhance the shopping experience by saving products for further consideration, making decisions easier than ever." 30 27 msgstr "" 31 28 32 29 #. Author of the plugin 33 #: wcboost-wishlist.php34 30 msgid "WCBoost" 35 31 msgstr "" 36 32 37 33 #. Author URI of the plugin 38 #: wcboost-wishlist.php39 34 msgid "https://wcboost.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash" 40 35 msgstr "" -
wcboost-wishlist/trunk/readme.txt
r3132036 r3144521 3 3 Tags: woocommerce wishlist, wishlist, products, e-commerce, woocommerce 4 4 Tested up to: 6.6 5 Stable tag: 1.1. 25 Stable tag: 1.1.3 6 6 Requires PHP: 7.0 7 7 Requires at least: 4.5 8 8 WC requires at least: 3.0.0 9 WC tested up to: 9. 19 WC tested up to: 9.2 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 95 95 == Changelog == 96 96 97 = 1.1.3 = 98 - Fix - Resolved compatibility issues with WPML. 99 97 100 = 1.1.2 = 98 101 - Fix - Fix issues with guest wishlists. -
wcboost-wishlist/trunk/wcboost-wishlist.php
r3132036 r3144521 5 5 * Plugin URI: https://wcboost.com/plugin/woocommerce-wishlist/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 6 6 * Author: WCBoost 7 * Version: 1.1. 27 * Version: 1.1.3 8 8 * Author URI: https://wcboost.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash 9 9 * … … 15 15 * Tested up to: 6.6 16 16 * WC requires at least: 3.0.0 17 * WC tested up to: 9. 117 * WC tested up to: 9.2 18 18 * 19 19 * @package WCBoost
Note: See TracChangeset
for help on using the changeset viewer.