Ecwid Ecommerce Shopping Cart - Version 2.7.2

Version Description

  • A new sidebar widget: Ecwid Store Page Link. The widget adds your store page link to the site's sidebar. You may want to use it with blog-focused WordPress themes that don't have a navigation menu, e.g. the upcoming "Twenty Fifteen" theme. Also, you can consider adding the widget to your sidebar to make your store page more visible to your visitors.
  • Wordpress 4.1 and Twenty Fifteen theme compatibility. The new WordPress version is coming soon and bringing a brand new 'Twenty Fifteen' theme. Ecwid plugin is now totally ready for the upcoming changes and will work OK in the new environment. Feel free to upgrade your site to Wordpress 4.1 as soon as it's released.
  • A few minor improvements and bugfixes for the new "Add Store" button released in the version 2.7
Download this release

Release Info

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

Code changes from version 2.7.1 to 2.7.2

css/themes/2015.css ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html#ecwid_html body#ecwid_body .ecwid-SearchPanel-field {
2
+ width: inherit;
3
+ }
4
+
5
+ html#ecwid_html body#ecwid_body p+.ecwid-shopping-cart-search {
6
+ position: relative;
7
+ top: -1.6842em;
8
+ }
9
+
10
+ html#ecwid_html body.ecwid-shopping-cart h1.entry-title {
11
+ margin-bottom: 1.1em;
12
+ }
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.7.1
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
@@ -285,9 +285,23 @@ function ecwid_minifier_compatibility()
285
 
286
  function ecwid_check_version()
