Plugin Directory

Changeset 2852469


Ignore:
Timestamp:
01/22/2023 06:05:39 AM (3 years ago)
Author:
Perzonalization
Message:

update to version 1.6.0

Location:
perzonalization
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • perzonalization/trunk/perzonalization.php

    r2516449 r2852469  
    33 * Plugin Name: Perzonalization - AI Powered Personalization That Sells
    44 * Plugin URI: perzonalization.com
    5  * Version:  1.5.6
    6  * Description: Personalizing the shopping experience of more than 19 million shoppers every month, we have learned that understanding the visitors' individual taste is the key. That is why we not only analyse behaviours around products but also take into account shoppers' individual preferences and preferences of those similar to them. Works with activated wooCommerce REST API.
     5 * Version:  1.6.0
     6 * Description: Personalizing the shopping experience of more than 19 million shoppers every month, we have learned that understanding visitor individual tastes is key. That is why we not only analyse behaviours around products but also take into account shopper individual preferences and preferences of those similar to them. Requires activated WooCommerce REST API.
    77 * Author: Perzonalization
    88 * Author URI: http://www.perzonalization.com/woocommerce-plugin/
     
    362362                }
    363363                $tags = substr($tags, 0, -1);
    364                 $tags = str_replace('"', "'", $tags);
     364                // $tags = str_replace('"', "'", $tags); // This causes a bug for categories with quotes in string
    365365            }
    366366
     
    381381                }
    382382                $cats = substr($cats, 0, -1);
    383                 $cats = str_replace('"', "'", $cats);
     383                // $cats = str_replace('"', "'", $cats); // This causes a bug for categories with quotes in string
    384384            } else {$cats = '';}
    385385            // product image
     
    541541            $every_cat = '';
    542542            foreach ($all_categories as $category) {
    543                 $every_cat .= "'".$category->name."',";
     543                $every_cat .= "'".clean_string($category->name)."',";
    544544            }
    545545            $every_cat = substr($every_cat, 0, -1);
     
    607607            }
    608608            $cat = json_encode($cat);
    609             $cat_s = str_replace('"', "'", $cat);
     609            // $cat_s = str_replace('"', "'", $cat); // This causes a bug for categories with quotes in string
    610610
    611611            $args = array(
     
    638638            $ids_str = substr($ids_str, 0, -1);
    639639
    640 
    641             echo "<script type='text/javascript'>
    642                 var filterDetailsForPrz = {
    643                      categories: $cat_s,
    644                      ids: [$ids_str]
    645                      }
    646                      </script>";
    647                      
     640            echo "<script type='text/javascript'>
     641var filterDetailsForPrz = {
     642  categories: $cat,
     643  ids: [$ids_str]
     644}
     645</script>";
     646
    648647            $language = get_bloginfo('language');
    649648            $currency = get_woocommerce_currency();
  • perzonalization/trunk/readme.txt

    r2673846 r2852469  
    33Tags: personalization, related products, product recommendations, cross selling, product upsell, upsell products, automated recommendations, personalized recommendations, product recommendations, product page widgets, personalised recommendations, similar products, similar items, predictive personalization, data analysis, big data analytics, increase sales, increase conversions, increase conversion rate, marketing, increase sales, get more sales, extensions, cross-sell, up-sell, personalization module, personalization extension, related products extension, related products module, popular extensions, popular modules, product recommendations module, product recommendations extension, woocommerce personalization, you may also like, recently viewed products, popular products, recent products, similar products, best woocommerce modules, best free modules, best widgets woocommerce, woocommerce widgets, free woocommerce modules, free woocommerce widgets, email recommendations, recommended products woocommerce, free woocommerce plugins, best woocommerce plugins, woocommerce free plugins, woocommerce plugins free, woo plugins, wordpress plugins, plugin wordpress, woocommerce related products, related products woocommerce, woocommerce recommended products, woocommerce product recommendations, woocommerce related products plugin, woocommerce recommendations, woocommerce recommended products plugin, related producys woocommerce plugin, wordpress woocommerce related products, woocommerce plugins, woocommerce related, woocommerce related products, woocommerce personalization, woocommerce similar products, woocommerce personalized product plugin, woocommerce similar products plugin, related products in woocommerce, wordpress related products plugin, woocommerce recommendation, related products plugin woocommerce, woocommerce related products by category, recommended products woocommerce, woocommerce suggested products, woocommerce product suggestions, recent products woocommerce, woo related products, woocommerce app, best woocommerce plugins, woocommerce addons, woocommerce widgets, automated triggers, trigger emails, trigger email, auto email, auto e-mail, autoemail, automated emails, email marketing, abandoned carts, cart reminder, cart reminder, cart reminder emails, cart reminder email
    44Requires at least: 4.0.0
    5 Tested up to: 5.9
    6 Stable tag: 1.5.6
     5Tested up to: 6.1.1
     6Stable tag: 1.6.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    129129== Changelog ==
    130130
     131= 1.6.0 =
     132* Minor bug fix on category name using quotes
     133* Add support for Wordpress 6.1.1
     134
    131135= 1.5.6 =
    132136* Eliminating a legacy post_content call
Note: See TracChangeset for help on using the changeset viewer.