Version Notes
User can select categories and include jquery in admin panel for viewing button.
Download this release
Release Info
| Developer | TripleNext |
| Extension | Online_Ring_Sizer |
| Version | 1.0.0.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0.3 to 1.0.0.4
- app/code/community/TripleNext/OnlineRingSizer/etc/adminhtml.xml +3 -19
- app/code/community/TripleNext/OnlineRingSizer/etc/system.xml +2 -2
- app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/button.phtml +1 -1
- app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/jQuery.phtml +1 -1
- app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/js.phtml +1 -1
- package.xml +6 -6
app/code/community/TripleNext/OnlineRingSizer/etc/adminhtml.xml
CHANGED
|
@@ -1,19 +1,3 @@
|
|
| 1 |
-
<
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
<children>
|
| 5 |
-
<system>
|
| 6 |
-
<children>
|
| 7 |
-
<config>
|
| 8 |
-
<children>
|
| 9 |
-
<my_section>
|
| 10 |
-
<title>My Section</title>
|
| 11 |
-
</my_section>
|
| 12 |
-
</children>
|
| 13 |
-
</config>
|
| 14 |
-
</children>
|
| 15 |
-
</system>
|
| 16 |
-
</children>
|
| 17 |
-
</admin>
|
| 18 |
-
</resources>
|
| 19 |
-
</acl>
|
| 1 |
+
<config>
|
| 2 |
+
|
| 3 |
+
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/TripleNext/OnlineRingSizer/etc/system.xml
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
</sizerconfig>
|
| 7 |
</tabs>
|
| 8 |
<sections>
|
| 9 |
-
<
|
| 10 |
<label>Settings</label>
|
| 11 |
<tab>sizerconfig</tab>
|
| 12 |
<frontend_type></frontend_type>
|
|
@@ -47,6 +47,6 @@
|
|
| 47 |
</fields>
|
| 48 |
</FMRS_group>
|
| 49 |
</groups>
|
| 50 |
-
</
|
| 51 |
</sections>
|
| 52 |
</config>
|
| 6 |
</sizerconfig>
|
| 7 |
</tabs>
|
| 8 |
<sections>
|
| 9 |
+
<FMRS_section translate="label">
|
| 10 |
<label>Settings</label>
|
| 11 |
<tab>sizerconfig</tab>
|
| 12 |
<frontend_type></frontend_type>
|
| 47 |
</fields>
|
| 48 |
</FMRS_group>
|
| 49 |
</groups>
|
| 50 |
+
</FMRS_section>
|
| 51 |
</sections>
|
| 52 |
</config>
|
app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/button.phtml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
<?php $curProductCategoryIds = $_product->getCategoryIds() ?>
|
| 4 |
|
| 5 |
-
<?php $selectedCategoryIds = (Mage::getStoreConfig('
|
| 6 |
|
| 7 |
<?php $selCategoryIds = explode(",", $selectedCategoryIds); ?>
|
| 8 |
|
| 2 |
|
| 3 |
<?php $curProductCategoryIds = $_product->getCategoryIds() ?>
|
| 4 |
|
| 5 |
+
<?php $selectedCategoryIds = (Mage::getStoreConfig('FMRS_section/FMRS_group/category'))//Ids of selected category in System->Configuration?>
|
| 6 |
|
| 7 |
<?php $selCategoryIds = explode(",", $selectedCategoryIds); ?>
|
| 8 |
|
app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/jQuery.phtml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
<?php $includejQuery = (Mage::getStoreConfig('
|
| 2 |
|
| 3 |
<!-- include jQuery if need -->
|
| 4 |
<?php if ($includejQuery): ?>
|
| 1 |
+
<?php $includejQuery = (Mage::getStoreConfig('FMRS_section/FMRS_group/include_jquery'))//include jQuery in admin panel?>
|
| 2 |
|
| 3 |
<!-- include jQuery if need -->
|
| 4 |
<?php if ($includejQuery): ?>
|
app/design/frontend/default/default/template/TripleNext/OnlineRingSizer/js.phtml
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
|
| 4 |
<?php $curProductCategoryIds = $_product->getCategoryIds() ?>
|
| 5 |
|
| 6 |
-
<?php $selectedCategoryIds = (Mage::getStoreConfig('
|
| 7 |
|
| 8 |
<?php foreach($curProductCategoryIds as $curProductCategoryId) {?>
|
| 9 |
|
| 3 |
|
| 4 |
<?php $curProductCategoryIds = $_product->getCategoryIds() ?>
|
| 5 |
|
| 6 |
+
<?php $selectedCategoryIds = (Mage::getStoreConfig('FMRS_section/FMRS_group/category'))//Ids of selected category in System->Configuration?><?php $selCategoryIds = explode(",", $selectedCategoryIds); ?>
|
| 7 |
|
| 8 |
<?php foreach($curProductCategoryIds as $curProductCategoryId) {?>
|
| 9 |
|
package.xml
CHANGED
|
@@ -1,18 +1,18 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Online_Ring_Sizer</name>
|
| 4 |
-
<version>1.0.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
-
<license uri="http://findmyringsize.com/en/Info/TermsAndConditions.aspx">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>A simple on display ring sizer widget that let your customers find their ring size online</summary>
|
| 10 |
<description>FindMyRingSize is a unique On Display Ring Sizer. Our unique technology offers a simple, reliable and highly accurate solution for online jewelry customers to find their ring size. It's an intuitive process, which takes less than a minute.</description>
|
| 11 |
-
<notes>User can select categories and include jquery in admin panel for
|
| 12 |
<authors><author><name>TripleNext</name><user>triplenext</user><email>ev@triplenext.com</email></author></authors>
|
| 13 |
-
<date>2013-
|
| 14 |
-
<time>23:
|
| 15 |
-
<contents><target name="magecommunity"><dir name="TripleNext"><dir name="OnlineRingSizer"><dir name="etc"><file name="config.xml" hash="f6fe1cd66d827733c0138ebd3365ae9a"/><file name="system.xml" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Online_Ring_Sizer</name>
|
| 4 |
+
<version>1.0.0.4</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
+
<license uri="http://findmyringsize.com/en/Info/TermsAndConditions.aspx&quot;">OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>A simple on display ring sizer widget that let your customers find their ring size online</summary>
|
| 10 |
<description>FindMyRingSize is a unique On Display Ring Sizer. Our unique technology offers a simple, reliable and highly accurate solution for online jewelry customers to find their ring size. It's an intuitive process, which takes less than a minute.</description>
|
| 11 |
+
<notes>User can select categories and include jquery in admin panel for viewing button.</notes>
|
| 12 |
<authors><author><name>TripleNext</name><user>triplenext</user><email>ev@triplenext.com</email></author></authors>
|
| 13 |
+
<date>2013-11-07</date>
|
| 14 |
+
<time>22:23:01</time>
|
| 15 |
+
<contents><target name="magecommunity"><dir name="TripleNext"><dir name="OnlineRingSizer"><dir name="etc"><file name="config.xml" hash="f6fe1cd66d827733c0138ebd3365ae9a"/><file name="system.xml" hash="9b1d3a93cd5794805e1ba4ce2601ee19"/><file name="adminhtml.xml" hash="0cb1782b17bb76f9dc985a13293d0c7a"/></dir><dir name="Helper"><file name="Data.php" hash="a40e9f10f180b266efcae390590f3b76"/></dir><dir name="Model"><file name="Categories.php" hash="9c06b0a6d8a51ab9a0d026c8541b66d6"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="TripleNext_OnlineRingSizer.xml" hash="b421e9c14e473a46a10968ea6e176412"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="TripleNext"><dir name="OnlineRingSizer"><file name="button.phtml" hash="859b3b1334b7809e29a067b5d5615f1b"/><file name="js.phtml" hash="9da9e6458f066a0f7c9d6cf1118a7faa"/><file name="jQuery.phtml" hash="beea50a90990e7e5336903ec4865639a"/></dir></dir></dir><dir name="layout"><dir name="TripleNext"><dir name="OnlineRingSizer"><file name="FMRSmod.xml" hash="004a479512d9a877467404a25b932915"/></dir></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
