Version Notes
Conversion optimisation
Download this release
Release Info
Developer | nToklo |
Extension | ntoklo_recommendations |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- app/code/community/Ntoklo/Recommendations/Block/Adminhtml/Widget/Date/Helper.php +1 -2
- app/code/community/Ntoklo/Recommendations/Helper/Data.php +32 -11
- app/code/community/Ntoklo/Recommendations/etc/config.xml +1 -1
- app/code/community/Ntoklo/Recommendations/sql/ntoklo_setup/{mysql4-install-1.0.3.php → mysql4-install-1.0.4.php} +0 -0
- app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_horisontal.phtml +0 -54
- app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_review_short.phtml +0 -31
- app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_vertical.phtml +0 -45
- app/etc/modules/Ntoklo_Recommendations.xml +0 -30
- app/locale/en_US/ntoklo_recommendations.csv +0 -16
- package.xml +14 -14
- skin/frontend/base/default/css/ntoklo/global.css +1 -2
- skin/frontend/base/default/images/ntoklo/ntoklo_logo.png +0 -0
- skin/frontend/base/default/images/ntoklo/ntoklo_logo_2x.png +0 -0
app/code/community/Ntoklo/Recommendations/Block/Adminhtml/Widget/Date/Helper.php
CHANGED
@@ -46,5 +46,4 @@ class Ntoklo_Recommendations_Block_Adminhtml_Widget_Date_Helper extends Mage_Adm
|
|
46 |
$date->setForm($this->_element->getForm());
|
47 |
return $date->getElementHtml();
|
48 |
}
|
49 |
-
}
|
50 |
-
|
46 |
$date->setForm($this->_element->getForm());
|
47 |
return $date->getElementHtml();
|
48 |
}
|
49 |
+
}
|
|
app/code/community/Ntoklo/Recommendations/Helper/Data.php
CHANGED
@@ -39,11 +39,12 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
39 |
/**
|
40 |
* Page types as defined in nToklo API
|
41 |
*/
|
42 |
-
const
|
43 |
-
const
|
44 |
-
const
|
45 |
-
const
|
46 |
-
const
|
|
|
47 |
|
48 |
/**
|
49 |
* Page types other than defined in nToklo API
|
@@ -272,7 +273,15 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
272 |
));
|
273 |
|
274 |
if ($userId = $this->getNtokloUserId()) {
|
275 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
}
|
277 |
|
278 |
// Name
|
@@ -569,18 +578,30 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
|
|
569 |
public function getNtokloUserId() {
|
570 |
/** @var Mage_Customer_Model_Customer $customer */
|
571 |
$customer = Mage::helper('customer')->getCustomer();
|
572 |
-
|
|
|
573 |
return $customer->getId();
|
574 |
}
|
575 |
-
|
576 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
577 |
$visitor = Mage::getSingleton('log/visitor');
|
578 |
-
|
|
|
579 |
return $visitor->getVisitorId();
|
580 |
}
|
581 |
|
582 |
return false;
|
583 |
-
|
584 |
|
585 |
private function _setConfig($path, $value) {
|
586 |
Mage::getModel('core/config')->saveConfig($path, $value );
|
39 |
/**
|
40 |
* Page types as defined in nToklo API
|
41 |
*/
|
42 |
+
const PAGE_CATEGORY_CONVERSION_FUNNEL = 'conversion_funnel';
|
43 |
+
const PAGE_CATEGORY_PRODUCT = 'product';
|
44 |
+
const PAGE_CATEGORY_CONFIRMATION = 'confirmation';
|
45 |
+
const PAGE_CATEGORY_RATE = 'rate';
|
46 |
+
const PAGE_CATEGORY_REVIEW = 'review';
|
47 |
+
const PAGE_CATEGORY_WISHLIST = 'wishlist';
|
48 |
|
49 |
/**
|
50 |
* Page types other than defined in nToklo API
|
273 |
));
|
274 |
|
275 |
if ($userId = $this->getNtokloUserId()) {
|
276 |
+
$visitorId = $this->getNtokloSessionId();
|
277 |
+
$object->setProperties(array(
|
278 |
+
'user_id' => $userId,
|
279 |
+
'visitor_id' => $visitorId
|
280 |
+
));
|
281 |
+
}elseif($visitorId = $this->getNtokloSessionId()){
|
282 |
+
$object->setProperties(array(
|
283 |
+
'visitor_id' => $visitorId
|
284 |
+
));
|
285 |
}
|
286 |
|
287 |
// Name
|
578 |
public function getNtokloUserId() {
|
579 |
/** @var Mage_Customer_Model_Customer $customer */
|
580 |
$customer = Mage::helper('customer')->getCustomer();
|
581 |
+
|
582 |
+
if ($customer->getId()) {
|
583 |
return $customer->getId();
|
584 |
}
|
585 |
+
|
586 |
+
return false;
|
587 |
+
}
|
588 |
+
|
589 |
+
/**
|
590 |
+
* When guest checkout is turn off get session/vistor id merge with user id
|
591 |
+
*
|
592 |
+
* @return string
|
593 |
+
*/
|
594 |
+
|
595 |
+
public function getNtokloSessionId(){
|
596 |
+
/** @var Mage_Log_Model_Visitor $visitor */
|
597 |
$visitor = Mage::getSingleton('log/visitor');
|
598 |
+
|
599 |
+
if ($visitor->getVisitorId()) {
|
600 |
return $visitor->getVisitorId();
|
601 |
}
|
602 |
|
603 |
return false;
|
604 |
+
}
|
605 |
|
606 |
private function _setConfig($path, $value) {
|
607 |
Mage::getModel('core/config')->saveConfig($path, $value );
|
app/code/community/Ntoklo/Recommendations/etc/config.xml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Ntoklo_Recommendations>
|
23 |
-
<version>1.0.
|
24 |
</Ntoklo_Recommendations>
|
25 |
</modules>
|
26 |
<global>
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Ntoklo_Recommendations>
|
23 |
+
<version>1.0.4</version>
|
24 |
</Ntoklo_Recommendations>
|
25 |
</modules>
|
26 |
<global>
|
app/code/community/Ntoklo/Recommendations/sql/ntoklo_setup/{mysql4-install-1.0.3.php → mysql4-install-1.0.4.php}
RENAMED
File without changes
|
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_horisontal.phtml
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* nToklo
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
*
|
12 |
-
* @category Ntoklo
|
13 |
-
* @package Ntoklo_Recommendations
|
14 |
-
* @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
|
15 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
16 |
-
* @author nToklo
|
17 |
-
*/
|
18 |
-
?>
|
19 |
-
|
20 |
-
<?php if (($_products = $this->getItems()) && count($_products)): ?>
|
21 |
-
<!-- nToklo Chart -->
|
22 |
-
<div class="widget-ntoklo-container clearfix" style="clear:both">
|
23 |
-
<?php $_columnCount = $this->getColumnCount(); ?>
|
24 |
-
<div class="nt_wrapper nt_grid nt_orange nt_<?php echo $_columnCount ?>_column">
|
25 |
-
<p class="nt_header"><?php echo $this->getHeader() ?></p>
|
26 |
-
<div class="nt_widget clearfix">
|
27 |
-
<?php $i=0; foreach ($_products as $_product): ?>
|
28 |
-
<?php if ($i++%$_columnCount==0): ?>
|
29 |
-
<div class="nt_row clearfix">
|
30 |
-
<?php endif ?>
|
31 |
-
<div class="nt_item_wrap" style="width:<?php echo (100 / $_columnCount) ?>%">
|
32 |
-
<div class="nt_img_wrap">
|
33 |
-
<a href="<?php echo $_product->getProductUrl() ?>" class="ntoklo_conversion"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail')->resize(100) ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>"></a>
|
34 |
-
</div>
|
35 |
-
<span class="nt_product_title"><?php echo $this->htmlEscape($_product->getName()) ?></span>
|
36 |
-
<span class="nt_product_price"><?php echo Mage::helper('core')->currency($_product->getPrice()); ?></span>
|
37 |
-
<a href="<?php echo $_product->getProductUrl() ?>" class="nt_btn">
|
38 |
-
<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" width="10.853px" height="11.229px" viewBox="0 0 10.853 11.229" enable-background="new 0 0 10.853 11.229" xml:space="preserve">
|
39 |
-
<g>
|
40 |
-
<path fill="#fff" d="M8.825,6.164l-4.367,4.361c-0.154,0.154-0.375,0.248-0.603,0.248c-0.229,0-0.449-0.094-0.604-0.248l-0.509-0.502C2.589,9.862,2.495,9.64,2.495,9.413c0-0.229,0.094-0.449,0.248-0.604l3.255-3.255L2.743,2.305c-0.154-0.16-0.248-0.382-0.248-0.609s0.094-0.449,0.248-0.603L3.252,0.59C3.406,0.43,3.627,0.336,3.855,0.336c0.228,0,0.448,0.094,0.603,0.254l4.367,4.361c0.154,0.153,0.248,0.375,0.248,0.603S8.979,6.003,8.825,6.164z"/>
|
41 |
-
</g>
|
42 |
-
</svg>
|
43 |
-
</a>
|
44 |
-
</div>
|
45 |
-
<?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
|
46 |
-
</div>
|
47 |
-
<?php endif ?>
|
48 |
-
<?php endforeach; ?>
|
49 |
-
</div>
|
50 |
-
<div class="nt_logo"></div>
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
-
<!-- //END nToklo Chart -->
|
54 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_review_short.phtml
DELETED
@@ -1,31 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* nToklo
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
*
|
12 |
-
* @category Ntoklo
|
13 |
-
* @package Ntoklo_Recommendations
|
14 |
-
* @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
|
15 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
16 |
-
* @author nToklo
|
17 |
-
*/
|
18 |
-
?>
|
19 |
-
|
20 |
-
<?php if ($this->getReviewsCount()): ?>
|
21 |
-
<div class="ratings">
|
22 |
-
<?php if ($this->getRatingSummary()):?>
|
23 |
-
<div class="rating-box">
|
24 |
-
<div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
|
25 |
-
</div>
|
26 |
-
<?php endif;?>
|
27 |
-
<span class="amount"><a href="<?php echo $this->getReviewsUrl() ?>" class="ntoklo_conversion"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a></span>
|
28 |
-
</div>
|
29 |
-
<?php elseif ($this->getDisplayIfEmpty()): ?>
|
30 |
-
<p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form" class="ntoklo_conversion"><?php echo $this->__('Be the first to review this product') ?></a></p>
|
31 |
-
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_vertical.phtml
DELETED
@@ -1,45 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* nToklo
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/osl-3.0.php
|
11 |
-
*
|
12 |
-
* @category Ntoklo
|
13 |
-
* @package Ntoklo_Recommendations
|
14 |
-
* @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
|
15 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
16 |
-
* @author nToklo
|
17 |
-
*/
|
18 |
-
?>
|
19 |
-
|
20 |
-
<?php if (($_products = $this->getItems()) && count($_products)): ?>
|
21 |
-
<!-- nToklo Chart -->
|
22 |
-
<div class="widget-ntoklo-container clearfix" style="clear:both">
|
23 |
-
<div class="nt_wrapper nt_column nt_green nt_img_above">
|
24 |
-
<p class="nt_header"><?php echo $this->getHeader() ?></p>
|
25 |
-
<ul class="nt_widget">
|
26 |
-
<?php $i=0; foreach ($_products as $_item): ?>
|
27 |
-
<li>
|
28 |
-
<div class="nt_item_wrap">
|
29 |
-
<div class="nt_img_wrap">
|
30 |
-
<a href="<?php echo $_item->getProductUrl() ?>" class="ntoklo_conversion"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(100) ?>" alt="<?php echo $this->htmlEscape($_item->getName()) ?>"></a>
|
31 |
-
</div>
|
32 |
-
<div class="nt_info_wrap">
|
33 |
-
<span class="nt_product_title"><?php echo $this->htmlEscape($_item->getName()) ?></span>
|
34 |
-
<span class="nt_product_price"><?php echo Mage::helper('core')->currency($_item->getPrice()); ?></span>
|
35 |
-
<a href="<?php echo $_item->getProductUrl() ?>" class="ntoklo_conversion nt_btn"><?php echo $this->__('More details') ?></a>
|
36 |
-
</div>
|
37 |
-
</div>
|
38 |
-
</li>
|
39 |
-
<?php endforeach ?>
|
40 |
-
</ul>
|
41 |
-
<div class="nt_logo"></div>
|
42 |
-
</div>
|
43 |
-
</div>
|
44 |
-
<!-- //END nToklo Chart -->
|
45 |
-
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/etc/modules/Ntoklo_Recommendations.xml
DELETED
@@ -1,30 +0,0 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<!--
|
3 |
-
/**
|
4 |
-
* nToklo
|
5 |
-
*
|
6 |
-
* NOTICE OF LICENSE
|
7 |
-
*
|
8 |
-
* This source file is subject to the Open Software License (OSL 3.0)
|
9 |
-
* that is bundled with this package in the file LICENSE.txt.
|
10 |
-
* It is also available through the world-wide-web at this URL:
|
11 |
-
* http://opensource.org/licenses/osl-3.0.php
|
12 |
-
*
|
13 |
-
* @category Ntoklo
|
14 |
-
* @package Ntoklo_Recommendations
|
15 |
-
* @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
|
16 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
17 |
-
* @author nToklo
|
18 |
-
*/
|
19 |
-
-->
|
20 |
-
<config>
|
21 |
-
<modules>
|
22 |
-
<Ntoklo_Recommendations>
|
23 |
-
<active>true</active>
|
24 |
-
<codePool>community</codePool>
|
25 |
-
<depends>
|
26 |
-
<Mage_Cms />
|
27 |
-
</depends>
|
28 |
-
</Ntoklo_Recommendations>
|
29 |
-
</modules>
|
30 |
-
</config>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/locale/en_US/ntoklo_recommendations.csv
DELETED
@@ -1,16 +0,0 @@
|
|
1 |
-
"Ntoklo Recommendations","Ntoklo Recommendations"
|
2 |
-
"Outputs Ntoklo recommendaded products, regardless page context","Outputs Ntoklo recommendaded products, regardless page context"
|
3 |
-
"Widget type","Widget type"
|
4 |
-
"Header","Header"
|
5 |
-
"Widget's header been displayed on the page.","Widget's header been displayed on the page."
|
6 |
-
"Time Window","Time Window"
|
7 |
-
"The time window for which the charts are requested.","The time window for which the charts are requested."
|
8 |
-
"Max products","Max products"
|
9 |
-
"Limits the number of products displayed in the widget.","Limits the number of products displayed in the widget."
|
10 |
-
"Column count","Column count"
|
11 |
-
"The number of columns used when displaying in <strong>Recommendation Grid Template</strong>.","The number of columns used when displaying in <strong>Recommendation Grid Template</strong>."
|
12 |
-
"Cache lifetime","Cache lifetime"
|
13 |
-
"86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache.","86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache."
|
14 |
-
"Debug","Debug"
|
15 |
-
"Turn this ON to force logging of API call and set the first 4 products from catalog as API response to test the look and feel of the widget.","Turn this ON to force logging of API call and set the first 4 products from catalog as API response to test the look and feel of the widget."
|
16 |
-
"Frontend Template","Frontend Template"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.xml
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ntoklo_recommendations</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
-
<license
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Displays personalised product recommendations and trending product charts through integration with nToklo for retail platform
|
10 |
-
<description>
|
11 |

|
12 |
-
|
13 |
-
|
14 |
-
Utilises native
|
15 |
-
Integrates with your store CMS to account for product categories
|
16 |
-
<notes>
|
17 |
-
<authors><author><name>nToklo</name><user>
|
18 |
-
<date>
|
19 |
-
<time>
|
20 |
-
<contents><target name="magecommunity"><dir name="Ntoklo"><dir name="Recommendations"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Registration.php" hash="6454d0327fb5881aba96beaed86005ac"/></dir></dir></dir></dir><dir name="Widget"><dir name="Date"><file name="Helper.php" hash="
|
21 |
<compatible/>
|
22 |
-
<dependencies
|
23 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>ntoklo_recommendations</name>
|
4 |
+
<version>1.0.4</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>Open Software License (OSL 3.0)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Displays personalised product recommendations and trending product charts through integration with nToklo for retail platform</summary>
|
10 |
+
<description>Features
|
11 |

|
12 |
+
1. Seamlessly Integrates with nToklo for retail recommendations API’s.
|
13 |
+
2. Uses the Open Data Alliance Universal Variable - Generats UniversalVariable JSON object and submits it to nToklo for processing to leverage user behaviour.
|
14 |
+
3. Utilises native widgets to render personalised product recommendations and trending product charts through nToklo API’s.
|
15 |
+
4. Integrates with your store CMS to account for product categories</description>
|
16 |
+
<notes>Conversion optimisation </notes>
|
17 |
+
<authors><author><name>nToklo</name><user>nToklo</user><email>sandra.leske@ntoklo.com</email></author></authors>
|
18 |
+
<date>2014-04-17</date>
|
19 |
+
<time>14:02:10</time>
|
20 |
+
<contents><target name="magecommunity"><dir name="Ntoklo"><dir name="Recommendations"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Registration.php" hash="6454d0327fb5881aba96beaed86005ac"/></dir></dir></dir></dir><dir name="Widget"><dir name="Date"><file name="Helper.php" hash="29592c951ce694efb69397141a679226"/></dir><dir name="Type"><file name="Helper.php" hash="7003dba7c2b54e7dd03013de2f41a4e1"/></dir></dir></dir><file name="Chart.php" hash="2f1f29ce21a7eaf2cda2f576225de839"/><file name="UniversalVariable.php" hash="d98923906642289029a7ef80be5a0c4f"/></dir><dir name="Helper"><file name="Data.php" hash="d60ec0bb71c1c1ac7ec45477dfd0ef78"/></dir><dir name="Model"><dir name="Cache"><file name="UniversalVariable.php" hash="761f465d4fda0e3d48541fc67af5c4b1"/></dir><file name="Observer.php" hash="9a22bdcae4fc457372692b0488f30833"/><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="c76b856838d10860a74c2ec08d47bc87"/></dir></dir><file name="Service.php" hash="842507619406f53f312cb5ef01c37799"/><file name="UniversalVariable.php" hash="7744caef59b5c3f056f89577c108e0f5"/><dir name="Widget"><file name="Type.php" hash="f399f8084a0c9c270c92e5fccd74e50f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aff0945a94da77aab01ef814d14309d5"/><file name="cache.xml" hash="9be6ef2826f8e880e0c2db016787cacf"/><file name="config.xml" hash="c1df941154791751a1cb686f2c08cd54"/><file name="system.xml" hash="d90aad78d74273219bbeb6bd3b38e477"/><file name="widget.xml" hash="e94eaffd9ce677d742161bca542c069b"/></dir><dir name="sql"><dir name="ntoklo_setup"><file name="mysql4-install-1.0.4.php" hash="96c7c0734c5290210b09dbb96f5cfa34"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ntoklo_recommendations.xml" hash="b6649abad9f507fdf0e7b48d11d9a594"/></dir><dir name="template"><dir name="ntoklo"><dir name="recommendations"><file name="universal_variable.phtml" hash="76ab001d6c660f77af83739540cf9edc"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="."><file name="Ntoklo_Recommendations.xml" hash=""/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="ntoklo"><file name="global.css" hash="fd2d2b773d3ce16d41488e9051bad8c8"/><file name="widget.css" hash="2d1a9869e0c5e857965d4158535237f2"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="ntoklo"><file name="util.js" hash="051d37aa940bb1b877435698e1827295"/></dir></dir><dir name="documentation"><dir name="skin"><dir name="img"><file name="cc.png" hash="83f629e3f2c6e94df256a92a0d826079"/><file name="config.png" hash="a0f8540c37bbaa614a6e6818c52b9b1e"/><file name="disablec1.png" hash="3b7a509db5f2228c1187dd169c8a7c34"/><file name="disablec2.png" hash="ce25b484b08735a1890a4871eefd23ef"/><file name="logo.png" hash="5bbc2b3e56f571eb96923185485c3a27"/><file name="widgets_1.png" hash="61c6c6acc64e9bad49e2546d43032767"/><file name="widgets_2.png" hash="a357562e6cb535458c30f8a6c53bd44d"/><file name="widgets_3.png" hash="cc6ec6b496b03e516c29eb8ed63aa7a9"/><file name="widgets_4.png" hash="1feb96648e38c0e95629bf897baeb26b"/></dir><file name="style.css" hash="f544a9e3edc200affa0a9be9af98e878"/></dir><file name="readme.html" hash="76a9aa7ea09fbb80af24ce340f498d13"/></dir></target></contents>
|
21 |
<compatible/>
|
22 |
+
<dependencies><required><php><min>5.3.0</min><max>5.5.1</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package></required></dependencies>
|
23 |
</package>
|
skin/frontend/base/default/css/ntoklo/global.css
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
-
|
2 |
-
body {
|
3 |
font-family: "Source Sans Pro", sans-serif;
|
4 |
font-size: .9em;
|
5 |
}
|
1 |
+
.nt_wrapper {
|
|
|
2 |
font-family: "Source Sans Pro", sans-serif;
|
3 |
font-size: .9em;
|
4 |
}
|
skin/frontend/base/default/images/ntoklo/ntoklo_logo.png
DELETED
Binary file
|
skin/frontend/base/default/images/ntoklo/ntoklo_logo_2x.png
DELETED
Binary file
|