Version Notes
Обновлены шаблоны Smart Catalog в составе темы до актуальных версий (list-new.phtml, list-rate.phtml, list-short.phtml). Теперь блоки на базе этих шаблонов визуально грузятся быстрее.
Download this release
Release Info
Developer | WebAndPeople |
Extension | wp_theme_grayscale2014 |
Version | 1.2.0 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.2.0
- app/code/local/WP/ThemeGrayscale2014/etc/config.xml +2 -2
- app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-new.phtml +1 -1
- app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-rate.phtml +2 -2
- app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-short.phtml +3 -3
- package.xml +8 -8
app/code/local/WP/ThemeGrayscale2014/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<WP_ThemeGrayscale2014>
|
5 |
-
<version>1.
|
6 |
</WP_ThemeGrayscale2014>
|
7 |
</modules>
|
8 |
<global>
|
@@ -40,7 +40,7 @@
|
|
40 |
<default>
|
41 |
<theme_grayscale2014>
|
42 |
<general>
|
43 |
-
<version>1.
|
44 |
</general>
|
45 |
</theme_grayscale2014>
|
46 |
</default>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<WP_ThemeGrayscale2014>
|
5 |
+
<version>1.2.0</version>
|
6 |
</WP_ThemeGrayscale2014>
|
7 |
</modules>
|
8 |
<global>
|
40 |
<default>
|
41 |
<theme_grayscale2014>
|
42 |
<general>
|
43 |
+
<version>1.2.0</version>
|
44 |
</general>
|
45 |
</theme_grayscale2014>
|
46 |
</default>
|
app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-new.phtml
CHANGED
@@ -58,7 +58,7 @@
|
|
58 |
</div>
|
59 |
|
60 |
<script type="text/javascript">
|
61 |
-
jqSmartCatalog(
|
62 |
jqSmartCatalog('div.smart-columns-new-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
63 |
});
|
64 |
</script>
|
58 |
</div>
|
59 |
|
60 |
<script type="text/javascript">
|
61 |
+
jqSmartCatalog(document).ready(function() {
|
62 |
jqSmartCatalog('div.smart-columns-new-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
63 |
});
|
64 |
</script>
|
app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-rate.phtml
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
<?php else: ?>
|
40 |
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
41 |
<?php endif; ?>
|
42 |
-
|
43 |
</div>
|
44 |
|
45 |
</div>
|
@@ -51,7 +51,7 @@
|
|
51 |
</div>
|
52 |
|
53 |
<script type="text/javascript">
|
54 |
-
jqSmartCatalog(
|
55 |
jqSmartCatalog('div.smart-columns-home-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
56 |
});
|
57 |
</script>
|
39 |
<?php else: ?>
|
40 |
<p class="availability out-of-stock"><span><?php echo $this->__('Out of stock') ?></span></p>
|
41 |
<?php endif; ?>
|
42 |
+
|
43 |
</div>
|
44 |
|
45 |
</div>
|
51 |
</div>
|
52 |
|
53 |
<script type="text/javascript">
|
54 |
+
jqSmartCatalog(document).ready(function() {
|
55 |
jqSmartCatalog('div.smart-columns-home-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
56 |
});
|
57 |
</script>
|
app/design/frontend/default/grayscale2014/template/webandpeople/smartcatalog/list-short.phtml
CHANGED
@@ -23,14 +23,14 @@
|
|
23 |
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h2>
|
24 |
<?php echo $this->getPriceHtml($_product, true) ?>
|
25 |
</div>
|
26 |
-
|
27 |
<?php endforeach ?>
|
28 |
</ul>
|
29 |
</div>
|
30 |
<script type="text/javascript">
|
31 |
-
jqSmartCatalog(
|
32 |
jqSmartCatalog('div.smart-columns-home-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
33 |
});
|
34 |
</script>
|
35 |
</div>
|
36 |
-
<?php endif; ?>
|
23 |
<h2 class="product-name"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName()) ?></a></h2>
|
24 |
<?php echo $this->getPriceHtml($_product, true) ?>
|
25 |
</div>
|
26 |
+
</li>
|
27 |
<?php endforeach ?>
|
28 |
</ul>
|
29 |
</div>
|
30 |
<script type="text/javascript">
|
31 |
+
jqSmartCatalog(document).ready(function() {
|
32 |
jqSmartCatalog('div.smart-columns-home-<?php echo $uid; ?>').wpSmartColumns({columnWidth: <?php echo $_columnWidth; ?>, oneRow: true});
|
33 |
});
|
34 |
</script>
|
35 |
</div>
|
36 |
+
<?php endif; ?>
|
package.xml
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<package>
|
3 |
<name>wp_theme_grayscale2014</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://web-experiment.info/regular_free_license">Web-Experiment.Info Regular Free License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Magento Theme - Grayscale Full-Width (Web-Experiment.Info)</summary>
|
10 |
<description>Magento Theme - Grayscale Full-Width (Web-Experiment.Info)</description>
|
11 |
-
<notes
|
12 |
<authors>
|
13 |
<author>
|
14 |
<name>WebAndPeople</name>
|
@@ -21,8 +21,8 @@
|
|
21 |
<email>y.gerassimenko@webandpeople.com</email>
|
22 |
</author>
|
23 |
</authors>
|
24 |
-
<date>2014-02-
|
25 |
-
<time>
|
26 |
<contents>
|
27 |
<target name="mageweb">
|
28 |
<dir name="app">
|
@@ -126,7 +126,7 @@
|
|
126 |
<file name="Data.php" hash="9442514d1b5c864a63b1af4c883df06b"/>
|
127 |
</dir>
|
128 |
<dir name="etc">
|
129 |
-
<file name="config.xml" hash="
|
130 |
<file name="system.xml" hash="0d2544c0255cc03c00e773041311e0cc"/>
|
131 |
</dir>
|
132 |
</dir>
|
@@ -237,9 +237,9 @@
|
|
237 |
</dir>
|
238 |
<dir name="webandpeople">
|
239 |
<dir name="smartcatalog">
|
240 |
-
<file name="list-new.phtml" hash="
|
241 |
-
<file name="list-rate.phtml" hash="
|
242 |
-
<file name="list-short.phtml" hash="
|
243 |
</dir>
|
244 |
</dir>
|
245 |
</dir>
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<package>
|
3 |
<name>wp_theme_grayscale2014</name>
|
4 |
+
<version>1.2.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://web-experiment.info/regular_free_license">Web-Experiment.Info Regular Free License</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Magento Theme - Grayscale Full-Width (Web-Experiment.Info)</summary>
|
10 |
<description>Magento Theme - Grayscale Full-Width (Web-Experiment.Info)</description>
|
11 |
+
<notes>Обновлены шаблоны Smart Catalog в составе темы до актуальных версий (list-new.phtml, list-rate.phtml, list-short.phtml). Теперь блоки на базе этих шаблонов визуально грузятся быстрее.</notes>
|
12 |
<authors>
|
13 |
<author>
|
14 |
<name>WebAndPeople</name>
|
21 |
<email>y.gerassimenko@webandpeople.com</email>
|
22 |
</author>
|
23 |
</authors>
|
24 |
+
<date>2014-02-19</date>
|
25 |
+
<time>05:34:35</time>
|
26 |
<contents>
|
27 |
<target name="mageweb">
|
28 |
<dir name="app">
|
126 |
<file name="Data.php" hash="9442514d1b5c864a63b1af4c883df06b"/>
|
127 |
</dir>
|
128 |
<dir name="etc">
|
129 |
+
<file name="config.xml" hash="1c1318e9cb33df658aa19ba97b9c0317"/>
|
130 |
<file name="system.xml" hash="0d2544c0255cc03c00e773041311e0cc"/>
|
131 |
</dir>
|
132 |
</dir>
|
237 |
</dir>
|
238 |
<dir name="webandpeople">
|
239 |
<dir name="smartcatalog">
|
240 |
+
<file name="list-new.phtml" hash="81e1c7e25687edff506a8fdc2235a366"/>
|
241 |
+
<file name="list-rate.phtml" hash="5f6fbd9273ee0723637f83868ed771ad"/>
|
242 |
+
<file name="list-short.phtml" hash="e270ce35eb3034ccd1ea08aae185587f"/>
|
243 |
</dir>
|
244 |
</dir>
|
245 |
</dir>
|