Ecwid Ecommerce Shopping Cart - Version 0.4

Version Description

  • [+] Instruction in the plugin settings was updated.
  • [+] New plugin option to use on secure pages was added.
  • [+] Some code tweaks and optimizations.
Download this release

Release Info

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

Code changes from version 0.5 to 0.4

Files changed (2) hide show
  1. ecwid-shopping-cart.php +44 -99
  2. readme.txt +1 -5
ecwid-shopping-cart.php CHANGED
@@ -2,9 +2,9 @@
2
  /*
3
  Plugin Name: Ecwid Shopping Cart
4
  Plugin URI: http://www.ecwid.com/
5
- Description: Ecwid is a free full-fledged shopping cart. It can be easily integreted with any Wordpress blog and takes less than 5 minutes to set up.
6
  Author: Ecwid Team
7
- Version: 0.5
8
  Author URI: http://www.ecwid.com/
9
  */
10
 
@@ -36,8 +36,7 @@ function ecwid_script_shortcode() {
36
 
37
  function ecwid_minicart_shortcode() {
38
  $ecwid_enable_minicart = get_option('ecwid_enable_minicart');
39
- $ecwid_show_categories = get_option('ecwid_show_categories');
40
- if (!empty($ecwid_enable_minicart) && !empty($ecwid_show_categories)) {
41
  $s = <<<EOT
42
  <div><script type="text/javascript"> xMinicart("style=","layout=attachToCategories"); </script></div>
43
  EOT;
@@ -82,9 +81,6 @@ function ecwid_productbrowser_shortcode() {
82
  $ecwid_pb_defaultview = get_option('ecwid_pb_defaultview');
83
  $ecwid_pb_searchview = get_option('ecwid_pb_searchview');
84
 
85
- $ecwid_mobile_catalog_link = get_option('ecwid_mobile_catalog_link');
86
- $ecwid_default_category_id = get_option('ecwid_default_category_id');
87
-
88
  if (empty($ecwid_pb_categoriesperrow)) {
89
  $ecwid_pb_categoriesperrow = 3;
90
  }
@@ -108,20 +104,9 @@ function ecwid_productbrowser_shortcode() {
108
  $ecwid_pb_searchview = 'list';
109
  }
110
 
111
- if (empty($ecwid_mobile_catalog_link)) {
112
- $ecwid_mobile_catalog_link = "http://app.ecwid.com/jsp/{$store_id}/catalog";
113
- }
114
-
115
- if (empty($ecwid_default_category_id)) {
116
- $ecwid_default_category_str = '';
117
- } else {
118
- $ecwid_default_category_str = ',"defaultCategoryId='. $ecwid_default_category_id .'"';
119
- }
120
-
121
-
122
  $s = <<<EOT
123
- <div> <script type="text/javascript"> xProductBrowser("categoriesPerRow=$ecwid_pb_categoriesperrow","views=grid($ecwid_pb_productspercolumn_grid,$ecwid_pb_productsperrow_grid) list($ecwid_pb_productsperpage_list) table($ecwid_pb_productsperpage_table)","categoryView=$ecwid_pb_defaultview","searchView=$ecwid_pb_searchview","style="$ecwid_default_category_str);</script></div>
124
- <noscript>Your browser does not support JavaScript.<a href="{$ecwid_mobile_catalog_link}">HTML version of this store</a></noscript>
125
  EOT;
126
  return $s;
127
  }
@@ -136,13 +121,17 @@ function ecwid_store_activate() {
136
  <!-- Ecwid code end -->
137
 
138
  EOT;
139
- add_option("ecwid_store_page_id", '', '', 'yes');
140
- add_option("ecwid_store_id", '1003', '', 'yes');
141
 
142
  add_option("ecwid_enable_minicart", 'Y', '', 'yes');
143
  add_option("ecwid_show_categories", 'Y', '', 'yes');
144
  add_option("ecwid_show_search_box", '', '', 'yes');
145
 
 
 
 
 
146
 
147
  add_option("ecwid_pb_categoriesperrow", '3', '', 'yes');
148
 
@@ -154,11 +143,7 @@ EOT;
154
  add_option("ecwid_pb_defaultview", 'grid', '', 'yes');
155
  add_option("ecwid_pb_searchview", 'list', '', 'yes');
156
 
157
- add_option("ecwid_enable_ssl", '', '', 'yes');
158
-
159
- add_option("ecwid_mobile_catalog_link", '', '', 'yes');
160
- add_option("ecwid_default_category_id", '', '', 'yes');
161
-
162
 
163
  $id = get_option("ecwid_store_page_id");
164
  $_tmp_page = null;
@@ -226,9 +211,6 @@ function ecwid_settings_api_init() {
226
  register_setting('ecwid_options_page', 'ecwid_pb_defaultview');
227
  register_setting('ecwid_options_page', 'ecwid_pb_searchview');
228
  register_setting('ecwid_options_page', 'ecwid_enable_ssl');
229
-
230
- register_setting('ecwid_options_page', 'ecwid_mobile_catalog_link');
231
- register_setting('ecwid_options_page', 'ecwid_default_category_id');
232
  }
233
 
234
  function ecwid_options_add_page() {
@@ -249,10 +231,6 @@ function ecwid_options_do_page() {
249
  $ecwid_pb_defaultview = get_option('ecwid_pb_defaultview');
250
  $ecwid_pb_searchview = get_option('ecwid_pb_searchview');
251
 
252
- $ecwid_mobile_catalog_link = get_option('ecwid_mobile_catalog_link');
253
- $ecwid_default_category_id = get_option('ecwid_default_category_id');
254
-
255
-
256
  $ecwid_enable_ssl = get_option('ecwid_enable_ssl');
257
 
258
  $ecwid_page_id = get_option("ecwid_store_page_id");
@@ -277,61 +255,53 @@ function ecwid_options_do_page() {
277
  <form method="post" action="options.php">
278
  <?php settings_fields('ecwid_options_page'); ?>
279
  <table class="form-table">
280
- <tr><th colspan="2" style="padding:0px;margin:0px;"><h3 style="padding:0px;margin:0px;">General</h3></th></tr>
281
  <tr><th scope="row"><a href="http://kb.ecwid.com/Instruction-on-how-to-get-your-free-Store-ID-(for-WordPress)" target="_blank">Store ID</a>:</th>
282
  <td><input type="text" name="ecwid_store_id" value="<?php if ($store_id != 1003) echo $store_id; ?>" /></td>
283
  </tr>
284
- <tr><th scope="row">
285
- <label for="ecwid_show_categories">Show horizontal categories?</label> </th>
286
- <td><input type="checkbox" id="ecwid_show_categories" name="ecwid_show_categories" <?php if (!empty($ecwid_show_categories)) echo "checked=\"checked\""; echo $disabled_str; ?> />
 
 
 
 
287
  </td>
288
  </tr>
289
  <tr><th scope="row">
290
- <label for="ecwid_show_search_box">Show search box?</label> </th>
291
- <td><input type="checkbox" id="ecwid_show_search_box" name="ecwid_show_search_box" <?php if (!empty($ecwid_show_search_box)) echo "checked=\"checked\"";?> <?php echo $disabled_str;?> />
292
  </td>
293
  </tr>
294
-
295
- <tr><th scope="row">
296
- <label for="ecwid_enable_minicart">Enable minicart attached to horizontal categories?</label></th>
297
- <td><input type="checkbox" name="ecwid_enable_minicart" id="ecwid_enable_minicart" <?php if (!empty($ecwid_enable_minicart) && !empty($ecwid_show_categories)) echo "checked=\"checked\"";?>
298
- <? if (empty($ecwid_show_categories)) {
299
- echo 'disabled = "disabled"';
300
- }
301
- else {
302
- echo $disabled_str;
303
- } ?> />
304
- &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;If you added minicart to your blog's sidebar, please disable this option.
305
 
 
 
 
306
  </td>
307
  </tr>
308
 
309
- <tr><th colspan="2" style="padding:0px;margin:0px;"><h3 style="padding:0px;margin:0px;">Appearance</h3></th></tr>
310
-
311
- <tr><th scope="row"><label for="ecwid_pb_categoriesperrow">Categories per row</label></th>
312
- <td><input type="text" id="ecwid_pb_categoriesperrow" name="ecwid_pb_categoriesperrow" value="<?php echo $ecwid_pb_categoriesperrow; ?>" <?php echo $disabled_str;?> /></td>
313
  </tr>
314
 
315
- <tr><th scope="row"><label for="ecwid_pb_productspercolumn_grid">Products per column in grid mode</th>
316
- <td><input type="text" id="ecwid_pb_productspercolumn_grid" name="ecwid_pb_productspercolumn_grid" value="<?php echo $ecwid_pb_productspercolumn_grid; ?>" <?php echo $disabled_str;?> /></td>
317
- </tr>
318
-
319
- <tr><th scope="row"><label for="ecwid_pb_productsperrow_grid">Products per row in grid mode</label></th>
320
- <td><input type="text" id="ecwid_pb_productsperrow_grid" name="ecwid_pb_productsperrow_grid" value="<?php echo $ecwid_pb_productsperrow_grid; ?>" <?php echo $disabled_str;?> /></td>
321
  </tr>
322
 
323
- <tr><th scope="row"><label for="ecwid_pb_productsperpage_list">Products per page in list mode</label></th>
324
- <td><input type="text" id="ecwid_pb_productsperpage_list" name="ecwid_pb_productsperpage_list" value="<?php echo $ecwid_pb_productsperpage_list; ?>" <?php echo $disabled_str;?> /></td>
325
  </tr>
326
 
327
- <tr><th scope="row"><label for="ecwid_pb_productsperpage_table">Products per page in table mode</label></th>
328
- <td><input type="text" id="ecwid_pb_productsperpage_table" name="ecwid_pb_productsperpage_table" value="<?php echo $ecwid_pb_productsperpage_table; ?>" <?php echo $disabled_str;?> /></td>
329
  </tr>
330
 
331
 
332
- <tr><th scope="row"><label for="ecwid_pb_defaultview">Default view mode on product pages</label></th>
333
  <td>
334
- <select id="ecwid_pb_defaultview" name="ecwid_pb_defaultview" <?php echo $disabled_str;?> >
335
  <option value="grid" <?php if($ecwid_pb_defaultview == 'grid') echo 'selected="selected"' ?> >Grid mode</option>
336
  <option value="list" <?php if($ecwid_pb_defaultview == 'list') echo 'selected="selected"' ?> >List mode</option>
337
  <option value="table" <?php if($ecwid_pb_defaultview == 'table') echo 'selected="selected"' ?> >Table mode</option>
@@ -339,9 +309,9 @@ function ecwid_options_do_page() {
339
  </td>
340
  </tr>
341
 
342
- <tr><th scope="row"><label for="ecwid_pb_searchview">Default view mode on search results</label></th>
343
  <td>
344
- <select id="ecwid_pb_searchview" name="ecwid_pb_searchview" <?php echo $disabled_str;?> >
345
  <option value="grid" <?php if($ecwid_pb_searchview == 'grid') echo 'selected="selected"' ?> >Grid mode</option>
346
  <option value="list" <?php if($ecwid_pb_searchview == 'list') echo 'selected="selected"' ?> >List mode</option>
347
  <option value="table" <?php if($ecwid_pb_searchview == 'table') echo 'selected="selected"' ?> >Table mode</option>
@@ -349,32 +319,14 @@ function ecwid_options_do_page() {
349
  </td>
350
  </tr>
351
 
352
- <tr><th colspan="2" style="padding:0px;margin:0px;"><h3 style="padding:0px;margin:0px;">Advanced</h3></th></tr>
353
-
354
- <tr><th scope="row"><label for="ecwid_enable_ssl">
355
- Enable the following option, if you use Ecwid on a secure HTTPS page</label>
356
  </th>
357
- <td><input id="ecwid_enable_ssl" type="checkbox" name="ecwid_enable_ssl" <?php if (!empty($ecwid_enable_ssl)) echo "checked=\"checked\"";?> />
358
  &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;<a href="http://kb.ecwid.com/SSL-HTTPS" target="_blank">Information about Ecwid and SSL/HTTPS</a>
359
 
360
- </td> </tr>
361
-
362
- <tr><th scope="row"><label for="ecwid_mobile_catalog_link">
363
- Full link to your mobile catalog</label>
364
- </th>
365
- <td><input id="ecwid_mobile_catalog_link" type="text" name="ecwid_mobile_catalog_link" value="<?php echo $ecwid_mobile_catalog_link; ?>" />
366
- &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;For example <em>http://mdemo.ecwid.com</em>.&nbsp;<a href="http://kb.ecwid.com/Mobile-Catalog" target="_blank">Information about Ecwid and mobile catalogs.</a>
367
-
368
- </td> </tr>
369
-
370
- <tr><th scope="row"><label for="ecwid_default_category_id">
371
- Default category ID</label>
372
- </th>
373
- <td><input id="ecwid_default_category_id" type="text" name="ecwid_default_category_id" value="<?php echo $ecwid_default_category_id; ?>"/>
374
- &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;<a href="http://kb.ecwid.com/Default-category-for-product-browser" target="_blank">What is it?</a>
375
-
376
- </td> </tr>
377
-
378
 
379
  </table>
380
  <p class="submit">
@@ -444,10 +396,6 @@ with these ones:
444
 
445
  }
446
 
447
- ?>
448
-
449
- <?php
450
- if ($store_id == '1003') {
451
  ?>
452
  <div id="ecwid-instruction" >
453
  <h4>Instruction on how to get your free Store ID</h4>
@@ -465,9 +413,6 @@ if ($store_id == '1003') {
465
  </ul>
466
  <p>If you have any questions, feel free to ask them on <a href="http://www.ecwid.com/forums/">Ecwid forums</a> or <a href="http://www.ecwid.com/contact-us.html">contact Ecwid team</a>.</p>
467
  </div>
468
- <?php
469
- }
470
- ?>
471
  </form>
472
 
473
 
2
  /*
3
  Plugin Name: Ecwid Shopping Cart
4
  Plugin URI: http://www.ecwid.com/
5
+ Description: Ecwid is free full-fledged shopping cart. It can be easily integreted with any Wordpress blog and takes less than 5 minutes to set up.
6
  Author: Ecwid Team
7
+ Version: 0.4
8
  Author URI: http://www.ecwid.com/
9
  */
10
 
36
 
37
  function ecwid_minicart_shortcode() {
38
  $ecwid_enable_minicart = get_option('ecwid_enable_minicart');
39
+ if (!empty($ecwid_enable_minicart)) {
 
40
  $s = <<<EOT
41
  <div><script type="text/javascript"> xMinicart("style=","layout=attachToCategories"); </script></div>
42
  EOT;
81
  $ecwid_pb_defaultview = get_option('ecwid_pb_defaultview');
82
  $ecwid_pb_searchview = get_option('ecwid_pb_searchview');
83
 
 
 
 
84
  if (empty($ecwid_pb_categoriesperrow)) {
85
  $ecwid_pb_categoriesperrow = 3;
86
  }
104
  $ecwid_pb_searchview = 'list';
105
  }
106
 
 
 
 
 
 
 
 
 
 
 
 
107
  $s = <<<EOT
108
+ <div> <script type="text/javascript"> xProductBrowser("categoriesPerRow=$ecwid_pb_categoriesperrow","views=grid($ecwid_pb_productspercolumn_grid,$ecwid_pb_productsperrow_grid) list($ecwid_pb_productsperpage_list) table($ecwid_pb_productsperpage_table)","categoryView=$ecwid_pb_defaultview","searchView=$ecwid_pb_searchview","style=");</script></div>
109
+ <noscript>Your browser does not support JavaScript.<a href="http://app.ecwid.com/jsp/{$store_id}/catalog">HTML version of this store</a></noscript>
110
  EOT;
111
  return $s;
112
  }
121
  <!-- Ecwid code end -->
122
 
123
  EOT;
124
+ add_option("ecwid_store_page_id", '', '', 'yes');
125
+ add_option("ecwid_store_id", '1003', '', 'yes');
126
 
127
  add_option("ecwid_enable_minicart", 'Y', '', 'yes');
128
  add_option("ecwid_show_categories", 'Y', '', 'yes');
129
  add_option("ecwid_show_search_box", '', '', 'yes');
130
 
131
+ /* old */
132
+ #add_option("ecwid_pb_itemsperrow", '3', '', 'yes');
133
+ #add_option("ecwid_pb_itemsperpage", '6', '', 'yes');
134
+ #add_option("ecwid_pb_searchresultsitemsperpage", '10', '', 'yes');
135
 
136
  add_option("ecwid_pb_categoriesperrow", '3', '', 'yes');
137
 
143
  add_option("ecwid_pb_defaultview", 'grid', '', 'yes');
144
  add_option("ecwid_pb_searchview", 'list', '', 'yes');
145
 
146
+ add_option("ecwid_enable_ssl", '', '', 'yes');
 
 
 
 
147
 
148
  $id = get_option("ecwid_store_page_id");
149
  $_tmp_page = null;
211
  register_setting('ecwid_options_page', 'ecwid_pb_defaultview');
212
  register_setting('ecwid_options_page', 'ecwid_pb_searchview');
213
  register_setting('ecwid_options_page', 'ecwid_enable_ssl');
 
 
 
214
  }
215
 
216
  function ecwid_options_add_page() {
231
  $ecwid_pb_defaultview = get_option('ecwid_pb_defaultview');
232
  $ecwid_pb_searchview = get_option('ecwid_pb_searchview');
233
 
 
 
 
 
234
  $ecwid_enable_ssl = get_option('ecwid_enable_ssl');
235
 
236
  $ecwid_page_id = get_option("ecwid_store_page_id");
255
  <form method="post" action="options.php">
256
  <?php settings_fields('ecwid_options_page'); ?>
257
  <table class="form-table">
 
258
  <tr><th scope="row"><a href="http://kb.ecwid.com/Instruction-on-how-to-get-your-free-Store-ID-(for-WordPress)" target="_blank">Store ID</a>:</th>
259
  <td><input type="text" name="ecwid_store_id" value="<?php if ($store_id != 1003) echo $store_id; ?>" /></td>
260
  </tr>
261
+
262
+
263
+ <tr><th scope="row">
264
+ Enable minicart attached to categories?</th>
265
+ <td><input type="checkbox" name="ecwid_enable_minicart" <?php if (!empty($ecwid_enable_minicart)) echo "checked=\"checked\"";?> <? echo $disabled_str; ?> />
266
+ &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;If you added minicart to your blog's sidebar, please disable this option.
267
+
268
  </td>
269
  </tr>
270
  <tr><th scope="row">
271
+ Show horizontal categories? </th>
272
+ <td><input type="checkbox" name="ecwid_show_categories" <?php if (!empty($ecwid_show_categories)) echo "checked=\"checked\""; echo $disabled_str; ?> />
273
  </td>
274
  </tr>
 
 
 
 
 
 
 
 
 
 
 
275
 
276
+ <tr><th scope="row">
277
+ Show search box? </th>
278
+ <td><input type="checkbox" name="ecwid_show_search_box" <?php if (!empty($ecwid_show_search_box)) echo "checked=\"checked\"";?> <?php echo $disabled_str;?> />
279
  </td>
280
  </tr>
281
 
282
+ <tr><th scope="row">Categories per row</th>
283
+ <td><input type="text" name="ecwid_pb_categoriesperrow" value="<?php echo $ecwid_pb_categoriesperrow; ?>" <?php echo $disabled_str;?> /></td>
 
 
284
  </tr>
285
 
286
+ <tr><th scope="row">Products per column in grid mode</th>
287
+ <td><input type="text" name="ecwid_pb_productspercolumn_grid" value="<?php echo $ecwid_pb_productspercolumn_grid; ?>" <?php echo $disabled_str;?> /></td>
288
+ </tr> <tr><th scope="row">Products per row in grid mode</th>
289
+
290
+ <td><input type="text" name="ecwid_pb_productsperrow_grid" value="<?php echo $ecwid_pb_productsperrow_grid; ?>" <?php echo $disabled_str;?> /></td>
 
291
  </tr>
292
 
293
+ <tr><th scope="row">Products per page in list mode</th>
294
+ <td><input type="text" name="ecwid_pb_productsperpage_list" value="<?php echo $ecwid_pb_productsperpage_list; ?>" <?php echo $disabled_str;?> /></td>
295
  </tr>
296
 
297
+ <tr><th scope="row">Products per page in table mode</th>
298
+ <td><input type="text" name="ecwid_pb_productsperpage_table" value="<?php echo $ecwid_pb_productsperpage_table; ?>" <?php echo $disabled_str;?> /></td>
299
  </tr>
300
 
301
 
302
+ <tr><th scope="row">Default view mode on product pages</th>
303
  <td>
304
+ <select name="ecwid_pb_defaultview" <?php echo $disabled_str;?> >
305
  <option value="grid" <?php if($ecwid_pb_defaultview == 'grid') echo 'selected="selected"' ?> >Grid mode</option>
306
  <option value="list" <?php if($ecwid_pb_defaultview == 'list') echo 'selected="selected"' ?> >List mode</option>
307
  <option value="table" <?php if($ecwid_pb_defaultview == 'table') echo 'selected="selected"' ?> >Table mode</option>
309
  </td>
310
  </tr>
311
 
312
+ <tr><th scope="row">Default view mode on search results</th>
313
  <td>
314
+ <select name="ecwid_pb_searchview" <?php echo $disabled_str;?> >
315
  <option value="grid" <?php if($ecwid_pb_searchview == 'grid') echo 'selected="selected"' ?> >Grid mode</option>
316
  <option value="list" <?php if($ecwid_pb_searchview == 'list') echo 'selected="selected"' ?> >List mode</option>
317
  <option value="table" <?php if($ecwid_pb_searchview == 'table') echo 'selected="selected"' ?> >Table mode</option>
319
  </td>
320
  </tr>
321
 
322
+ <tr><th scope="row">
323
+ Enable the following option, if you use Ecwid on a secure HTTPS page
 
 
324
  </th>
325
+ <td><input type="checkbox" name="ecwid_enable_ssl" <?php if (!empty($ecwid_enable_ssl)) echo "checked=\"checked\"";?> />
326
  &nbsp;&nbsp;&nbsp;&nbsp;<img src="//www.ecwid.com/wp-content/uploads/ecwid_wp_attention.gif" alt="">&nbsp;<a href="http://kb.ecwid.com/SSL-HTTPS" target="_blank">Information about Ecwid and SSL/HTTPS</a>
327
 
328
+ </td>
329
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
330
 
331
  </table>
332
  <p class="submit">
396
 
397
  }
398
 
 
 
 
 
399
  ?>
400
  <div id="ecwid-instruction" >
401
  <h4>Instruction on how to get your free Store ID</h4>
413
  </ul>
414
  <p>If you have any questions, feel free to ask them on <a href="http://www.ecwid.com/forums/">Ecwid forums</a> or <a href="http://www.ecwid.com/contact-us.html">contact Ecwid team</a>.</p>
415
  </div>
 
 
 
416
  </form>
417
 
418
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Ecwid Team
3
  Tags: shopping cart, ecommerce, e-commerce, paypal, google checkout, 2checkout, store, shop, product catalog, inventory
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
- Stable tag: 0.5
7
 
8
  Ecwid is a free full-fledged shopping cart that can easily be added to any blog
9
  and takes less than 5 minutes to set up.
@@ -39,10 +39,6 @@ Full list of features:
39
  [http://www.ecwid.com/faq.html](http://www.ecwid.com/faq.html)
40
 
41
  == Changelog ==
42
- = 0.5 =
43
- - [+] Plugin settings page was updated.
44
- - [+] Two new options: "Full link to your mobile catalog" and "Default category ID".
45
-
46
  = 0.4 =
47
  - [+] Instruction in the plugin settings was updated.
48
  - [+] New plugin option to use on secure pages was added.
3
  Tags: shopping cart, ecommerce, e-commerce, paypal, google checkout, 2checkout, store, shop, product catalog, inventory
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
+ Stable tag: 0.4
7
 
8
  Ecwid is a free full-fledged shopping cart that can easily be added to any blog
9
  and takes less than 5 minutes to set up.
39
  [http://www.ecwid.com/faq.html](http://www.ecwid.com/faq.html)
40
 
41
  == Changelog ==
 
 
 
 
42
  = 0.4 =
43
  - [+] Instruction in the plugin settings was updated.
44
  - [+] New plugin option to use on secure pages was added.