287
  {
288
- if (is_null(get_option('ecwid_plugin_version', null))) {
289
- $plugin_data = get_plugin_data(__FILE__);
290
- add_option('ecwid_plugin_version', $plugin_data['Version']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  }
292
  }
293
 
@@ -655,10 +669,10 @@ function ecwid_content_started($content)
655
 
656
  function ecwid_wrap_shortcode_content($content, $name)
657
  {
658
- return "<!-- Ecwid shopping cart plugin v 2.7.1 -->"
659
  . ecwid_get_scriptjs_code()
660
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
661
- . "<!-- END Ecwid Shopping Cart v 2.7.1 -->";
662
  }
663
 
664
  function ecwid_get_scriptjs_code($force_lang = null) {
@@ -1774,6 +1788,42 @@ class EcwidVCategoriesWidget extends WP_Widget {
1774
 
1775
  }
1776
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1777
  function ecwid_send_stats()
1778
  {
1779
  $storeid = get_ecwid_store_id();
@@ -1866,7 +1916,8 @@ function ecwid_gather_usage_stats()
1866
  'google_xml_sitemaps_used',
1867
  'ecwid_product_advisor_used',
1868
  'ecwid_single_product_used',
1869
- 'ecwid_store_shortcode_used'
 
1870
  );
1871
 
1872
  $usage_stats = array();
@@ -1885,6 +1936,7 @@ function ecwid_gather_usage_stats()
1885
  $usage_stats['ecwid_product_advisor_used'] = (bool) is_plugin_active('ecwid-useful-tools/ecwid-product-advisor.php');
1886
  $usage_stats['ecwid_single_product_used'] = (bool) (get_option('ecwid_single_product_used') + 60*60*24*14 > time());
1887
  $usage_stats['ecwid_store_shortcode_used'] = (bool) (get_option('ecwid_store_shortcode_used') + 60*60*24*14 > time());
 
1888
 
1889
  return $usage_stats;
1890
  }
@@ -1895,6 +1947,7 @@ function ecwid_sidebar_widgets_init() {
1895
  register_widget('EcwidVCategoriesWidget');
1896
  register_widget('EcwidMinicartMiniViewWidget');
1897
  register_widget('EcwidBadgeWidget');
 
1898
  }
1899
 
1900
  add_action('widgets_init', 'ecwid_sidebar_widgets_init');
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.7.2
9
  Author URI: http://www.ecwid.com?source=wporg
10
  */
11
 
285
 
286
  function ecwid_check_version()
287
  {
288
+ $plugin_data = get_plugin_data(__FILE__);
289
+ $current_version = $plugin_data['Version'];
290
+ $stored_version = get_option('ecwid_plugin_version', null);
291
+
292
+ $fresh_install = !$stored_version;
293
+ $upgrade = $stored_version && version_compare($current_version, $stored_version) > 0;
294
+
295
+ if ($fresh_install) {
296
+
297
+ do_action('ecwid_plugin_installed', $current_version);
298
+ add_option('ecwid_plugin_version', $current_version);
299
+
300
+ } elseif ($upgrade) {
301
+
302
+ do_action('ecwid_plugin_upgraded', array( 'old' => $stored_version, 'new' => $current_version ) );
303
+ update_option('ecwid_plugin_version', $current_version);
304
+
305
  }
306
  }
307
 
669
 
670
  function ecwid_wrap_shortcode_content($content, $name)
671
  {
672
+ return "<!-- Ecwid shopping cart plugin v 2.7.2 -->"
673
  . ecwid_get_scriptjs_code()
674
  . "<div class=\"ecwid-shopping-cart-$name\">$content</div>"
675
+ . "<!-- END Ecwid Shopping Cart v 2.7.2 -->";
676
  }
677
 
678
  function ecwid_get_scriptjs_code($force_lang = null) {
1788
 
1789
  }
1790
 
1791
+ class EcwidStoreLinkWidget extends WP_Widget {
1792
+
1793
+ function EcwidStoreLinkWidget() {
1794
+ $widget_ops = array('classname' => 'widget_ecwid_store_link', 'description' => __('A link to your store page', 'ecwid-shopping-cart'));
1795
+ $this->WP_Widget('ecwidstorelink', __('Ecwid Store Page Link', 'ecwid-shopping-cart'), $widget_ops);
1796
+ }
1797
+
1798
+ function widget($args, $instance) {
1799
+ extract($args);
1800
+ echo $before_widget;
1801
+
1802
+ echo '<div>';
1803
+
1804
+ echo '<a href="' . ecwid_get_store_page_url() . '">' . $instance['label'] . '</a>';
1805
+ echo '</div>';
1806
+
1807
+ echo $after_widget;
1808
+ }
1809
+
1810
+ function update($new_instance, $old_instance){
1811
+ $instance = $old_instance;
1812
+ $instance['label'] = strip_tags(stripslashes($new_instance['label']));
1813
+
1814
+ return $instance;
1815
+ }
1816
+
1817
+ function form($instance){
1818
+ $instance = wp_parse_args( (array) $instance, array( 'label' => __('Shop', 'ecwid-shopping-cart') ) );
1819
+
1820
+ $label = htmlspecialchars($instance['label']);
1821
+
1822
+ echo '<p><label for="' . $this->get_field_name('label') . '">' . __('Text') . ': <input style="width:100%;" id="' . $this->get_field_id('label') . '" name="' . $this->get_field_name('label') . '" type="text" value="' . $label . '" /></label></p>';
1823
+ }
1824
+
1825
+ }
1826
+
1827
  function ecwid_send_stats()
1828
  {
1829
  $storeid = get_ecwid_store_id();
1916
  'google_xml_sitemaps_used',
1917
  'ecwid_product_advisor_used',
1918
  'ecwid_single_product_used',
1919
+ 'ecwid_store_shortcode_used',
1920
+ 'store_link_widget'
1921
  );
1922
 
1923
  $usage_stats = array();
1936
  $usage_stats['ecwid_product_advisor_used'] = (bool) is_plugin_active('ecwid-useful-tools/ecwid-product-advisor.php');
1937
  $usage_stats['ecwid_single_product_used'] = (bool) (get_option('ecwid_single_product_used') + 60*60*24*14 > time());
1938
  $usage_stats['ecwid_store_shortcode_used'] = (bool) (get_option('ecwid_store_shortcode_used') + 60*60*24*14 > time());
1939
+ $usage_stats['store_link_widget'] = (bool) is_active_widget(false, false, 'ecwidstorelink');
1940
 
1941
  return $usage_stats;
1942
  }
