Version Description
- Sep 29,2017 =
- Fixed incompatibility of the plugin v5.6 with the servers running PHP 5.2.x
Download this release
Release Info
Developer | Ecwid |
Plugin | Ecwid Ecommerce Shopping Cart |
Version | 5.6.1 |
Comparing to | |
See all releases |
Code changes from version 5.6 to 5.6.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: 5.6
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
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: 5.6.1
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
includes/widgets/class-ecwid-widget-latest-products.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
require_once
|
4 |
|
5 |
class Ecwid_Widget_Latest_Products extends Ecwid_Widget_Products_List_Base {
|
6 |
|
1 |
<?php
|
2 |
|
3 |
+
require_once dirname(__FILE__) . '/class-ecwid-widget-products-base.php';
|
4 |
|
5 |
class Ecwid_Widget_Latest_Products extends Ecwid_Widget_Products_List_Base {
|
6 |
|
includes/widgets/class-ecwid-widget-random-products.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
|
4 |
-
require_once
|
5 |
|
6 |
class Ecwid_Widget_Random_Products extends Ecwid_Widget_Products_List_Base {
|
7 |
|
1 |
<?php
|
2 |
|
3 |
|
4 |
+
require_once dirname(__FILE__) . '/class-ecwid-widget-products-base.php';
|
5 |
|
6 |
class Ecwid_Widget_Random_Products extends Ecwid_Widget_Products_List_Base {
|
7 |
|
includes/widgets/class-ecwid-widget-recently-viewed.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
require_once
|
4 |
|
5 |
class Ecwid_Widget_Recently_Viewed extends Ecwid_Widget_Products_List_Base {
|
6 |
|
1 |
<?php
|
2 |
|
3 |
+
require_once dirname(__FILE__) . '/class-ecwid-widget-products-base.php';
|
4 |
|
5 |
class Ecwid_Widget_Recently_Viewed extends Ecwid_Widget_Products_List_Base {
|
6 |
|
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.8
|
6 |
-
Stable tag: 5.6
|
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 |
|
@@ -149,6 +149,9 @@ You can use Ecwid’s built-in import tools to copy your store products from any
|
|
149 |
* [Ecwid eCommerce Forums](https://www.ecwid.com/forums/forumdisplay.php?f=19)
|
150 |
|
151 |
== Changelog ==
|
|
|
|
|
|
|
152 |
= 5.6 — Sep 27, 2017 =
|
153 |
- **Added a new sidebar widget — "Latest Products"!** Add this widget to your sidebar to let your customers know what's new in your online store. You will find the widget under Appearance -> Widgets section in your Wordpress admin backend.
|
154 |
- **Added SEO optimization for single product widgets.** Now, single product widgets will include SEO-friendly markup for product's title/price/availability data to let the search engines better index the page content. You can add single product widgets to your site pages using the "Add Product" button in the Wordpress page editor.
|
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.8
|
6 |
+
Stable tag: 5.6.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 |
|
149 |
* [Ecwid eCommerce Forums](https://www.ecwid.com/forums/forumdisplay.php?f=19)
|
150 |
|
151 |
== Changelog ==
|
152 |
+
= 5.6.1 - Sep 29,2017 =
|
153 |
+
- Fixed incompatibility of the plugin v5.6 with the servers running PHP 5.2.x
|
154 |
+
|
155 |
= 5.6 — Sep 27, 2017 =
|
156 |
- **Added a new sidebar widget — "Latest Products"!** Add this widget to your sidebar to let your customers know what's new in your online store. You will find the widget under Appearance -> Widgets section in your Wordpress admin backend.
|
157 |
- **Added SEO optimization for single product widgets.** Now, single product widgets will include SEO-friendly markup for product's title/price/availability data to let the search engines better index the page content. You can add single product widgets to your site pages using the "Add Product" button in the Wordpress page editor.
|