Version Notes
Release 1.0.1.
Download this release
Release Info
Developer | Magento Core Team |
Extension | BlueknowRecommender |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Blueknow/Recommender/Block/System/Config/Form/Field/Version.php +29 -0
- app/code/community/Blueknow/Recommender/Helper/Price.php +58 -15
- app/code/community/Blueknow/Recommender/Model/Product.php +6 -2
- app/code/community/Blueknow/Recommender/documentation/{Blueknow_Recommender_1.0.0_Gui → Blueknow_Recommender_1.0.x_Gui}/314/201a_de_Instalacio/314/201n.pdf +0 -0
- app/code/community/Blueknow/Recommender/documentation/{Blueknow_Recommender_1.0.0_Installation_Guide.pdf → Blueknow_Recommender_1.0.x_Installation_Guide.pdf} +0 -0
- app/code/community/Blueknow/Recommender/documentation/README.txt +24 -11
- app/code/community/Blueknow/Recommender/etc/config.xml +8 -1
- app/code/community/Blueknow/Recommender/etc/system.xml +14 -2
- app/design/adminhtml/default/default/layout/blueknow_recommender.xml +26 -0
- app/design/frontend/default/default/template/blueknow/cart/recommender_widget.phtml +9 -4
- app/design/frontend/default/default/template/blueknow/common/recommender_renderer.phtml +9 -4
- app/design/frontend/default/default/template/blueknow/product/recommender_widget.phtml +9 -4
- app/locale/de_DE/Blueknow_recommender.csv +4 -1
- app/locale/en_US/Blueknow_recommender.csv +4 -1
- app/locale/es_ES/Blueknow_recommender.csv +4 -1
- app/locale/fr_FR/Blueknow_recommender.csv +4 -1
- app/locale/pt_PT/Blueknow_recommender.csv +4 -1
- package.xml +5 -5
- skin/adminhtml/default/default/blueknow_recommender/css/blueknow_recommender.css +9 -0
- skin/adminhtml/default/default/blueknow_recommender/images/blueknow_logo.png +0 -0
- skin/adminhtml/default/default/blueknow_recommender/images/blueknow_logo_small.png +0 -0
app/code/community/Blueknow/Recommender/Block/System/Config/Form/Field/Version.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Current version of the extension shown at backend configuration form.
|
4 |
+
*
|
5 |
+
* DISCLAIMER
|
6 |
+
*
|
7 |
+
* Do not edit or add to this file if you wish to upgrade Blueknow Recommender
|
8 |
+
* extension to newer versions in the future. If you wish to customize it for
|
9 |
+
* your needs please save your changes before upgrading.
|
10 |
+
*
|
11 |
+
* @category Blueknow
|
12 |
+
* @package Blueknow_Recommender
|
13 |
+
* @copyright Copyright (c) 2010 Blueknow, S.L. (http://www.blueknow.com)
|
14 |
+
* @license GNU General Public License
|
15 |
+
* @author <a href="mailto:santi.ameller@blueknow.com">Santiago Ameller</a>
|
16 |
+
* @since 1.0.1
|
17 |
+
*
|
18 |
+
*/
|
19 |
+
class Blueknow_Recommender_Block_System_Config_Form_Field_Version extends Mage_Adminhtml_Block_System_Config_Form_Field {
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Return a simple HTML code with the current version of the extension. It is shown at backend configuration form.
|
23 |
+
* @see Mage_Adminhtml_Block_System_Config_Form_Field::_getElementHtml()
|
24 |
+
*/
|
25 |
+
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element) {
|
26 |
+
$version = (string) Mage::getConfig()->getModuleConfig('Blueknow_Recommender')->version;
|
27 |
+
return '<strong>'.$version.'</strong>';
|
28 |
+
}
|
29 |
+
}
|
app/code/community/Blueknow/Recommender/Helper/Price.php
CHANGED
@@ -19,24 +19,67 @@
|
|
19 |
class Blueknow_Recommender_Helper_Price extends Mage_Core_Helper_Abstract {
|
20 |
|
21 |
/**
|
22 |
-
* Get final price of a given product
|
23 |
* @param Mage_Catalog_Model_Product $product
|
24 |
*/
|
|
|
|
|
25 |
public function getFinalPrice($product) {
|
26 |
-
//
|
27 |
-
$
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
}
|
42 |
}
|
19 |
class Blueknow_Recommender_Helper_Price extends Mage_Core_Helper_Abstract {
|
20 |
|
21 |
/**
|
22 |
+
* Get final price of a given product within currency conversion.
|
23 |
* @param Mage_Catalog_Model_Product $product
|
24 |
*/
|
25 |
+
//[2011-03-14] Issue MAGPLUGIN-2: Grouped, configurable and bundled products are not rendered when price is retrieved.
|
26 |
+
// Price retrieval strategy changed using the product price model.
|
27 |
public function getFinalPrice($product) {
|
28 |
+
//get price according to product type and price model
|
29 |
+
if (isset($product) && $product instanceof Mage_Catalog_Model_Product) {
|
30 |
+
//get product price model
|
31 |
+
$model = $product->getPriceModel();
|
32 |
+
//get product price
|
33 |
+
$price = $model->getFinalPrice(1, $product);
|
34 |
+
if ($price == 0) {
|
35 |
+
$type = $product->getTypeId();
|
36 |
+
switch ($type) {
|
37 |
+
case Mage_Catalog_Model_Product_Type::TYPE_BUNDLE:
|
38 |
+
$price = $this->getBundledProductMinimalPrice($product);
|
39 |
+
break;
|
40 |
+
case Mage_Catalog_Model_Product_Type::TYPE_GROUPED:
|
41 |
+
$price = $this->getGroupedProductMinimalPrice($product);
|
42 |
+
break;
|
43 |
+
default:
|
44 |
+
$price = -1; //invalid price
|
45 |
+
}
|
46 |
+
}
|
47 |
+
//apply currency conversion
|
48 |
+
$price = Mage::helper('core')->currency($price, false, false);
|
49 |
+
} else {
|
50 |
+
$price = -1; //invalid price
|
51 |
}
|
52 |
+
return $price;
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Get bundled product price taking it minimal price.
|
57 |
+
* @param Mage_Catalog_Model_Product $product
|
58 |
+
* @return price
|
59 |
+
* @since 1.0.1.GA (see issue MAGPLUGIN-2)
|
60 |
+
*/
|
61 |
+
protected function getBundledProductMinimalPrice($product) {
|
62 |
+
$price = $product->getMinimalPrice();
|
63 |
+
$price = $price && $price > 0 ? $price : Mage::getModel('bundle/Product_Price')->getPrices($product, 'min');
|
64 |
+
return $price;
|
65 |
+
}
|
66 |
+
|
67 |
+
/**
|
68 |
+
* Get grouped product price as a sum of associated products.
|
69 |
+
* @param Mage_Catalog_Model_Product $groupedProduct
|
70 |
+
* @return price
|
71 |
+
* @since 1.0.1.GA (see issue MAGPLUGIN-2)
|
72 |
+
*/
|
73 |
+
protected function getGroupedProductMinimalPrice($groupedProduct) {
|
74 |
+
$aProductIds = $groupedProduct->getTypeInstance()->getChildrenIds($groupedProduct->getId());
|
75 |
+
$prices = array();
|
76 |
+
foreach ($aProductIds as $ids) {
|
77 |
+
foreach ($ids as $id) {
|
78 |
+
$aProduct = Mage::getModel('catalog/product')->load($id);
|
79 |
+
$prices[] = $aProduct->getPriceModel()->getFinalPrice(null, $aProduct, true);
|
80 |
+
}
|
81 |
+
}
|
82 |
+
asort($prices);
|
83 |
+
return array_shift($prices);
|
84 |
}
|
85 |
}
|
app/code/community/Blueknow/Recommender/Model/Product.php
CHANGED
@@ -97,7 +97,9 @@ class Blueknow_Recommender_Model_Product extends Varien_Object {
|
|
97 |
*/
|
98 |
public function getName() {
|
99 |
if (empty($this->_name) && $this->_hasProduct) {
|
100 |
-
|
|
|
|
|
101 |
}
|
102 |
return $this->_name;
|
103 |
}
|
@@ -130,7 +132,9 @@ class Blueknow_Recommender_Model_Product extends Varien_Object {
|
|
130 |
*/
|
131 |
public function getImageUrl() {
|
132 |
if (empty($this->_imageUrl) && $this->_hasProduct) {
|
133 |
-
|
|
|
|
|
134 |
}
|
135 |
return $this->_imageUrl;
|
136 |
}
|
97 |
*/
|
98 |
public function getName() {
|
99 |
if (empty($this->_name) && $this->_hasProduct) {
|
100 |
+
//[2011-03-14] Issue MAGPLUGIN-4: Quotes in product name causes a JavaScript error.
|
101 |
+
// Calls to trim() and addslashes() functions have been added.
|
102 |
+
$this->_name = trim(addslashes($this->_getProduct()->getName()));
|
103 |
}
|
104 |
return $this->_name;
|
105 |
}
|
132 |
*/
|
133 |
public function getImageUrl() {
|
134 |
if (empty($this->_imageUrl) && $this->_hasProduct) {
|
135 |
+
//[2011-03-14] Issue MAGPLUGIN-1: Track cached images to improve loading time of the widget.
|
136 |
+
//$this->_imageUrl = Mage::helper('catalog/product')->getSmallImageUrl($this->_getProduct()); //it internally deals with no-image products
|
137 |
+
$this->_imageUrl = Mage::helper('catalog/image')->init($this->_getProduct(), 'small_image');
|
138 |
}
|
139 |
return $this->_imageUrl;
|
140 |
}
|
app/code/community/Blueknow/Recommender/documentation/{Blueknow_Recommender_1.0.0_Gui → Blueknow_Recommender_1.0.x_Gui}/314/201a_de_Instalacio/314/201n.pdf
RENAMED
Binary file
|
app/code/community/Blueknow/Recommender/documentation/{Blueknow_Recommender_1.0.0_Installation_Guide.pdf → Blueknow_Recommender_1.0.x_Installation_Guide.pdf}
RENAMED
Binary file
|
app/code/community/Blueknow/Recommender/documentation/README.txt
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/**
|
2 |
* Blueknow Recommender for Magento.
|
3 |
*
|
4 |
-
* @copyright Copyright (c)
|
5 |
* @license GNU General Public License
|
6 |
* @author <a href="mailto:santi.ameller@blueknow.com">Santiago Ameller</a>
|
7 |
*
|
@@ -12,7 +12,7 @@ About the module
|
|
12 |
|
13 |
* Name: Blueknow Recommender for Magento eCommerce platform (v1.4.x).
|
14 |
* Description: Personalized product recommendations for your eCommerce: cross-sell and up-sell.
|
15 |
-
* Version: 1.0.
|
16 |
|
17 |
NOTE: this module has been successfully tested on Magento 1.4.x. If your eCommerce runs under an older version, please contact with us at support@blueknow.com.
|
18 |
|
@@ -55,12 +55,25 @@ How to install
|
|
55 |
Change log
|
56 |
==========
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/**
|
2 |
* Blueknow Recommender for Magento.
|
3 |
*
|
4 |
+
* @copyright Copyright (c) 2009-2011 Blueknow, S.L. (http://www.blueknow.com)
|
5 |
* @license GNU General Public License
|
6 |
* @author <a href="mailto:santi.ameller@blueknow.com">Santiago Ameller</a>
|
7 |
*
|
12 |
|
13 |
* Name: Blueknow Recommender for Magento eCommerce platform (v1.4.x).
|
14 |
* Description: Personalized product recommendations for your eCommerce: cross-sell and up-sell.
|
15 |
+
* Version: 1.0.1.
|
16 |
|
17 |
NOTE: this module has been successfully tested on Magento 1.4.x. If your eCommerce runs under an older version, please contact with us at support@blueknow.com.
|
18 |
|
55 |
Change log
|
56 |
==========
|
57 |
|
58 |
+
Version 1.0.1
|
59 |
+
-------------
|
60 |
+
|
61 |
+
Bug fixing version.
|
62 |
+
|
63 |
+
+ [MAGPLUGIN-1] - Track cached images to improve loading time of the widget.
|
64 |
+
+ [MAGPLUGIN-2] - Grouped, configurable and bundled products are not rendered when price is retrieved.
|
65 |
+
+ [MAGPLUGIN-3] - Unexpected page loading whenever widget is rendered.
|
66 |
+
+ [MAGPLUGIN-4] - Quotes in product name causes a JavaScript error.
|
67 |
+
|
68 |
+
Version 1.0.0
|
69 |
+
-------------
|
70 |
+
|
71 |
+
Initial version.
|
72 |
+
|
73 |
+
+ Tracking of users' products views.
|
74 |
+
+ Tracking of discontinued products.
|
75 |
+
+ Tracking of users' logins.
|
76 |
+
+ Tracking of users' purchases.
|
77 |
+
+ Tracking of discontinued products after a purchase.
|
78 |
+
+ Cross-sell recommendations in product detail page.
|
79 |
+
+ Up-sell recommendations in shopping cart page.
|
app/code/community/Blueknow/Recommender/etc/config.xml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Blueknow_Recommender>
|
23 |
-
<version>1.0.
|
24 |
</Blueknow_Recommender>
|
25 |
</modules>
|
26 |
<global>
|
@@ -122,5 +122,12 @@
|
|
122 |
</blueknow_recommender>
|
123 |
</modules>
|
124 |
</translate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
</adminhtml>
|
126 |
</config>
|
20 |
<config>
|
21 |
<modules>
|
22 |
<Blueknow_Recommender>
|
23 |
+
<version>1.0.1</version>
|
24 |
</Blueknow_Recommender>
|
25 |
</modules>
|
26 |
<global>
|
122 |
</blueknow_recommender>
|
123 |
</modules>
|
124 |
</translate>
|
125 |
+
<layout>
|
126 |
+
<updates>
|
127 |
+
<blueknow_recommender>
|
128 |
+
<file>blueknow_recommender.xml</file>
|
129 |
+
</blueknow_recommender>
|
130 |
+
</updates>
|
131 |
+
</layout>
|
132 |
</adminhtml>
|
133 |
</config>
|
app/code/community/Blueknow/Recommender/etc/system.xml
CHANGED
@@ -22,20 +22,32 @@
|
|
22 |
<blueknow module="blueknow_recommender">
|
23 |
<label>Blueknow Recommender</label>
|
24 |
<tab>service</tab>
|
|
|
|
|
25 |
<frontend_type>text</frontend_type>
|
26 |
<sort_order>999</sort_order>
|
27 |
<show_in_default>1</show_in_default>
|
28 |
<show_in_website>1</show_in_website>
|
29 |
<show_in_store>1</show_in_store>
|
30 |
<groups>
|
31 |
-
<recommender translate="label">
|
32 |
<label>Main configuration</label>
|
|
|
|
|
33 |
<frontend_type>text</frontend_type>
|
34 |
<sort_order>10</sort_order>
|
35 |
<show_in_default>1</show_in_default>
|
36 |
<show_in_website>1</show_in_website>
|
37 |
<show_in_store>1</show_in_store>
|
38 |
<fields>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
<enabled translate="label,comment">
|
40 |
<label>Enable</label>
|
41 |
<comment><![CDATA[Activate/Deactivate Blueknow Recommender.]]></comment>
|
@@ -47,7 +59,7 @@
|
|
47 |
</enabled>
|
48 |
<bk_number translate="comment">
|
49 |
<label>BK number</label>
|
50 |
-
<comment><![CDATA[Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.]]></comment>
|
51 |
<frontend_type>text</frontend_type>
|
52 |
<sort_order>20</sort_order>
|
53 |
<show_in_default>1</show_in_default>
|
22 |
<blueknow module="blueknow_recommender">
|
23 |
<label>Blueknow Recommender</label>
|
24 |
<tab>service</tab>
|
25 |
+
<class>blueknow-recommender-section</class>
|
26 |
+
<header_css>blueknow-recommender-header</header_css>
|
27 |
<frontend_type>text</frontend_type>
|
28 |
<sort_order>999</sort_order>
|
29 |
<show_in_default>1</show_in_default>
|
30 |
<show_in_website>1</show_in_website>
|
31 |
<show_in_store>1</show_in_store>
|
32 |
<groups>
|
33 |
+
<recommender translate="label,comment">
|
34 |
<label>Main configuration</label>
|
35 |
+
<!-- [2011-03-20] Translation of the comment below is not shown, so it is properly translated -->
|
36 |
+
<comment><![CDATA[<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.]]></comment>
|
37 |
<frontend_type>text</frontend_type>
|
38 |
<sort_order>10</sort_order>
|
39 |
<show_in_default>1</show_in_default>
|
40 |
<show_in_website>1</show_in_website>
|
41 |
<show_in_store>1</show_in_store>
|
42 |
<fields>
|
43 |
+
<version translate="label,comment">
|
44 |
+
<label>Version</label>
|
45 |
+
<comment><![CDATA[Current version of the extension.]]></comment>
|
46 |
+
<frontend_model>blueknow_recommender/system_config_form_field_version</frontend_model>
|
47 |
+
<show_in_default>1</show_in_default>
|
48 |
+
<show_in_website>1</show_in_website>
|
49 |
+
<show_in_store>1</show_in_store>
|
50 |
+
</version>
|
51 |
<enabled translate="label,comment">
|
52 |
<label>Enable</label>
|
53 |
<comment><![CDATA[Activate/Deactivate Blueknow Recommender.]]></comment>
|
59 |
</enabled>
|
60 |
<bk_number translate="comment">
|
61 |
<label>BK number</label>
|
62 |
+
<comment><![CDATA[Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.]]></comment>
|
63 |
<frontend_type>text</frontend_type>
|
64 |
<sort_order>20</sort_order>
|
65 |
<show_in_default>1</show_in_default>
|
app/design/adminhtml/default/default/layout/blueknow_recommender.xml
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Blueknow Recommender layout configuration file.
|
5 |
+
*
|
6 |
+
* DISCLAIMER
|
7 |
+
*
|
8 |
+
* Do not edit or add to this file if you wish to upgrade Blueknow Recommender
|
9 |
+
* extension to newer versions in the future. If you wish to customize it for
|
10 |
+
* your needs please save your changes before upgrading.
|
11 |
+
*
|
12 |
+
* @category design
|
13 |
+
* @copyright Copyright (c) 2010 Blueknow, S.L. (http://www.blueknow.com)
|
14 |
+
* @license GNU General Public License
|
15 |
+
* @author <a href="mailto:santi.ameller@blueknow.com">Santiago Ameller</a>
|
16 |
+
* @since 1.0.1
|
17 |
+
*
|
18 |
+
*/
|
19 |
+
-->
|
20 |
+
<layout>
|
21 |
+
<adminhtml_system_config_edit>
|
22 |
+
<reference name="head">
|
23 |
+
<action method="addCss"><name>blueknow_recommender/css/blueknow_recommender.css</name></action>
|
24 |
+
</reference>
|
25 |
+
</adminhtml_system_config_edit>
|
26 |
+
</layout>
|
app/design/frontend/default/default/template/blueknow/cart/recommender_widget.phtml
CHANGED
@@ -59,16 +59,21 @@
|
|
59 |
<div><h2><?php echo $this->__('Customers who bought these products also bought') ?></h2></div>
|
60 |
</div>
|
61 |
|
|
|
|
|
|
|
|
|
|
|
62 |
<div id="blueknow-template" style="display: none; clear: both;">
|
63 |
<div class="products-grid blueknow-products-grid">
|
64 |
<div class="blueknow-product">
|
65 |
-
<a href="
|
66 |
-
<img
|
67 |
</a>
|
68 |
-
<h3 class="product-name"><a href="
|
69 |
<div class="price-box">
|
70 |
<span class="regular-price">
|
71 |
-
<span class="price"
|
72 |
</span>
|
73 |
</div>
|
74 |
</div>
|
59 |
<div><h2><?php echo $this->__('Customers who bought these products also bought') ?></h2></div>
|
60 |
</div>
|
61 |
|
62 |
+
<?php
|
63 |
+
//[2011-03-14] Issue MAGPLUGIN-3: Unexpected page loading whenever widget is rendered.
|
64 |
+
// Header mark of any string-to-replace has been changed from "#" to "$".
|
65 |
+
// Additionally, <img /> tag has been changed to avoid unexpected requests ("src" was replaced by "source").
|
66 |
+
?>
|
67 |
<div id="blueknow-template" style="display: none; clear: both;">
|
68 |
<div class="products-grid blueknow-products-grid">
|
69 |
<div class="blueknow-product">
|
70 |
+
<a href="$url" title="$name" class="product-image blueknow-product-image">
|
71 |
+
<img source="$image" alt="$name" title="$name" width="100" height="100" hspace="0" vspace="0" border="0" />
|
72 |
</a>
|
73 |
+
<h3 class="product-name"><a href="$url" title="$name">$name</a></h3>
|
74 |
<div class="price-box">
|
75 |
<span class="regular-price">
|
76 |
+
<span class="price">$price <?php echo $bConfiguration->getCurrentCurrency()->getSymbol() ?></span>
|
77 |
</span>
|
78 |
</div>
|
79 |
</div>
|
app/design/frontend/default/default/template/blueknow/common/recommender_renderer.phtml
CHANGED
@@ -30,10 +30,15 @@
|
|
30 |
break;
|
31 |
}
|
32 |
var template = templateHolder.innerHTML;
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
37 |
widget += template;
|
38 |
}
|
39 |
var footer = document.getElementById("blueknow-footer");
|
30 |
break;
|
31 |
}
|
32 |
var template = templateHolder.innerHTML;
|
33 |
+
<?php
|
34 |
+
//[2011-03-14] Issue MAGPLUGIN-3: Unexpected page loading whenever widget is rendered.
|
35 |
+
// Header mark of any string-to-replace has been changed from "#" to "$".
|
36 |
+
// Additionally, <img /> tag has been changed to avoid unexpected requests ("src" was replaced by "source").
|
37 |
+
?>
|
38 |
+
template = template.replace(/\$name/g, item.name);
|
39 |
+
template = template.replace(/\$url/g, item.url);
|
40 |
+
template = template.replace(/source="\$image"/g, "src='" + item.image + "'");
|
41 |
+
template = template.replace(/\$price/g, item.price);
|
42 |
widget += template;
|
43 |
}
|
44 |
var footer = document.getElementById("blueknow-footer");
|
app/design/frontend/default/default/template/blueknow/product/recommender_widget.phtml
CHANGED
@@ -48,16 +48,21 @@
|
|
48 |
<div><h2><?php echo $this->__('You may also be interested in the following products') ?></h2></div>
|
49 |
</div>
|
50 |
|
|
|
|
|
|
|
|
|
|
|
51 |
<div id="blueknow-template" style="display: none; clear: both;">
|
52 |
<div class="products-grid blueknow-products-grid">
|
53 |
<div class="blueknow-product">
|
54 |
-
<a href="
|
55 |
-
<img
|
56 |
</a>
|
57 |
-
<h3 class="product-name"><a href="
|
58 |
<div class="price-box">
|
59 |
<span class="regular-price">
|
60 |
-
<span class="price"
|
61 |
</span>
|
62 |
</div>
|
63 |
</div>
|
48 |
<div><h2><?php echo $this->__('You may also be interested in the following products') ?></h2></div>
|
49 |
</div>
|
50 |
|
51 |
+
<?php
|
52 |
+
//[2011-03-14] Issue MAGPLUGIN-3: Unexpected page loading whenever widget is rendered.
|
53 |
+
// Header mark of any string-to-replace has been changed from "#" to "$".
|
54 |
+
// Additionally, <img /> tag has been changed to avoid unexpected requests ("src" was replaced by "source").
|
55 |
+
?>
|
56 |
<div id="blueknow-template" style="display: none; clear: both;">
|
57 |
<div class="products-grid blueknow-products-grid">
|
58 |
<div class="blueknow-product">
|
59 |
+
<a href="$url" title="$name" class="product-image blueknow-product-image">
|
60 |
+
<img source="$image" alt="$name" title="$name" width="125" height="125" hspace="0" vspace="0" border="0" />
|
61 |
</a>
|
62 |
+
<h3 class="product-name"><a href="$url" title="$name">$name</a></h3>
|
63 |
<div class="price-box">
|
64 |
<span class="regular-price">
|
65 |
+
<span class="price">$price <?php echo $bConfiguration->getCurrentCurrency()->getSymbol() ?></span>
|
66 |
</span>
|
67 |
</div>
|
68 |
</div>
|
app/locale/de_DE/Blueknow_recommender.csv
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"Main configuration", "Hauptkonfiguration"
|
|
|
|
|
|
|
2 |
"Enable", "Aktiviert"
|
3 |
"Activate/Deactivate Blueknow Recommender.", "Aktivieren/Deaktivieren Blueknow Recommender."
|
4 |
-
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.", "Eindeutige Kennung zu diesen eCommerce zugeordnet.<br />Brauchen Sie einen? Bekommen Sie es konstenlos <a href='http://www.blueknow.com'>bei</a>."
|
5 |
"Cross-sell recommendations", "Cross-sell Empfehlungen"
|
6 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Aktivieren/deaktivieren cross-sell Empfehlungen auf der Produktseite."
|
7 |
"Recommendations", "Empfehlungen"
|
1 |
"Main configuration", "Hauptkonfiguration"
|
2 |
+
"<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.", "<b>Wichtiger Hinweis:</b> Sobald die Erweiterung installiert ist, wird Ihre Kunden nicht bekommen persönliche Empfehlungen bis mindestens <b>24 Stunden</b> nach. Lesen Sie sorgfältig die <b>Dokumentation</b>, die in der Verlängerung Paket."
|
3 |
+
"Version", "Version"
|
4 |
+
"Current version of the extension.", "Aktuelle Version dieser Erweiterung."
|
5 |
"Enable", "Aktiviert"
|
6 |
"Activate/Deactivate Blueknow Recommender.", "Aktivieren/Deaktivieren Blueknow Recommender."
|
7 |
+
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.", "Eindeutige Kennung zu diesen eCommerce zugeordnet.<br />Brauchen Sie einen? Bekommen Sie es konstenlos <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>bei</a>."
|
8 |
"Cross-sell recommendations", "Cross-sell Empfehlungen"
|
9 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Aktivieren/deaktivieren cross-sell Empfehlungen auf der Produktseite."
|
10 |
"Recommendations", "Empfehlungen"
|
app/locale/en_US/Blueknow_recommender.csv
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"Main configuration", "Main configuration"
|
|
|
|
|
|
|
2 |
"Enable", "Enable"
|
3 |
"Activate/Deactivate Blueknow Recommender.", "Activate/Deactivate Blueknow Recommender."
|
4 |
-
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.", "Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>."
|
5 |
"Cross-sell recommendations", "Cross-sell recommendations"
|
6 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activate/Deactivate cross-sell recommendations in product detail page."
|
7 |
"Recommendations", "Recommendations"
|
1 |
"Main configuration", "Main configuration"
|
2 |
+
"<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.", "<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package."
|
3 |
+
"Version", "Version"
|
4 |
+
"Current version of the extension.", "Current version of the extension."
|
5 |
"Enable", "Enable"
|
6 |
"Activate/Deactivate Blueknow Recommender.", "Activate/Deactivate Blueknow Recommender."
|
7 |
+
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.", "Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>."
|
8 |
"Cross-sell recommendations", "Cross-sell recommendations"
|
9 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activate/Deactivate cross-sell recommendations in product detail page."
|
10 |
"Recommendations", "Recommendations"
|
app/locale/es_ES/Blueknow_recommender.csv
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"Main configuration", "Configuración principal"
|
|
|
|
|
|
|
2 |
"Enable", "Activado"
|
3 |
"Activate/Deactivate Blueknow Recommender.", "Activa/Desactiva Blueknow Recommender."
|
4 |
-
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.", "Identificador único asignado a este eCommerce.<br />¿Necesita uno? Consígalo gratis <a href='http://www.blueknow.com'>aquí</a>."
|
5 |
"Cross-sell recommendations", "Recomendaciones cross-sell"
|
6 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activa/Desactiva las recomendaciones cross-sell en la página de producto."
|
7 |
"Recommendations", "Recomendaciones"
|
1 |
"Main configuration", "Configuración principal"
|
2 |
+
"<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.", "<b>Nota importante:</b> Después de instalar la extensión, sus clientes no obtendrán recomendaciones personalizadas durante las primeras <b>24 horas</b>. Lea detenidamente la <b>documentación</b> incluida en el paquete de la extensión."
|
3 |
+
"Version", "Versión"
|
4 |
+
"Current version of the extension.", "Versión actual de la extensión."
|
5 |
"Enable", "Activado"
|
6 |
"Activate/Deactivate Blueknow Recommender.", "Activa/Desactiva Blueknow Recommender."
|
7 |
+
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.", "Identificador único asignado a este eCommerce.<br />¿Necesita uno? Consígalo gratis <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>aquí</a>."
|
8 |
"Cross-sell recommendations", "Recomendaciones cross-sell"
|
9 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activa/Desactiva las recomendaciones cross-sell en la página de producto."
|
10 |
"Recommendations", "Recomendaciones"
|
app/locale/fr_FR/Blueknow_recommender.csv
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"Main configuration", "Configuration principale"
|
|
|
|
|
|
|
2 |
"Enable", "Active"
|
3 |
"Activate/Deactivate Blueknow Recommender.", "Activer/Désactiver Recommender Blueknow."
|
4 |
-
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.", "Identificateur unique attribué à ce eCommerce.<br />Besoin d'une? Obtenez-le gratuitement <a href='http://www.blueknow.com'>ici</a>."
|
5 |
"Cross-sell recommendations", "Cross-sell recommandations"
|
6 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activer/Désactiver la vente croisée de recommandations dans la page détaillée du produit."
|
7 |
"Recommendations", "Recommandations"
|
1 |
"Main configuration", "Configuration principale"
|
2 |
+
"<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.", "<b>Important note:</b> Après avoir installé l'extension, leurs clients ne reçoivent pas nos recommandations personnalisés au cours des <b>24 premières heures</b>. Lire la <b>documentation</b> inclus dans le pack d'extension."
|
3 |
+
"Version", "Version"
|
4 |
+
"Current version of the extension.", "La version actuelle de l'extension."
|
5 |
"Enable", "Active"
|
6 |
"Activate/Deactivate Blueknow Recommender.", "Activer/Désactiver Recommender Blueknow."
|
7 |
+
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.", "Identificateur unique attribué à ce eCommerce.<br />Besoin d'une? Obtenez-le gratuitement <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>ici</a>."
|
8 |
"Cross-sell recommendations", "Cross-sell recommandations"
|
9 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activer/Désactiver la vente croisée de recommandations dans la page détaillée du produit."
|
10 |
"Recommendations", "Recommandations"
|
app/locale/pt_PT/Blueknow_recommender.csv
CHANGED
@@ -1,7 +1,10 @@
|
|
1 |
"Main configuration", "Configuração principal"
|
|
|
|
|
|
|
2 |
"Enable", "Active"
|
3 |
"Activate/Deactivate Blueknow Recommender.", "Activar/Desactivar Blueknow Recommender."
|
4 |
-
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com'>here</a>.", "Identificador único atribuído a esta eCommerce.<br />Você precisa de um? Obtê-lo gratuitamente <a href='http://www.blueknow.com'>aqui</a>"
|
5 |
"Cross-sell recommendations", "Recomendações cross-sell"
|
6 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activar/Desactivar recomendações cross-sell na página de detalhes do produto."
|
7 |
"Recommendations", "Recomendações"
|
1 |
"Main configuration", "Configuração principal"
|
2 |
+
"<b>Important note:</b> Once the extension is installed, your clients won't get personalized recommendations until at least <b>24 hours</b> after. Read carefully the <b>documentation</b> included in the extension package.", "<b>Importante nota:</b> Depois de instalar a extensão, seus clientes não recebem recomendações personalizadas durante as primeiras <b>24 horas</b>. Leia a <b>documentação</b> incluído no pacote de expansão."
|
3 |
+
"Version", "Versão"
|
4 |
+
"Current version of the extension.", "A versão atual da extensão."
|
5 |
"Enable", "Active"
|
6 |
"Activate/Deactivate Blueknow Recommender.", "Activar/Desactivar Blueknow Recommender."
|
7 |
+
"Unique identifier assigned to this eCommerce.<br />Do you need one? Obtain it for free at <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>here</a>.", "Identificador único atribuído a esta eCommerce.<br />Você precisa de um? Obtê-lo gratuitamente <a href='http://www.blueknow.com?utm_source=magentocommerce.com&utm_medium=backoffice&utm_campaign=blueknow-magento-extension'>aqui</a>"
|
8 |
"Cross-sell recommendations", "Recomendações cross-sell"
|
9 |
"Activate/Deactivate cross-sell recommendations in product detail page.", "Activar/Desactivar recomendações cross-sell na página de detalhes do produto."
|
10 |
"Recommendations", "Recomendações"
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BlueknowRecommender</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License</license>
|
7 |
<channel>community</channel>
|
@@ -10,11 +10,11 @@
|
|
10 |
<description>Module that allows cross-selling in the product template and up-selling in the shopping cart. The module is based on a recommendation service similar to that used by Amazon in their own shop. The basis of recommendations are product purchases and visits by users. They are used to display the most relevant products to the user. It has been demonstrated that Blueknow recommender can increase sales between 10% and 30% and is able to recommend products in 70% of orders made.
|
11 |
|
12 |
For more information please visit http://www.blueknow.com</description>
|
13 |
-
<notes>Release 1.0.
|
14 |
<authors><author><name>Santiago Ameller</name><user>auto-converted</user><email>santi.ameller@blueknow.com</email></author></authors>
|
15 |
-
<date>2011-03-
|
16 |
-
<time>
|
17 |
-
<contents><target name="
|
18 |
<compatible/>
|
19 |
<dependencies/>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>BlueknowRecommender</name>
|
4 |
+
<version>1.0.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License</license>
|
7 |
<channel>community</channel>
|
10 |
<description>Module that allows cross-selling in the product template and up-selling in the shopping cart. The module is based on a recommendation service similar to that used by Amazon in their own shop. The basis of recommendations are product purchases and visits by users. They are used to display the most relevant products to the user. It has been demonstrated that Blueknow recommender can increase sales between 10% and 30% and is able to recommend products in 70% of orders made.
|
11 |
|
12 |
For more information please visit http://www.blueknow.com</description>
|
13 |
+
<notes>Release 1.0.1.</notes>
|
14 |
<authors><author><name>Santiago Ameller</name><user>auto-converted</user><email>santi.ameller@blueknow.com</email></author></authors>
|
15 |
+
<date>2011-03-21</date>
|
16 |
+
<time>14:29:32</time>
|
17 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="blueknow_recommender"><dir name="css"><file name="blueknow_recommender.css" hash="ad0664b53b83588fe76d8a874f46f8d1"/></dir><dir name="images"><file name="blueknow_logo.png" hash="5e334e84baad3ff73cf5ce7199c0c6b6"/><file name="blueknow_logo_small.png" hash="ea72a7c4e407de66dfd13af998a50c48"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="blueknow_recommender.xml" hash="f82f49ade230a5437cf05dd0d5ef8815"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="layout"><file name="blueknow_recommender.xml" hash="c1a38151dd8edf26dac6353e123fe11d"/></dir><dir name="template"><dir name="blueknow"><dir name="cart"><file name="recommender.phtml" hash="5983f4f54112d28d168a85543ffd9ae6"/><file name="recommender_widget.phtml" hash="dff90dc32442721f1a5454e81d95f127"/></dir><dir name="checkout"><file name="tracker.phtml" hash="982575d1c97568a33745f3e65170d1d3"/></dir><dir name="common"><file name="recommender_renderer.phtml" hash="a317ddace33c9ea0b0f98ceaf2d193d7"/><file name="recommender_widget_footer.phtml" hash="49e0aa4c1c8927f02e5d392a75e978fa"/></dir><dir name="customer"><file name="tracker.phtml" hash="ade85c48fc7a6c243c65144bf4e14808"/></dir><dir name="product"><file name="recommender.phtml" hash="cec47fca009c98020233fe99b5175873"/><file name="recommender_widget.phtml" hash="9bead027707f6248a23f9d1169bde971"/><file name="tracker.phtml" hash="91ff2989519f59a991dc08d71fb414ec"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Blueknow"><dir name="Recommender"><dir name="Block"><dir name="Cart"><file name="Recommender.php" hash="1e79213c3ffe5d477f7d25a36c953691"/></dir><dir name="Checkout"><file name="Tracker.php" hash="feee57fe34d5a14e186926d11dcb77d4"/></dir><dir name="Customer"><file name="Tracker.php" hash="8cdd6e7e35efe0c75f5278281d0cb739"/></dir><dir name="Product"><file name="Base.php" hash="37779f846c8f51ab8621d23eb86a491e"/><file name="Recommender.php" hash="b1a400c8cf5c807b6a55703d0d03ee3f"/><file name="Tracker.php" hash="e25aad30c4d5e903008b8b5e346f0974"/></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Version.php" hash="cfa74a397c47acb703cda95e87b289ec"/></dir></dir></dir></dir><file name="Base.php" hash="38840c162843e9d72ed049e0d86480b5"/></dir><dir name="documentation"><file name="Blueknow_Recommender_1.0.x_Guía_de_Instalación.pdf" hash="38e060bb94b8a30afa5d269d2cb69815"/><file name="Blueknow_Recommender_1.0.x_Installation_Guide.pdf" hash="b2e14bcec9d3a4d0d9822b2d90f2ca07"/><file name="README.txt" hash="4d925e7467ce6aac0fc6f081eef3562c"/></dir><dir name="etc"><file name="config.xml" hash="b7b780be9f9aff32aa18acc6cc262ac3"/><file name="system.xml" hash="918d4206cd941f5e9d442e0a93cac7f4"/></dir><dir name="Helper"><file name="Category.php" hash="28e9cb1ba4760dca9d57fee7c362d92e"/><file name="Currency.php" hash="defb0558caf4b99ff51e625224435baa"/><file name="Data.php" hash="0ce272b09e25400deea10052796d8047"/><file name="Price.php" hash="504f55db38c4af3cdbe5958d029e51e3"/></dir><dir name="Model"><dir name="Checkout"><file name="Order.php" hash="528094dd22597db76f017c692043e56b"/><file name="Product.php" hash="5955c509457ae609c284f7652eeda7f1"/></dir><dir name="Source"><file name="Numberofrecommendations.php" hash="04a110e6a8e39c8c142c6982be55dd36"/></dir><file name="Cart.php" hash="5b6a6ccbe8da00048ec24dccd455304f"/><file name="Checkout.php" hash="d78caa7cf4d062de5da8def126c50a6b"/><file name="Configuration.php" hash="d027375e3d57332ba62bfe2856a149bd"/><file name="Currency.php" hash="ee88d48c3fedd180783ce8dfe5571266"/><file name="Customer.php" hash="80dd27495bd8ef3489216c9673e50863"/><file name="Observer.php" hash="4ee2d6b1f573449292a735c9f09e8bbc"/><file name="Product.php" hash="f85dea5c807db1e604c7d072a6e95aca"/><file name="Session.php" hash="7ebb42754b21e64cff7f8c6dec561387"/></dir><dir name="sql"><dir name="recommender_setup"><file name="uninstall.sql" hash="35ccfbefcb8b6336b0caad057eb4c330"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_DE"><file name="Blueknow_recommender.csv" hash="a0f021ed74d1abd80176ffdd96350a99"/></dir><dir name="en_US"><file name="Blueknow_recommender.csv" hash="f3c95e94c4a490081ff4ec90d165cb98"/></dir><dir name="es_ES"><file name="Blueknow_recommender.csv" hash="11b9c3cf45523922d57c3c6f7abb80d8"/></dir><dir name="fr_FR"><file name="Blueknow_recommender.csv" hash="29e3afa26e6ca7d1646eb8ffabca28fb"/></dir><dir name="pt_PT"><file name="Blueknow_recommender.csv" hash="a8ce2904ec6de4ed17cc92d917e17e4e"/></dir></target><target name="mageetc"><dir name="modules"><file name="Blueknow_Recommender.xml" hash="792bec9432901b7ce09d9f40d8312b2e"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies/>
|
20 |
</package>
|
skin/adminhtml/default/default/blueknow_recommender/css/blueknow_recommender.css
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*Backoffice Blueknow option*/
|
2 |
+
ul.tabs a.blueknow-recommender-section,
|
3 |
+
ul.tabs a.blueknow-recommender-section:hover { background:url(../../images/tabs_span_bg.gif) repeat-x 0 100%; border-bottom:none; padding:0.5em 0.5em 0.28em 1.5em; }
|
4 |
+
ul.tabs a.blueknow-recommender-section:hover { background-color:#d8e6e6; }
|
5 |
+
ul.tabs a.blueknow-recommender-section.active, ul.tabs a.blueknow-recommender-section.active:hover { background-color:#fff; }
|
6 |
+
ul.tabs a.blueknow-recommender-section span,
|
7 |
+
ul.tabs a.blueknow-recommender-section:hover span { background:url(../images/blueknow_logo_small.png) no-repeat 0 0; height:0; overflow:hidden; padding:18px 0 0; width:125px; }
|
8 |
+
/*Backoffice Blueknow header*/
|
9 |
+
h3.blueknow-recommender-header { background: url("../images/blueknow_logo.png") no-repeat scroll 0 0 transparent; height: 0; overflow: hidden; padding: 40px 0 0; width: 151px; }
|
skin/adminhtml/default/default/blueknow_recommender/images/blueknow_logo.png
ADDED
Binary file
|
skin/adminhtml/default/default/blueknow_recommender/images/blueknow_logo_small.png
ADDED
Binary file
|