Plugin Directory

Changeset 2419468


Ignore:
Timestamp:
11/16/2020 03:48:53 PM (5 years ago)
Author:
Perzonalization
Message:

v1.5.3 update for secondary thumbnail parsing as fallback

Location:
perzonalization
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • perzonalization/tags/1.5.2/perzonalization.php

    r2400892 r2419468  
    33 * Plugin Name: Perzonalization - AI Powered Personalization That Sells
    44 * Plugin URI: perzonalization.com
    5  * Version:  1.5.2
     5 * Version:  1.5.3
    66 * Description: With the help of more than 5 billion pages we have personalized so far, we have learned that understanding the visitor is the key in personalizing an online store. That is why we not only analyse behaviours around products but also the visitor's individual preferences and similar users' preferences. Works with activated wooCommerce REST API.
    77 * Author: Perzonalization
     
    383383            // product image
    384384            $product_img = wp_get_attachment_url(get_post_thumbnail_id());
     385            $product_img2 = wp_get_attachment_image_url($product->get_image_id());
    385386            $product_attributes = $product->get_attributes();
    386387           
     
    496497                    salesPrice : '{$sale_price}',
    497498                    thumbnailUrl : '{$product_img}',
     499                    thumbnailUrl2 : '{$product_img2}',
    498500                    variantsOnSale: [
    499501                        {$var_onsale}
  • perzonalization/tags/1.5.2/readme.txt

    r2400892 r2419468  
    44Requires at least: 4.0.0
    55Tested up to: 5.5
    6 Stable tag: 1.5.2
     6Stable tag: 1.5.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 1.5.3 =
     132* Safe fallback for thumbnail parsing
     133
    131134= 1.5.2 =
    132135* Retiring manufacturer taxonomy registration.
  • perzonalization/trunk/perzonalization.php

    r2400892 r2419468  
    33 * Plugin Name: Perzonalization - AI Powered Personalization That Sells
    44 * Plugin URI: perzonalization.com
    5  * Version:  1.5.2
     5 * Version:  1.5.3
    66 * Description: With the help of more than 5 billion pages we have personalized so far, we have learned that understanding the visitor is the key in personalizing an online store. That is why we not only analyse behaviours around products but also the visitor's individual preferences and similar users' preferences. Works with activated wooCommerce REST API.
    77 * Author: Perzonalization
     
    383383            // product image
    384384            $product_img = wp_get_attachment_url(get_post_thumbnail_id());
     385            $product_img2 = wp_get_attachment_image_url($product->get_image_id());
    385386            $product_attributes = $product->get_attributes();
    386387           
     
    496497                    salesPrice : '{$sale_price}',
    497498                    thumbnailUrl : '{$product_img}',
     499                    thumbnailUrl2 : '{$product_img2}',
    498500                    variantsOnSale: [
    499501                        {$var_onsale}
  • perzonalization/trunk/readme.txt

    r2400892 r2419468  
    44Requires at least: 4.0.0
    55Tested up to: 5.5
    6 Stable tag: 1.5.2
     6Stable tag: 1.5.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 1.5.3 =
     132* Safe fallback for thumbnail parsing
     133
    131134= 1.5.2 =
    132135* Retiring manufacturer taxonomy registration.
Note: See TracChangeset for help on using the changeset viewer.