Version Description
- Onboarding for the new plugin users. Ecwid plugin now displays new helpful messages when you set up your store and configure the setting. The messages guide the new users through the setup process and provide helpful tips and recommendations.
- Improvements in the plugin settings pages and messages. We updated the texts and styles of the messages displayed on the settings pages. They became clearer and more user-friendly.
- Minor optimizations for search engines including tidying up of the product pages 'meta' descriptions tags and fixing potential issues in compatibility with Yoast SEO plugin. This is to ensure better indexation and appearing of your products in the search results.
- Several minor fixes and enhancements
- Added in 2.4.3.1: fixed incompatibility of the plugin v2.4.3 with the servers running PHP 5.2.x
- Added in 2.4.3.2: additional fix for the outdated PHP versions (5.2.x)
Download this release
Release Info
Developer | Ecwid |
Plugin | Ecwid Ecommerce Shopping Cart |
Version | 2.4.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.4.3.1 to 2.4.3.2
- ecwid-shopping-cart.php +3 -3
- lib/class-ecwid-message-manager.php +4 -4
- readme.txt +8 -7
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: 2.4.3.
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
@@ -630,10 +630,10 @@ function ecwid_content_started($content)
|
|
630 |
|
631 |
function ecwid_wrap_shortcode_content($content, $name)
|
632 |
{
|
633 |
-
return "<!-- Ecwid shopping cart plugin v 2.4.3.
|
634 |
. ecwid_get_scriptjs_code()
|
635 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
636 |
-
. "<!-- END Ecwid Shopping Cart v 2.4.3.
|
637 |
}
|
638 |
|
639 |
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: 2.4.3.2
|
9 |
Author URI: http://www.ecwid.com?source=wporg
|
10 |
*/
|
11 |
|
630 |
|
631 |
function ecwid_wrap_shortcode_content($content, $name)
|
632 |
{
|
633 |
+
return "<!-- Ecwid shopping cart plugin v 2.4.3.2 -->"
|
634 |
. ecwid_get_scriptjs_code()
|
635 |
. "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
|
636 |
+
. "<!-- END Ecwid Shopping Cart v 2.4.3.2 -->";
|
637 |
}
|
638 |
|
639 |
function ecwid_get_scriptjs_code($force_lang = null) {
|
lib/class-ecwid-message-manager.php
CHANGED
@@ -11,7 +11,7 @@ class Ecwid_Message_Manager
|
|
11 |
|
12 |
public static function show_messages()
|
13 |
{
|
14 |
-
$mm =
|
15 |
|
16 |
foreach ($mm->messages as $name => $message) {
|
17 |
if ($mm->need_to_show_message($name)) {
|
@@ -22,7 +22,7 @@ class Ecwid_Message_Manager
|
|
22 |
|
23 |
public static function show_message($name, $params = array())
|
24 |
{
|
25 |
-
$mm =
|
26 |
|
27 |
$mm->need_to_show_message($name);
|
28 |
|
@@ -77,7 +77,7 @@ class Ecwid_Message_Manager
|
|
77 |
{
|
78 |
$hidden_messages = array();
|
79 |
|
80 |
-
$messages =
|
81 |
foreach ($messages as $name => $message) {
|
82 |
if (isset($message['default']) && $message['default'] == 'hidden') {
|
83 |
$hidden_messages[$name] = true;
|
@@ -229,4 +229,4 @@ class Ecwid_Message_Manager
|
|
229 |
}
|
230 |
}
|
231 |
|
232 |
-
}
|
11 |
|
12 |
public static function show_messages()
|
13 |
{
|
14 |
+
$mm = self::get_instance();
|
15 |
|
16 |
foreach ($mm->messages as $name => $message) {
|
17 |
if ($mm->need_to_show_message($name)) {
|
22 |
|
23 |
public static function show_message($name, $params = array())
|
24 |
{
|
25 |
+
$mm = self::get_instance();
|
26 |
|
27 |
$mm->need_to_show_message($name);
|
28 |
|
77 |
{
|
78 |
$hidden_messages = array();
|
79 |
|
80 |
+
$messages = self::get_default_messages();
|
81 |
foreach ($messages as $name => $message) {
|
82 |
if (isset($message['default']) && $message['default'] == 'hidden') {
|
83 |
$hidden_messages[$name] = true;
|
229 |
}
|
230 |
}
|
231 |
|
232 |
+
}
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: ecwid
|
3 |
Tags: ecwid, shopping cart, ecommerce, wordpress ecommerce, wp e-commerce, paypal, e-commerce, online store, store, shop, cart, online shop, shopping, digital goods, downloadable products, product catalog, ecomerce, products, facebook, f-commerce
|
4 |
Requires at least: 2.8
|
5 |
-
Tested up to: 3.9
|
6 |
-
Stable tag: 2.4.3.
|
7 |
|
8 |
Ecwid is a free full-featured shopping cart that can easily be added to any blog
|
9 |
and takes less than 5 minutes to set up.
|
@@ -11,7 +11,7 @@ and takes less than 5 minutes to set up.
|
|
11 |
== Description ==
|
12 |
**Wordpress.com officially recommends Ecwid as an e-commerce solution to millions of its users!**
|
13 |
|
14 |
-
[Ecwid](http://www.ecwid.com?wporg-plugin-site "Ecwid site") is a powerful and easy-to-use shopping cart solution that seamlessly integrates with your Wordpress website. Join over *500,000* sellers in *175* countries and sell globally with over *40* international payment options, real-time shipping integrations and support of *45* languages.
|
15 |
|
16 |
|
17 |
= Full-featured Shopping Cart =
|
@@ -32,7 +32,7 @@ So, you don't need to worry about software updates, security patches and server
|
|
32 |
|
33 |
= Mobile Responsive Design =
|
34 |
|
35 |
-
Ecwid works fine on any Wordpress site, especially on those running mobile-optimized themes. Your store looks perfect on any smartphone and automatically adapts to your customer’s screen size: laptops, tablets, smart TVs or smart watches. Check out this [demo](http://www.ecwid.com/demo
|
36 |
|
37 |
|
38 |
= Social Commerce =
|
@@ -52,12 +52,12 @@ New-gen technologies make Ecwid much faster than usual shopping carts regardless
|
|
52 |
|
53 |
= Free =
|
54 |
|
55 |
-
Although Ecwid is packed with high-value features, [Free plan](http://www.ecwid.com/
|
56 |
|
57 |
|
58 |
= See In Action =
|
59 |
|
60 |
-
* [Demo](http://www.ecwid.com/demo
|
61 |
* [Backend](https://my.ecwid.com/?source=wporg-plugin-site "Ecwid Control Panel")
|
62 |
|
63 |
|
@@ -112,12 +112,13 @@ http://codex.wordpress.org/Managing_Plugins#Installing_Plugins
|
|
112 |
* [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
|
113 |
|
114 |
== Changelog ==
|
115 |
-
= 2.4.3.
|
116 |
- **Onboarding for the new plugin users.** Ecwid plugin now displays new helpful messages when you set up your store and configure the setting. The messages guide the new users through the setup process and provide helpful tips and recommendations.
|
117 |
- **Improvements in the plugin settings pages and messages.** We updated the texts and styles of the messages displayed on the settings pages. They became clearer and more user-friendly.
|
118 |
- **Minor optimizations for search engines** including tidying up of the product pages 'meta' descriptions tags and fixing potential issues in compatibility with Yoast SEO plugin. This is to ensure better indexation and appearing of your products in the search results.
|
119 |
- **Several minor fixes and enhancements**
|
120 |
- **Added in 2.4.3.1:** fixed incompatibility of the plugin v2.4.3 with the servers running PHP 5.2.x
|
|
|
121 |
|
122 |
= 2.4.2 =
|
123 |
- Minor issue is fixed on the plugin's "General settings" page
|
2 |
Contributors: ecwid
|
3 |
Tags: ecwid, shopping cart, ecommerce, wordpress ecommerce, wp e-commerce, paypal, e-commerce, online store, store, shop, cart, online shop, shopping, digital goods, downloadable products, product catalog, ecomerce, products, facebook, f-commerce
|
4 |
Requires at least: 2.8
|
5 |
+
Tested up to: 3.9.2
|
6 |
+
Stable tag: 2.4.3.2
|
7 |
|
8 |
Ecwid is a free full-featured shopping cart that can easily be added to any blog
|
9 |
and takes less than 5 minutes to set up.
|
11 |
== Description ==
|
12 |
**Wordpress.com officially recommends Ecwid as an e-commerce solution to millions of its users!**
|
13 |
|
14 |
+
[Ecwid](http://www.ecwid.com?source=wporg-plugin-site "Ecwid site") is a powerful and easy-to-use shopping cart solution that seamlessly integrates with your Wordpress website. Join over *500,000* sellers in *175* countries and sell globally with over *40* international payment options, real-time shipping integrations and support of *45* languages.
|
15 |
|
16 |
|
17 |
= Full-featured Shopping Cart =
|
32 |
|
33 |
= Mobile Responsive Design =
|
34 |
|
35 |
+
Ecwid works fine on any Wordpress site, especially on those running mobile-optimized themes. Your store looks perfect on any smartphone and automatically adapts to your customer’s screen size: laptops, tablets, smart TVs or smart watches. Check out this [demo](http://www.ecwid.com/demo?source=wporg-plugin-site)
|
36 |
|
37 |
|
38 |
= Social Commerce =
|
52 |
|
53 |
= Free =
|
54 |
|
55 |
+
Although Ecwid is packed with high-value features, [Free plan](http://www.ecwid.com/pricing?source=wporg-plugin-site "Ecwid plans and pricing") is always available with no setup charges and no transaction fees. Get your store up and running without paying anything.
|
56 |
|
57 |
|
58 |
= See In Action =
|
59 |
|
60 |
+
* [Demo](http://www.ecwid.com/demo?source=wporg-plugin-site "Ecwid demo")
|
61 |
* [Backend](https://my.ecwid.com/?source=wporg-plugin-site "Ecwid Control Panel")
|
62 |
|
63 |
|
112 |
* [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
|
113 |
|
114 |
== Changelog ==
|
115 |
+
= 2.4.3.2 =
|
116 |
- **Onboarding for the new plugin users.** Ecwid plugin now displays new helpful messages when you set up your store and configure the setting. The messages guide the new users through the setup process and provide helpful tips and recommendations.
|
117 |
- **Improvements in the plugin settings pages and messages.** We updated the texts and styles of the messages displayed on the settings pages. They became clearer and more user-friendly.
|
118 |
- **Minor optimizations for search engines** including tidying up of the product pages 'meta' descriptions tags and fixing potential issues in compatibility with Yoast SEO plugin. This is to ensure better indexation and appearing of your products in the search results.
|
119 |
- **Several minor fixes and enhancements**
|
120 |
- **Added in 2.4.3.1:** fixed incompatibility of the plugin v2.4.3 with the servers running PHP 5.2.x
|
121 |
+
- **Added in 2.4.3.2:** additional fix for the outdated PHP versions (5.2.x)
|
122 |
|
123 |
= 2.4.2 =
|
124 |
- Minor issue is fixed on the plugin's "General settings" page
|