Changeset 3415257
- Timestamp:
- 12/09/2025 11:09:34 AM (4 months ago)
- Location:
- recomaze-ai-personalization
- Files:
-
- 4 edited
- 19 copied
-
tags/1.0.62 (copied) (copied from recomaze-ai-personalization/trunk)
-
tags/1.0.62/README.md (copied) (copied from recomaze-ai-personalization/trunk/README.md) (1 diff)
-
tags/1.0.62/build/index.asset.php (copied) (copied from recomaze-ai-personalization/trunk/build/index.asset.php)
-
tags/1.0.62/build/index.css (copied) (copied from recomaze-ai-personalization/trunk/build/index.css)
-
tags/1.0.62/build/index.js (copied) (copied from recomaze-ai-personalization/trunk/build/index.js)
-
tags/1.0.62/changelog.txt (copied) (copied from recomaze-ai-personalization/trunk/changelog.txt)
-
tags/1.0.62/constants.php (copied) (copied from recomaze-ai-personalization/trunk/constants.php)
-
tags/1.0.62/readme.txt (copied) (copied from recomaze-ai-personalization/trunk/readme.txt) (1 diff)
-
tags/1.0.62/recomaze-ai-personalization.php (copied) (copied from recomaze-ai-personalization/trunk/recomaze-ai-personalization.php) (1 diff)
-
tags/1.0.62/services/OrderService.php (copied) (copied from recomaze-ai-personalization/trunk/services/OrderService.php)
-
tags/1.0.62/services/ProductService.php (copied) (copied from recomaze-ai-personalization/trunk/services/ProductService.php) (2 diffs)
-
tags/1.0.62/src/App.tsx (copied) (copied from recomaze-ai-personalization/trunk/src/App.tsx)
-
tags/1.0.62/src/components/CustomizationStyles.tsx (copied) (copied from recomaze-ai-personalization/trunk/src/components/CustomizationStyles.tsx)
-
tags/1.0.62/src/components/SideBar.tsx (copied) (copied from recomaze-ai-personalization/trunk/src/components/SideBar.tsx)
-
tags/1.0.62/src/types/index.ts (copied) (copied from recomaze-ai-personalization/trunk/src/types/index.ts)
-
tags/1.0.62/vendor/autoload.php (copied) (copied from recomaze-ai-personalization/trunk/vendor/autoload.php)
-
tags/1.0.62/vendor/composer/InstalledVersions.php (copied) (copied from recomaze-ai-personalization/trunk/vendor/composer/InstalledVersions.php)
-
tags/1.0.62/vendor/composer/autoload_static.php (copied) (copied from recomaze-ai-personalization/trunk/vendor/composer/autoload_static.php)
-
tags/1.0.62/vendor/composer/installed.php (copied) (copied from recomaze-ai-personalization/trunk/vendor/composer/installed.php)
-
trunk/README.md (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/recomaze-ai-personalization.php (modified) (1 diff)
-
trunk/services/ProductService.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recomaze-ai-personalization/tags/1.0.62/README.md
r3403378 r3415257 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.6 17 Stable tag: 1.0.62 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
recomaze-ai-personalization/tags/1.0.62/readme.txt
r3403378 r3415257 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.6 17 Stable tag: 1.0.62 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
recomaze-ai-personalization/tags/1.0.62/recomaze-ai-personalization.php
r3403378 r3415257 4 4 * Plugin URI: https://recomaze.ai/woocommerce-integration/ 5 5 * Description: Recomaze AI plugin maximizes revenue with real-time, AI-driven product recommendations. Easy integration, pay-per-result. 6 * Version: 1.0.6 16 * Version: 1.0.62 7 7 * Requires at least: 5.8.1 8 8 * Requires PHP: 7.4 -
recomaze-ai-personalization/tags/1.0.62/services/ProductService.php
r3386993 r3415257 145 145 'price' => $variation_price, 146 146 'attributes' => $formatted_variations, 147 'stock' => $variation->get_stock_status() === 'instock',147 'stock' => in_array( $variation->get_stock_status(), array( 'instock', 'onbackorder' ) ), 148 148 'description' => $description, 149 149 'image_url' => $variation_image_url, … … 161 161 'price' => $price, 162 162 'attributes' => array(), 163 'stock' => $product->get_stock_status() === 'instock',163 'stock' => in_array( $product->get_stock_status(), array( 'instock', 'onbackorder' ) ), 164 164 'description' => $description, 165 165 'image_url' => $image_url, -
recomaze-ai-personalization/trunk/README.md
r3403378 r3415257 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.6 17 Stable tag: 1.0.62 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
recomaze-ai-personalization/trunk/readme.txt
r3403378 r3415257 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.6 17 Stable tag: 1.0.62 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
recomaze-ai-personalization/trunk/recomaze-ai-personalization.php
r3403378 r3415257 4 4 * Plugin URI: https://recomaze.ai/woocommerce-integration/ 5 5 * Description: Recomaze AI plugin maximizes revenue with real-time, AI-driven product recommendations. Easy integration, pay-per-result. 6 * Version: 1.0.6 16 * Version: 1.0.62 7 7 * Requires at least: 5.8.1 8 8 * Requires PHP: 7.4 -
recomaze-ai-personalization/trunk/services/ProductService.php
r3386993 r3415257 145 145 'price' => $variation_price, 146 146 'attributes' => $formatted_variations, 147 'stock' => $variation->get_stock_status() === 'instock',147 'stock' => in_array( $variation->get_stock_status(), array( 'instock', 'onbackorder' ) ), 148 148 'description' => $description, 149 149 'image_url' => $variation_image_url, … … 161 161 'price' => $price, 162 162 'attributes' => array(), 163 'stock' => $product->get_stock_status() === 'instock',163 'stock' => in_array( $product->get_stock_status(), array( 'instock', 'onbackorder' ) ), 164 164 'description' => $description, 165 165 'image_url' => $image_url,
Note: See TracChangeset
for help on using the changeset viewer.