Ecwid Ecommerce Shopping Cart - Version 4.4.1.1

Version Description

Download this release

Release Info

Developer Ecwid
Plugin Icon 128x128 Ecwid Ecommerce Shopping Cart
Version 4.4.1.1
Comparing to
See all releases

Code changes from version 4.4.1 to 4.4.1.1

ecwid-shopping-cart.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.ecwid.com?source=wporg
5
  Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
6
  Text Domain: ecwid-shopping-cart
7
  Author: Ecwid Team
8
- Version: 4.4.1
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
@@ -1005,10 +1005,10 @@ function ecwid_content_started($content)
1005
 
1006
  function ecwid_wrap_shortcode_content($content, $name, $attrs)
1007
  {
1008
- return "<!-- Ecwid shopping cart plugin v 4.4.1 --><!-- noptimize -->"
1009
  . ecwid_get_scriptjs_code(@$attrs['lang'])
1010
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
1011
- . "<!-- /noptimize --><!-- END Ecwid Shopping Cart v 4.4.1 -->";
1012
  }
1013
 
1014
  function ecwid_get_scriptjs_code($force_lang = null) {
5
  Description: Ecwid is a free full-featured shopping cart. It can be easily integrated with any Wordpress blog and takes less than 5 minutes to set up.
6
  Text Domain: ecwid-shopping-cart
7
  Author: Ecwid Team
8
+ Version: 4.4.1.1
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
1005
 
1006
  function ecwid_wrap_shortcode_content($content, $name, $attrs)
1007
  {
1008
+ return "<!-- Ecwid shopping cart plugin v 4.4.1.1 --><!-- noptimize -->"
1009
  . ecwid_get_scriptjs_code(@$attrs['lang'])
1010
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
1011
+ . "<!-- /noptimize --><!-- END Ecwid Shopping Cart v 4.4.1.1 -->";
1012
  }
1013
 
1014
  function ecwid_get_scriptjs_code($force_lang = null) {
js/products-list.js CHANGED
@@ -166,9 +166,9 @@ jQuery.widget('ecwid.productsList', {
166
  link: jQuery(singleProductContainer).data('single-product-link'),
167
  }
168
  if (jQuery('.ecwid-productBrowser-price .gwt-HTML', singleProductContainer).length > 0) {
169
- product.price = jQuery('.ecwid-productBrowser-price .gwt-HTML', singleProductContainer).html();
170
  } else {
171
- product.price = jQuery('.ecwid-price', singleProductContainer).html();
172
  }
173
  this.addProduct(product, true);
174
  },
166
  link: jQuery(singleProductContainer).data('single-product-link'),
167
  }
168
  if (jQuery('.ecwid-productBrowser-price .gwt-HTML', singleProductContainer).length > 0) {
169
+ product.price = jQuery('.ecwid-productBrowser-price .gwt-HTML', singleProductContainer).text();
170
  } else {
171
+ product.price = jQuery('.ecwid-price', singleProductContainer).text();
172
  }
173
  this.addProduct(product, true);
174
  },
js/recently-viewed.js CHANGED
@@ -36,9 +36,9 @@ jQuery.widget('ecwid.recentlyViewedProducts', jQuery.ecwid.productsList, {
36
  product.link = window.location.href;
37
  product.name = jQuery('.ecwid-productBrowser-head').text();
38
  if (jQuery('.ecwid-productBrowser-price .ecwid-productBrowser-price-value').length > 0) {
39
- product.price = jQuery('.ecwid-productBrowser-price .ecwid-productBrowser-price-value').text();
40
  } else {
41
- product.price = jQuery('.ecwid-productBrowser-price').html();
42
  }
43
 
44
  if (typeof this.products[product.id] == 'undefined') {
36
  product.link = window.location.href;
37
  product.name = jQuery('.ecwid-productBrowser-head').text();
38
  if (jQuery('.ecwid-productBrowser-price .ecwid-productBrowser-price-value').length > 0) {
39
+ product.price = jQuery('.ecwid-productBrowser-details-rightPanel .ecwid-productBrowser-price .ecwid-productBrowser-price-value').text();
40
  } else {
41
+ product.price = jQuery('.ecwid-productBrowser-details-rightPanel .ecwid-productBrowser-price').text();
42
  }
43
 
44
  if (typeof this.products[product.id] == 'undefined') {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: ecwid
3
  Tags: ecommerce, downloadable products, Facebook ecommerce, online store, paypal, product catalog, shop, shopping cart, store
4
  Requires at least: 3.5
5
  Tested up to: 4.5
6
- Stable tag: 4.4.1
7
 
8
  Powerful, easy to use ecommerce shopping cart. Bank level PCI DSS Level 1 security. iPhone & Android apps. Superb support. Free plan available.
9
 
3
  Tags: ecommerce, downloadable products, Facebook ecommerce, online store, paypal, product catalog, shop, shopping cart, store
4
  Requires at least: 3.5
5
  Tested up to: 4.5
6
+ Stable tag: 4.4.1.1
7
 
8
  Powerful, easy to use ecommerce shopping cart. Bank level PCI DSS Level 1 security. iPhone & Android apps. Superb support. Free plan available.
9