1947
  register_widget('EcwidVCategoriesWidget');
1948
  register_widget('EcwidMinicartMiniViewWidget');
1949
  register_widget('EcwidBadgeWidget');
1950
+ register_widget('EcwidStoreLinkWidget');
1951
  }
1952
 
1953
  add_action('widgets_init', 'ecwid_sidebar_widgets_init');
includes/class-ecwid-store-editor.php CHANGED
@@ -65,6 +65,7 @@ HTML;
65
  }
66
 
67
  public function get_store_svg() {
 
68
  if (isset($_GET['file']) && $_GET['file'] == 'ecwid_store_svg.svg' && current_user_can('administrator')) {
69
  ecwid_load_textdomain();
70
  header('Content-type: image/svg+xml');
65
  }
66
 
67
  public function get_store_svg() {
68
+ // TODO: Move this to admin-post
69
  if (isset($_GET['file']) && $_GET['file'] == 'ecwid_store_svg.svg' && current_user_can('administrator')) {
70
  ecwid_load_textdomain();
71
  header('Content-type: image/svg+xml');
includes/themes.php CHANGED
@@ -20,7 +20,7 @@ function ecwid_get_theme_name()
20
 
21
  function ecwid_apply_theme($theme_name = null)
22
  {
23
- $themes = array('bretheon', 'responsive', 'twentyfourteen', 'pagelines', 'envision');
24
 
25
  if (empty($theme_name)) {
26
  $theme_name = ecwid_get_theme_name();
20
 
21
  function ecwid_apply_theme($theme_name = null)
22
  {
23
+ $themes = array('bretheon', 'responsive', 'twentyfourteen', 'pagelines', 'envision', 'twentyfifteen');
24
 
25
  if (empty($theme_name)) {
26
  $theme_name = ecwid_get_theme_name();
includes/themes/class-ecwid-theme-twentyfifteen.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ require_once ECWID_THEMES_DIR . '/class-ecwid-theme-base.php';
4
+
5
+ class Ecwid_Theme_2015 extends Ecwid_Theme_Base
6
+ {
7
+ protected $name = 'Twenty Fifteen';
8
+
9
+ public function __construct()
10
+ {
11
+ parent::__construct();
12
+
13
+ if (ecwid_page_has_productbrowser()) {
14
+ wp_enqueue_style( 'ecwid-theme', plugins_url( 'ecwid-shopping-cart/css/themes/2015.css' ), array('twentyfifteen-style') );
15
+ }
16
+
17
+ add_action('ecwid_plugin_installed', array($this, 'on_ecwid_plugin_installed'));
18
+ }
19
+
20
+ public function on_ecwid_plugin_installed()
21
+ {
22
+ $widgets = get_option('sidebars_widgets');
23
+
24
+ if (strpos(implode(' ', $widgets['sidebar-1']), 'ecwidstorelink') === false) {
25
+ array_unshift($widgets['sidebar-1'], 'ecwidstorelink-2');
26
+ wp_set_sidebars_widgets($widgets);
27
+
28
+ $options = get_option('widget_ecwidstorelink');
29
+ if (!$options) {
30
+ $options = array(
31
+ 2 => array(
32
+ 'label' => __('Shop', 'ecwid-shopping-cart')
33
+ ),
34
+ '_multiwidget' => 1
35
+ );
36
+ }
37
+
38
+ update_option('widget_ecwidstorelink', $options);
39
+ }
40
+ }
41
+ }
42
+
43
+ $ecwid_current_theme = new Ecwid_Theme_2015();
js/store-editor-page.js CHANGED
@@ -221,7 +221,9 @@ jQuery(document).ready(function() {
221
  $('#content').val(
222
  $('#content').val().replace(existingShortcode.content, shortcode.shortcode.string())
223
  );
224
- $(tinymce.activeEditor.getBody()).find('.ecwid-store-editor').attr('data-ecwid-shortcode', shortcode.shortcode.string());
 
 
225
  } else {
226
 
227
  if (tinymce.activeEditor && !tinymce.activeEditor.isHidden()) {
@@ -323,8 +325,10 @@ ecwid_open_store_popup = function() {
323
  updatePreview();
324
 
325
 
326
- tinyMCE.activeEditor.execCommand('SelectAll');
327
- tinyMCE.activeEditor.selection.collapse();
 
 
328
 
329
  return false;
330
  };
221
  $('#content').val(
222
  $('#content').val().replace(existingShortcode.content, shortcode.shortcode.string())
223
  );
224
+ if (tinyMCE.activeEditor) {
225
+ $(tinymce.activeEditor.getBody()).find('.ecwid-store-editor').attr('data-ecwid-shortcode', shortcode.shortcode.string());
226
+ }
227
  } else {
228
 
229
  if (tinymce.activeEditor && !tinymce.activeEditor.isHidden()) {
325
  updatePreview();
326
 
327
 
328
+ if (tinyMCE.activeEditor) {
329
+ tinyMCE.activeEditor.execCommand('SelectAll');
330
+ tinyMCE.activeEditor.selection.collapse();
331
+ }
332
 
333
  return false;
334
  };
js/themes/responsive.js CHANGED
@@ -64,14 +64,15 @@ function doMobileLayout()
64
  'top': $('.ecwid-productBrowser').prop('offsetTop') - 50 + 8
65
  });
66
  }
67
-
68
- Ecwid.OnPageLoaded.add(function(args) {
69
- if ($(window).width() < 650) {
70
- doMobileLayout();
71
- } else {
72
- doDefaultLayout();
73
- }
74
- });
 
75
 
76
  $(window).resize(function() {
77
  if ($(window).width() < 650) {
64
  'top': $('.ecwid-productBrowser').prop('offsetTop') - 50 + 8
65
  });
66
  }
67
+ if (typeof Ecwid != 'undefined') {
68
+ Ecwid.OnPageLoaded.add(function(args) {
69
+ if ($(window).width() < 650) {
70
+ doMobileLayout();
71
+ } else {
72
+ doDefaultLayout();
73
+ }
74
+ });
75
+ }
76
 
77
  $(window).resize(function() {
78
  if ($(window).width() < 650) {
languages/ecwid-shopping-cart-ru_RU.mo CHANGED
Binary file
languages/ecwid-shopping-cart-ru_RU.po CHANGED
@@ -379,4 +379,13 @@ msgid "Insert into page"
379
  msgstr "Добавить на страницу"
380
 
381
  msgid "Save and close"
382
- msgstr "Сохранить и закрыть"
 
 
 
 
 
 
 
 
 
379
  msgstr "Добавить на страницу"
380
 
381
  msgid "Save and close"
382
+ msgstr "Сохранить и закрыть"
383
+
384
+ msgid "Shop"
385
+ msgstr "Магазин"
386
+
387
+ msgid "Ecwid Store Page Link"
388
+ msgstr "Ссылка на Эквид-магазин"
389
+
390
+ msgid "A link to your store page"
391
+ msgstr "Ссылка на страницу магазина"
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: 4.0
6
- Stable tag: 2.7.1
7
 
8
  Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
9
 
@@ -110,6 +110,11 @@ http://codex.wordpress.org/Managing_Plugins#Installing_Plugins
110
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
111
 
112
  == Changelog ==
 
 
 
 
 
113
  = 2.7.1 =
114
  - Fixed a few issues with the store appearance settings that were discovered in the recently released update (v2.7)
115
 
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: 4.1
6
+ Stable tag: 2.7.2
7
 
8
  Ecwid is a full-featured shopping cart that can be added to any Wordpress site in less than 5 minutes. Start using Ecwid for free today.
9
 
110
  * [Ecwid site](http://www.ecwid.com/?source=wporg-plugin-site "Ecwid Site")
111
 
112
  == Changelog ==
113
+ = 2.7.2 =
114
+ - **A new sidebar widget: Ecwid Store Page Link.** The widget adds your store page link to the site's sidebar. You may want to use it with blog-focused WordPress themes that don't have a navigation menu, e.g. the upcoming "Twenty Fifteen" theme. Also, you can consider adding the widget to your sidebar to make your store page more visible to your visitors.
115
+ - **Wordpress 4.1 and Twenty Fifteen theme compatibility.** The new WordPress version is coming soon and bringing a brand new 'Twenty Fifteen' theme. Ecwid plugin is now totally ready for the upcoming changes and will work OK in the new environment. Feel free to upgrade your site to Wordpress 4.1 as soon as it's released.
116
+ - A few minor improvements and bugfixes for the new "Add Store" button released in the version 2.7
117
+
118
  = 2.7.1 =
119
  - Fixed a few issues with the store appearance settings that were discovered in the recently released update (v2.7)
120
 
templates/store-svg.php CHANGED
@@ -12,7 +12,7 @@
12
  <?php if (get_ecwid_store_id() == ECWID_DEMO_STORE_ID): ?>
13
  <?php _e('Demo Store', 'ecwid-shopping-cart'); ?>
14
  <?php else: ?>
15
- <?php _e('Store ID', 'ecwid-shopping-cart'); ?>: <?php echo esc_attr(get_option('ecwid_store_id')); ?>
16
  <?php endif; ?>
17
  </text>
18
 
@@ -34,57 +34,3 @@
34
  c-1.1,0-2.1-0.8-2.3-1.9L229.2,58.3z"/>
35
  </g>
36
  </svg>
37
- <!--svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
38
- viewBox="0 0 80 80" enable-background="new 0 0 80 80" xml:space="preserve">
39
- <g>
40
- <path fill="#77B644" d="M37.4,36.1c0-0.1,0.1-0.1,0.1-0.1h6.2c0.1,0,0.1,0.1,0.1,0.1v0.2c0,0.1-0.1,0.1-0.1,0.1h-6.2
41
- c-0.1,0-0.1-0.1-0.1-0.1C37.4,36.4,37.4,36.1,37.4,36.1z"/>
42
- <path fill="#77B644" d="M43.8,32.2c-0.3-0.5-0.4-1-0.5-1.8c0,0-0.1-0.2-0.3-0.2h-5c-0.1,0-0.3,0.2-0.3,0.2c0,0-0.3,1.5-0.5,1.8
43
- c0,0.3,0,0.8,0,0.8s0,0,0,0h0c0,0,0,0.1,0.2,0.2c0,0,0,0,0.1,0v0v2.3c0,0.1,0.1,0.2,0.3,0.2h2v-2.1c0-0.1,0.1-0.3,0.3-0.3h1
44
- c0.1,0,0.3,0.1,0.3,0.3v2.1h2c0.1,0,0.3-0.1,0.3-0.2v-2.3v0c0.2,0,0.3-0.2,0.3-0.2h0c0,0,0,0,0,0S43.8,32.5,43.8,32.2z M39.3,34.7
45
- c0,0.1-0.1,0.3-0.2,0.3h-0.5c-0.1,0-0.2-0.1-0.2-0.3v-1c0-0.1,0.1-0.3,0.2-0.3h0.5c0.1,0,0.2,0.1,0.2,0.3V34.7z M42.8,34.7
46
- c0,0.1-0.1,0.3-0.2,0.3h-0.5c-0.1,0-0.2-0.1-0.2-0.3v-1c0-0.1,0.1-0.3,0.2-0.3h0.5c0.1,0,0.2,0.1,0.2,0.3V34.7z M42.8,30.7
47
- c0,0,0.3,1.3,0.4,1.5c-0.3,0-0.7,0-0.7,0l-0.3-1.5C42.3,30.7,42.8,30.7,42.8,30.7z M43.3,32.5v0.2c0,0.2-0.2,0.3-0.4,0.3
48
- c-0.2,0-0.4-0.1-0.4-0.3c0,0,0-0.2,0-0.2S43.3,32.5,43.3,32.5z M41.4,32.6v-0.1h0.7v0.2c0,0.2-0.2,0.3-0.4,0.3
49
- C41.6,33,41.4,32.8,41.4,32.6C41.4,32.6,41.4,32.6,41.4,32.6L41.4,32.6z M41.8,30.7c0,0,0.2,1.2,0.3,1.5c0.1,0-0.7,0-0.7,0
50
- l-0.1-1.5C41.3,30.7,41.8,30.7,41.8,30.7z M40.3,30.7h0.5l0.1,1.5h-0.7L40.3,30.7z M40.3,32.5h0.7l0,0.2c0,0.2-0.2,0.3-0.4,0.3
51
- s-0.3-0.1-0.4-0.3L40.3,32.5z M39.3,30.7h0.5l-0.1,1.5c0,0-0.5,0-0.7,0C39.2,32,39.3,30.7,39.3,30.7z M39.1,32.5h0.7l0,0.1h0
52
- c0,0,0,0,0,0c0,0.2-0.2,0.4-0.4,0.4c-0.2,0-0.3-0.1-0.4-0.3L39.1,32.5z M38.4,30.7h0.5l-0.2,1.5c0,0-0.5,0-0.7,0
53
- C38.2,31.9,38.4,30.7,38.4,30.7z M37.9,32.5h0.7v0.1c0,0.2-0.2,0.4-0.4,0.4c-0.2,0-0.3-0.1-0.3-0.3V32.5z"/>
54
- </g>
55
- <text transform="matrix(1 0 0 1 20.4612 40.8213)" fill="#050303" font-family="Open Sans" font-size="2.8571">Your store will be shown here!</text>
56
- <text transform="matrix(1 0 0 1 33.9376 43.5605)" fill="#999999" font-family="Open Sans" font-size="1.4829">Store ID: xxxxxxxxx</text>
57
- <?php if (get_ecwid_store_id() == ECWID_DEMO_STORE_ID): ?>
58
- <?php _e('Demo Store', 'ecwid-shopping-cart'); ?>
59
- <?php else: ?>
60
- <?php _e('Store ID', 'ecwid-shopping-cart'); ?>: <?php echo esc_attr(get_option('ecwid_store_id')); ?>
61
- <?php endif; ?>
62
- </text>
63
- </svg>
64
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
65
- viewBox="0 0 560 181" enable-background="new 0 0 560 181" xml:space="preserve">
66
- <g>
67
- <path fill="#77B644" d="M242.1,72.2c0-0.8,0.6-1.4,1.4-1.4h74.3c0.8,0,1.4,0.6,1.4,1.4V75c0,0.8-0.6,1.4-1.4,1.4h-74.3
68
- c-0.8,0-1.4-0.6-1.4-1.4V72.2z"/>
69
- <path fill="#77B644" d="M319.4,25.6c-3-6-4.3-11.8-6-21.5c0-0.5-1.3-2.4-3-2.4h-59.7c-1.6,0-3,1.9-3,2.4c0,0-3,18.5-6,21.5
70
- c0,3,0,9,0,9s0,0.1,0.1,0.2h-0.1c0,0,0.3,1.5,2.1,2.3c0.3,0.2,0.5,0.3,0.9,0.4v0.1v27c0,1.6,1.7,2.7,3.3,2.7h23.5V42.7
71
- c0-1.6,1.6-3,3.2-3h11.9c1.6,0,3,1.3,3,3v24.7h23.8c1.6,0,3-1.1,3-2.7v-27v-0.1c2.4-0.4,3-2.7,3-2.7h-0.1c0-0.1,0.1-0.2,0.1-0.2
72
- S319.4,28.6,319.4,25.6z M265.2,55.5c0,1.6-0.7,3-2.4,3h-6.2c-1.6,0-2.4-1.3-2.4-3V43.6c0-1.6,0.8-3,2.4-3h6.2c1.6,0,2.4,1.3,2.4,3
73
- V55.5z M306.9,55.5c0,1.6-0.7,3-2.3,3h-6.1c-1.6,0-2.4-1.3-2.4-3V43.6c0-1.6,0.8-3,2.4-3h6.1c1.6,0,2.3,1.3,2.3,3V55.5z M307.4,7.2
74
- c0,0,3.2,15.2,5.1,18.4c-3,0-8.1,0-8.1,0l-3-18.4H307.4z M312.8,28.6l0,2.3c-0.3,2.1-2,3.6-4.2,3.6c-2.3,0-4.2-1.4-4.2-3.7
75
- c0-0.1,0.1-2.2,0.1-2.2H312.8z M290.3,30.2l0-1.6h8.5l0,2.4c-0.3,2-2,3.6-4.2,3.6c-2.3,0-4.2-1.9-4.2-4.2
76
- C290.4,30.3,290.4,30.2,290.3,30.2L290.3,30.2z M295.4,7.2c0,0,2.2,14.8,3.2,18.4c0.9,0-8.3,0-8.3,0l-0.9-18.4H295.4z M277.5,7.2
77
- h6.1l1.1,18.4h-8.1L277.5,7.2z M276.4,28.6h8.3l0.1,2.1c-0.2,2.2-2,3.9-4.2,3.9c-2.2,0-4-1.7-4.2-3.9L276.4,28.6z M265.6,7.2h6
78
- l-0.9,18.4c0,0-5.8,0-8,0C263.6,22.3,265.6,7.2,265.6,7.2z M262.5,28.6h8.3l0.1,1.6h-0.1c0,0.1,0,0.1,0,0.2c0,2.3-1.9,4.2-4.2,4.2
79
- c-2.1,0-3.9-1.6-4.2-3.6L262.5,28.6z M253.8,7.2h5.8l-2.5,18.4c0,0-5.9,0-8.1,0C251.3,21.5,253.8,7.2,253.8,7.2z M248.4,28.6h8.3
80
- c0,0,0,1.7,0,1.7c0,2.3-1.9,4.2-4.2,4.2c-2.1,0-3.8-1.5-4.1-3.5L248.4,28.6z"/>
81
- </g>
82
- <text x="280" y="116" text-anchor="middle" fill="#050303" font-family="Open Sans,Helvetica Neue,sans-serif" font-size="20"><?php _e('Your store will be shown here!', 'ecwid-shopping-cart'); ?></text>
83
- <text x="280" y="145" text-anchor="middle" fill="#999999" font-family="Open Sans,Helvetica Neue,sans-serif" font-size="14">
84
- <?php if (get_ecwid_store_id() == ECWID_DEMO_STORE_ID): ?>
85
- <?php _e('Demo Store', 'ecwid-shopping-cart'); ?>
86
- <?php else: ?>
87
- <?php _e('Store ID', 'ecwid-shopping-cart'); ?>: <?php echo esc_attr(get_option('ecwid_store_id')); ?>
88
- <?php endif; ?>
89
- </text>
90
- </svg-->
12
  <?php if (get_ecwid_store_id() == ECWID_DEMO_STORE_ID): ?>
13
  <?php _e('Demo Store', 'ecwid-shopping-cart'); ?>
14
  <?php else: ?>
15
+ <?php _e('Store ID', 'ecwid-shopping-cart'); ?>: <?php echo esc_attr(get_ecwid_store_id()); ?>
16
  <?php endif; ?>
17
  </text>
18
 
34
  c-1.1,0-2.1-0.8-2.3-1.9L229.2,58.3z"/>
35
  </g>
36
  </svg>