Changeset 2852469
- Timestamp:
- 01/22/2023 06:05:39 AM (3 years ago)
- Location:
- perzonalization
- Files:
-
- 11 added
- 2 edited
-
tags/1.6.0 (added)
-
tags/1.6.0/banner-772x250.png (added)
-
tags/1.6.0/icon-128x128.png (added)
-
tags/1.6.0/perzonalization.php (added)
-
tags/1.6.0/readme.txt (added)
-
tags/1.6.0/screenshot-1.png (added)
-
tags/1.6.0/screenshot-2.png (added)
-
tags/1.6.0/screenshot-3.png (added)
-
tags/1.6.0/screenshot-4.png (added)
-
tags/1.6.0/screenshot-5.png (added)
-
tags/1.6.0/screenshot-6.png (added)
-
trunk/perzonalization.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perzonalization/trunk/perzonalization.php
r2516449 r2852469 3 3 * Plugin Name: Perzonalization - AI Powered Personalization That Sells 4 4 * Plugin URI: perzonalization.com 5 * Version: 1. 5.66 * 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. 7 7 * Author: Perzonalization 8 8 * Author URI: http://www.perzonalization.com/woocommerce-plugin/ … … 362 362 } 363 363 $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 365 365 } 366 366 … … 381 381 } 382 382 $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 384 384 } else {$cats = '';} 385 385 // product image … … 541 541 $every_cat = ''; 542 542 foreach ($all_categories as $category) { 543 $every_cat .= "'". $category->name."',";543 $every_cat .= "'".clean_string($category->name)."',"; 544 544 } 545 545 $every_cat = substr($every_cat, 0, -1); … … 607 607 } 608 608 $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 610 610 611 611 $args = array( … … 638 638 $ids_str = substr($ids_str, 0, -1); 639 639 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'> 641 var filterDetailsForPrz = { 642 categories: $cat, 643 ids: [$ids_str] 644 } 645 </script>"; 646 648 647 $language = get_bloginfo('language'); 649 648 $currency = get_woocommerce_currency(); -
perzonalization/trunk/readme.txt
r2673846 r2852469 3 3 Tags: 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 4 4 Requires at least: 4.0.0 5 Tested up to: 5.96 Stable tag: 1. 5.65 Tested up to: 6.1.1 6 Stable tag: 1.6.0 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 129 129 == Changelog == 130 130 131 = 1.6.0 = 132 * Minor bug fix on category name using quotes 133 * Add support for Wordpress 6.1.1 134 131 135 = 1.5.6 = 132 136 * Eliminating a legacy post_content call
Note: See TracChangeset
for help on using the changeset viewer.