Plugin Directory

Changeset 3415257


Ignore:
Timestamp:
12/09/2025 11:09:34 AM (4 months ago)
Author:
betterrecomaze
Message:

Feat: Added a new flag for in stock

Location:
recomaze-ai-personalization
Files:
4 edited
19 copied

Legend:

Unmodified
Added
Removed
  • recomaze-ai-personalization/tags/1.0.62/README.md

    r3403378 r3415257  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.61
     7Stable tag: 1.0.62
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • recomaze-ai-personalization/tags/1.0.62/readme.txt

    r3403378 r3415257  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.61
     7Stable tag: 1.0.62
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • recomaze-ai-personalization/tags/1.0.62/recomaze-ai-personalization.php

    r3403378 r3415257  
    44 * Plugin URI:        https://recomaze.ai/woocommerce-integration/
    55 * Description:       Recomaze AI plugin maximizes revenue with real-time, AI-driven product recommendations. Easy integration, pay-per-result.
    6  * Version:           1.0.61
     6 * Version:           1.0.62
    77 * Requires at least: 5.8.1
    88 * Requires PHP:      7.4
  • recomaze-ai-personalization/tags/1.0.62/services/ProductService.php

    r3386993 r3415257  
    145145                        'price'            => $variation_price,
    146146                        'attributes'       => $formatted_variations,
    147                         'stock'            => $variation->get_stock_status() === 'instock',
     147                        'stock'            => in_array( $variation->get_stock_status(), array( 'instock', 'onbackorder' ) ),
    148148                        'description'      => $description,
    149149                        'image_url'        => $variation_image_url,
     
    161161                    'price'           => $price,
    162162                    'attributes'      => array(),
    163                     'stock'           => $product->get_stock_status() === 'instock',
     163                    'stock'           => in_array( $product->get_stock_status(), array( 'instock', 'onbackorder' ) ),
    164164                    'description'     => $description,
    165165                    'image_url'       => $image_url,
  • recomaze-ai-personalization/trunk/README.md

    r3403378 r3415257  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.61
     7Stable tag: 1.0.62
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • recomaze-ai-personalization/trunk/readme.txt

    r3403378 r3415257  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.0.61
     7Stable tag: 1.0.62
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • recomaze-ai-personalization/trunk/recomaze-ai-personalization.php

    r3403378 r3415257  
    44 * Plugin URI:        https://recomaze.ai/woocommerce-integration/
    55 * Description:       Recomaze AI plugin maximizes revenue with real-time, AI-driven product recommendations. Easy integration, pay-per-result.
    6  * Version:           1.0.61
     6 * Version:           1.0.62
    77 * Requires at least: 5.8.1
    88 * Requires PHP:      7.4
  • recomaze-ai-personalization/trunk/services/ProductService.php

    r3386993 r3415257  
    145145                        'price'            => $variation_price,
    146146                        'attributes'       => $formatted_variations,
    147                         'stock'            => $variation->get_stock_status() === 'instock',
     147                        'stock'            => in_array( $variation->get_stock_status(), array( 'instock', 'onbackorder' ) ),
    148148                        'description'      => $description,
    149149                        'image_url'        => $variation_image_url,
     
    161161                    'price'           => $price,
    162162                    'attributes'      => array(),
    163                     'stock'           => $product->get_stock_status() === 'instock',
     163                    'stock'           => in_array( $product->get_stock_status(), array( 'instock', 'onbackorder' ) ),
    164164                    'description'     => $description,
    165165                    'image_url'       => $image_url,
Note: See TracChangeset for help on using the changeset viewer.