StickyProduct - Version 0.2.0

Version Notes

changes and bug fixes

Download this release

Release Info

Developer shiv kumar singh
Extension StickyProduct
Version 0.2.0
Comparing to
See all releases


Code changes from version 0.1.0 to 0.2.0

app/code/local/ConversionBug/Core/Block/Info.php CHANGED
@@ -9,7 +9,7 @@ class ConversionBug_Core_Block_Info extends Mage_Adminhtml_Block_Template {
9
  protected function _toHtml() {
10
  $section = $this->getAction()->getRequest()->getParam('section', false);
11
  if ($section == 'cbstore') {
12
- return parent::_toHtml();
13
  } else {
14
  return '';
15
  }
@@ -33,7 +33,7 @@ class ConversionBug_Core_Block_Info extends Mage_Adminhtml_Block_Template {
33
  }
34
  }
35
 
36
- public function getExtensions() {
37
  $data = array();
38
  try {
39
  $file = Mage::getUrl() . 'product.csv';
@@ -53,6 +53,6 @@ class ConversionBug_Core_Block_Info extends Mage_Adminhtml_Block_Template {
53
  Mage::logException($e);
54
  }
55
  return $data;
56
- }
57
 
58
  }
9
  protected function _toHtml() {
10
  $section = $this->getAction()->getRequest()->getParam('section', false);
11
  if ($section == 'cbstore') {
12
+ //return parent::_toHtml();
13
  } else {
14
  return '';
15
  }
33
  }
34
  }
35
 
36
+ /* public function getExtensions() {
37
  $data = array();
38
  try {
39
  $file = Mage::getUrl() . 'product.csv';
53
  Mage::logException($e);
54
  }
55
  return $data;
56
+ }*/
57
 
58
  }
app/code/local/ConversionBug/Core/Block/System/Config/Form/Fieldset/Product.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ class ConversionBug_Core_Block_System_Config_Form_Fieldset_Product extends Mage_Adminhtml_Block_System_Config_Form_Fieldset
3
+ {
4
+
5
+ protected $_dummyElement;
6
+ protected $_fieldRenderer;
7
+ protected $_values;
8
+
9
+ public function render(Varien_Data_Form_Element_Abstract $element)
10
+ {
11
+ $html = $this->getLayout()->createBlock('core/template')->setTemplate('conversionbugcore/info.phtml')->toHtml();
12
+
13
+ return $html;
14
+
15
+
16
+ }
17
+
18
+
19
+ }
app/code/local/ConversionBug/Core/Block/System/Config/Form/Fieldset/Store.php CHANGED
@@ -8,7 +8,8 @@ class ConversionBug_Core_Block_System_Config_Form_Fieldset_Store extends Mage_Ad
8
 
9
  public function render(Varien_Data_Form_Element_Abstract $element)
10
  {
11
- return '<div id="' . $element->getId() . '"></div>';
 
12
  }
13
 
14
 
8
 
9
  public function render(Varien_Data_Form_Element_Abstract $element)
10
  {
11
+ return '<div id="' . $element->getId() . '"></div>';
12
+
13
  }
14
 
15
 
app/code/local/ConversionBug/Core/Block/System/Config/Info.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
- class ConversionBug_Core_Block_System_Config_Info
4
- extends Mage_Adminhtml_Block_Abstract
5
  implements Varien_Data_Form_Element_Renderer_Interface
6
  {
7
 
@@ -13,17 +12,36 @@ class ConversionBug_Core_Block_System_Config_Info
13
  */
14
  public function render(Varien_Data_Form_Element_Abstract $element)
15
  {
16
- $html = <<<HTML
17
- <div class="cb-intro">
18
- <div class="content">
19
- <h1>CONVERSIONbug</h1>
20
- <p>We want to change the way you look at your website</p>
21
- <p><span>Visit Us: </span><a href="http://www.conversionbug.com/">www.conversionbug.com</a></p>
22
- <p><span>Contact Us: </span><a href="mailto:support@conversionbug.com">support@conversionbug.com</a></p>
23
- <p><span>Skype: </span><a href="#">convertsionbug</a></p>
24
- </div>
25
- <div class="cb-pattern"></div>
26
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  HTML;
28
 
29
  return $html;
1
  <?php
2
 
3
+ class ConversionBug_Core_Block_System_Config_Info extends Mage_Adminhtml_Block_Abstract
 
4
  implements Varien_Data_Form_Element_Renderer_Interface
5
  {
6
 
12
  */
13
  public function render(Varien_Data_Form_Element_Abstract $element)
14
  {
15
+ $adminUser = Mage::getSingleton('admin/session');
16
+ $adminEmail = $adminUser->getUser()->getEmail();
17
+ $url = Mage::getBaseUrl();
18
+ $ip = $_SERVER['REMOTE_ADDR'];
19
+
20
+ $html = <<<HTML
21
+ <div class="cb-intro">
22
+ <div class="content">
23
+ <div class="cb-pattern"></div>
24
+ <div class="cb-details">
25
+ <ul class="list-inline">
26
+ <li class="cb-web">
27
+ <a href="http://www.conversionbug.com/" target="_blank">www.conversionbug.com</a>
28
+ </li>
29
+ <li class="cb-mail">
30
+ <a href="mailto:support@conversionbug.com">support@conversionbug.com</a>
31
+ </li>
32
+ <li class="cb-skype">
33
+ <a href="#">convertsionbug</a>
34
+ </li>
35
+ <ul>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ <script>
40
+ var email = "$adminEmail",
41
+ url = "$url",
42
+ ip = "$ip";
43
+ conversionbug.init(url,email,ip );
44
+ </script>
45
  HTML;
46
 
47
  return $html;
app/code/local/ConversionBug/Core/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <ConversionBug_Core>
5
- <version>0.1.0</version>
6
  </ConversionBug_Core>
7
  </modules>
8
  <adminhtml>
2
  <config>
3
  <modules>
4
  <ConversionBug_Core>
5
+ <version>0.2.0</version>
6
  </ConversionBug_Core>
7
  </modules>
8
  <adminhtml>
app/code/local/ConversionBug/Core/etc/system.xml CHANGED
@@ -19,23 +19,33 @@
19
  <show_in_website>0</show_in_website>
20
  <show_in_store>0</show_in_store>
21
  <groups>
22
- <!-- <extensions translate="label">
23
- <label>CB Extensions Store</label>
24
- <frontend_model>cbcore/system_config_info</frontend_model>
25
- <sort_order>10</sort_order>
26
- <show_in_default>1</show_in_default>
27
- <show_in_website>1</show_in_website>
28
- <show_in_store>1</show_in_store>
29
- </extensions>-->
30
- <extension translate="label">
31
- <label>CB Extensions Store</label>
32
- <frontend_type>text</frontend_type>
33
- <frontend_model>cbcore/system_config_form_fieldset_store</frontend_model>
34
- <sort_order>11</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
- </extension>
 
 
 
 
 
 
 
 
 
 
39
  </groups>
40
  </cbstore>
41
  </sections>
19
  <show_in_website>0</show_in_website>
20
  <show_in_store>0</show_in_store>
21
  <groups>
22
+ <extensions translate="label">
23
+ <label>CB Extensions Store</label>
24
+ <frontend_model>cbcore/system_config_info</frontend_model>
25
+ <sort_order>10</sort_order>
26
+ <show_in_default>1</show_in_default>
27
+ <show_in_website>1</show_in_website>
28
+ <show_in_store>1</show_in_store>
29
+ </extensions>
30
+ <extension translate="label">
31
+ <label>CB Extensions Store</label>
32
+ <frontend_type>text</frontend_type>
33
+ <frontend_model>cbcore/system_config_form_fieldset_store</frontend_model>
34
+ <sort_order>11</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
+ </extension>
39
+
40
+ <extension translate="label">
41
+ <label>CB Extensions Store</label>
42
+ <frontend_type>text</frontend_type>
43
+ <frontend_model>cbcore/system_config_form_fieldset_product</frontend_model>
44
+ <sort_order>12</sort_order>
45
+ <show_in_default>1</show_in_default>
46
+ <show_in_website>1</show_in_website>
47
+ <show_in_store>1</show_in_store>
48
+ </extension>
49
  </groups>
50
  </cbstore>
51
  </sections>
app/code/local/ConversionBug/Stickyproductsidebar/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <ConversionBug_Stickyproductsidebar>
5
- <version>0.1.0</version>
6
  </ConversionBug_Stickyproductsidebar>
7
  </modules>
8
  <frontend>
2
  <config>
3
  <modules>
4
  <ConversionBug_Stickyproductsidebar>
5
+ <version>0.2.0</version>
6
  </ConversionBug_Stickyproductsidebar>
7
  </modules>
8
  <frontend>
app/design/adminhtml/default/default/layout/conversionbugcore.xml CHANGED
@@ -5,6 +5,9 @@
5
  <action method="addCss">
6
  <name>conversionbug/core/core.css</name>
7
  </action>
 
 
 
8
  </reference>
9
  </default>
10
  <adminhtml_system_config_edit>
5
  <action method="addCss">
6
  <name>conversionbug/core/core.css</name>
7
  </action>
8
+ <action method="addJs">
9
+ <name>conversionbug/core/conversion.js</name>
10
+ </action>
11
  </reference>
12
  </default>
13
  <adminhtml_system_config_edit>
app/design/adminhtml/default/default/template/conversionbugcore/info.phtml CHANGED
@@ -1,43 +1,49 @@
1
  <script type="text/javascript">
2
  //<![CDATA[
3
- jQuery(document).ready(function ($) {
4
- $('.content-header').remove();
5
- });
6
  </script>
7
- <div class="cbstore-block">
8
- <!--<h3 class="store-extensions-header"><?php echo $this->__('Featured Extensions') ?></h3>-->
9
- <div class="cb-intro">
10
- <div class="content">
11
- <h1>CONVERSIONbug</h1>
12
- <p>We want to change the way you look at your website</p>
13
- <p><span>Visit Us: </span><a href="http://www.conversionbug.com/">www.conversionbug.com</a></p>
14
- <p><span>Contact Us: </span><a href="mailto:support@conversionbug.com">support@conversionbug.com</a></p>
15
- <p><span>Skype: </span><a href="#">conversionbug</a></p>
16
- </div>
17
- <div class="cb-pattern"></div>
18
- </div>
19
  <?php
20
- $collection = $this->getExtensions();
21
- //echo "<pre>";print_r($collection);
 
 
 
 
22
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
- <?php $i = 0;
25
- foreach ($collection as $product): ?>
26
- <?php if ($i == 0) {
27
- $i++;
28
- continue;
29
- } ?>
30
- <div class="item-extensions">
31
- <div class="image">
32
- <a href="<?php echo $product[0] ?>" target="_blank"><img src="<?php echo $product[1] ?>"/></a>
33
- </div>
34
- <div class="title">
35
- <a href="<?php echo $product[0] ?>" target="_blank"><?php echo $product[2] ?></a>
36
- </div>
37
- <div class="price">$<?php echo $product[3] ?></div>
38
  </div>
39
- <?php ++$i; ?>
40
- <?php endforeach; ?>
41
- </div>
42
 
43
 
1
  <script type="text/javascript">
2
  //<![CDATA[
3
+ // jQuery(document).ready(function ($) {
4
+ // $('.content-header').remove();
5
+ //});
6
  </script>
7
+
 
 
 
 
 
 
 
 
 
 
 
8
  <?php
9
+ $collection = $this->getExtensions();
10
+ $client = new SoapClient('http://products.conversionbug.com/api/soap/?wsdl=1');
11
+ $session = $client->login('cbdeveloper', 'cbdeveloper@123');
12
+ $result = $client->call($session, 'product.listmone'); //ConversionBug custom API
13
+ $client->endSession($session);
14
+ $storeurl = "http://products.conversionbug.com/";
15
  ?>
16
+ <?php
17
+
18
+ ?>
19
+ <div class="cb-products">
20
+ <ul class="item-extensions">
21
+ <?php foreach($result as $products){?>
22
+ <?php if($products['status'] != '2'){?>
23
+ <li>
24
+ <div class="images">
25
+ <a href="<?php echo $storeurl.$products['url_path'] ?>" target="_blank"><img src="<?php echo $storeurl. 'media/catalog/product/'.$products['image'] ?>"/></a>
26
+ </div>
27
+ <div class="title">
28
+ <a href="<?php echo $storeurl.$products['url_path'] ?>" target="_blank"><?php echo $products['name'] ?></a>
29
+ </div>
30
+ <div class="product-desc">
31
+ <?php echo $products['short_description'] ?>
32
+ </div>
33
+ <div class="rating-price">
34
+ <div class="rating"><?php echo number_format($products['ratings'],1,'.',''); ?></div>
35
+ <div class="price">$<?php echo substr($products['price'], 0, -2) ?></div>
36
+ </div>
37
+ </li>
38
 
39
+ <?php
40
+ }
41
+
42
+ }
43
+ ?>
44
+ </ul>
 
 
 
 
 
 
 
 
45
  </div>
46
+
47
+
 
48
 
49
 
app/etc/modules/ConversionBug_Stickyproductsidebar.xml CHANGED
@@ -25,7 +25,7 @@
25
  <config>
26
  <modules>
27
  <ConversionBug_Stickyproductsidebar>
28
- <active>false</active>
29
  <codePool>local</codePool>
30
  <depends><ConversionBug_Core/></depends>
31
  </ConversionBug_Stickyproductsidebar>
25
  <config>
26
  <modules>
27
  <ConversionBug_Stickyproductsidebar>
28
+ <active>true</active>
29
  <codePool>local</codePool>
30
  <depends><ConversionBug_Core/></depends>
31
  </ConversionBug_Stickyproductsidebar>
js/conversionbug/core/conversion.js ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ var conversionbug = {
2
+ init: function (url,email) {
3
+ fetch("http://products.conversionbug.com/visitor/index/index", {
4
+ method: "POST",
5
+ headers: {
6
+ "Content-Type": "application/x-www-form-urlencoded"
7
+ },
8
+ body: "email="+email+"&url="+url+"&ip="+ip
9
+ }).then(function(res) {
10
+ if (res.ok) {
11
+ ///alert("Perfect! Your settings are saved.");
12
+ console.log("Perfect! Your settings are saved from js libary.");
13
+ } else if (res.status == 401) {
14
+ console.log("Oops! You are not authorized.");
15
+ }
16
+ }, function(e) {
17
+ console.log("Error submitting form!");
18
+ });
19
+ }
20
+ };
media/import/product.csv DELETED
@@ -1,6 +0,0 @@
1
- URL,Prod_Image,Product_Name,Discount_Price
2
- http://magestore.conversionbug.com/exit-intent-social-popup.html,http://magestore.conversionbug.com/media/catalog/product/b/a/banner_1.png,Social Login With Exit Intent,120
3
- http://magestore.conversionbug.com/filter-products-by-zip-code.html,http://magestore.conversionbug.com/media/catalog/product/c/b/cb_zip_code_banner_1.png,Filter Products By ZIP code,80
4
- http://magestore.conversionbug.com/sticky-product.html,http://magestore.conversionbug.com/media/catalog/product/s/t/stickproduct_banner_1.png,Sticky Product Bar,60
5
- http://magestore.conversionbug.com/replenish-products.html,http://magestore.conversionbug.com/media/catalog/product/b/a/banner_1_1.png,Replenish Products Emailer,75
6
- http://magestore.conversionbug.com/cookies-based-recently-viewed-products.html,http://magestore.conversionbug.com/media/catalog/product/b/a/banner_1_2.png,Cookies Based Recently Viewed Products,75
 
 
 
 
 
 
package.xml CHANGED
@@ -1,38 +1,47 @@
1
  <?xml version="1.0"?>
2
  <package>
3
- <name>ConversionBug_Stickyproductsidebar</name>
4
- <version>0.1.0</version>
5
  <stability>stable</stability>
6
- <license>OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>The sticky product extension has been designed to increase the sales for e-commerce stores. &#xD;
10
- </summary>
11
- <description>&lt;p&gt;The sticky product extension has been designed to increase the sales for e-commerce stores. Generally, while looking for products the visitor goes to the bottom and loses the information about what he/she was viewing. Whenever the user goes below the product details for checking out other suggestions, the details of the currently viewed product come up either in the sidebar or at the top bar. It enables users to compare details of the current and similar products side by side. The extension increases the probability of the customer to buy the product.&lt;/p&gt;&#xD;
12
- &lt;p&gt;&lt;b&gt;How to use this extension for higher conversions?&lt;/b&gt;&lt;/p&gt;&#xD;
13
- &lt;p&gt;Use this extension to show your visitors the details about the current product they are viewing to increase the chances of them buying the product. We implemented this extension on some of our client websites and the results were amazing, which proved that the extension is conversion friendly for increasing sales for the e-commerce stores.&lt;/p&gt;&#xD;
14
- &lt;p&gt;&lt;b&gt;Special features of the sticky product extension&lt;/b&gt;&lt;/p&gt;&#xD;
15
- &lt;ol&gt;&lt;li&gt;Product details stick on the top bar and the side bar&lt;/li&gt;&#xD;
16
- &lt;li&gt;Conversion focused design&lt;/li&gt;&#xD;
17
- &lt;li&gt;Fully customizable&lt;/li&gt;&#xD;
18
- &lt;li&gt;Responsive across all devices&lt;/li&gt;&lt;/ol&gt;&#xD;
19
- &lt;ol&gt;&lt;li&gt;&lt;p&gt;&lt;b&gt;Product details stick on the top bar and the side bar&lt;/b&gt;&lt;/p&gt;&#xD;
20
- &lt;p&gt;The extension is very helpful in showing the customers the details of the product which is currently being viewed by the user so that he doesn&#x2019;t lose the info about the same.&lt;/p&gt;&lt;/li&gt;&#xD;
21
- &lt;li&gt;&lt;p&gt;&lt;b&gt;Conversion focused design&lt;/b&gt;&lt;/p&gt;&#xD;
22
- &lt;p&gt;The extension has been designed after deep study of the user behavior and we have designed to make it user as well as conversion focused. &lt;/p&gt;&lt;/li&gt;&#xD;
23
- &lt;li&gt;&lt;p&gt;&lt;b&gt;Fully customizable&lt;/b&gt;&lt;/p&gt;&#xD;
24
- &lt;p&gt;The admin interface for this extension is very easy to understand. This extension can be easily customized based on the business requirement.&lt;/p&gt;&lt;/li&gt;&#xD;
25
- &lt;li&gt;&lt;p&gt;&lt;b&gt;Responsive across all devices&lt;/b&gt;&lt;/p&gt;&#xD;
26
- &lt;p&gt;The sticky product extension works effortlessly across all the devices. From mobile to tablet and desktop to widescreen, this extension does its work flawlessly.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&#xD;
27
- &lt;b&gt;Compatible with:&lt;/b&gt;&#xD;
28
- &lt;ul&gt;&lt;li&gt;&lt;b&gt;Community: &lt;/b&gt;1.9.2&lt;/li&gt;&lt;/ul&gt;&#xD;
29
- &#xD;
30
- </description>
31
- <notes>First release</notes>
 
 
 
 
 
 
 
 
 
32
  <authors><author><name>shiv kumar singh</name><user>shivam</user><email>shivam.kumar@conversionbug.com</email></author></authors>
33
- <date>2016-05-12</date>
34
- <time>06:19:35</time>
35
- <contents><target name="magelocal"><dir name="ConversionBug"><dir name="Stickyproductsidebar"><dir name="Helper"><file name="Data.php" hash="7e1bd9f4662cb7431e7b8c4ae4359140"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75f6233af6f4397e3e67b9059ed3907f"/><file name="config.xml" hash="8bb8aa67912f45b8a2f737241ddaa548"/><file name="system.xml" hash="1452bbc0ca52458445ba3f934a950174"/></dir></dir><dir name="Core"><dir name="Block"><file name="Info.php" hash="90e4c31958204ac9e40b2293c6372296"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Store.php" hash="15df9afac0ea33498b03ad544e0bc8c5"/></dir></dir><file name="Info.php" hash="a0601dea3e6e7d3c3f7f4ac7544dd249"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fd937326042c8165a1df0faca629db7f"/></dir><dir name="Model"><file name="Feed.php" hash="9266834784c19c05f6cf06a3acc69acc"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Display.php" hash="fd271787952e4f1b1ce98a0a68cb37cb"/><file name="Footer.php" hash="7c13df78247e0cc2fe1e11ddff2cdcdf"/><file name="Options.php" hash="a26a31999e38a540292ff24e5ed33428"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7164e6536faa45bccbf4a09bc6fba886"/><file name="config.xml" hash="c7b1ac437420d8bb3160e561c18d10e6"/><file name="system.xml" hash="8371de258efa47ceff95e858c6c09603"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ConversionBug_Stickyproductsidebar.xml" hash="1f37a6a1af6d6318d4bb405ced36fbec"/><file name="ConversionBug_Core.xml" hash="537de773791fc95a5a3e340de82162f7"/></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cb_stickyproductsidebar.xml" hash="9c7b70ef9707b2f51ca96c822de83821"/></dir><dir name="template"><dir name="conversionbug"><dir name="stickyproductsidebar"><file name="js.phtml" hash="5fcf620e44bf6e7dfbefb1afab5f8cc0"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="conversionbugcore.xml" hash="12ae2f9f2a96093fcefd593fed15e7b3"/></dir><dir name="template"><dir name="conversionbugcore"><file name="info.phtml" hash="4099f81b6ea49b517ef4354fd8bcb0a2"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="conversionbug"><dir name="stickyproductsidebar"><file name="stickEmUp.js" hash="cf9132fe3b5d04eb9505cd801970fa41"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="conversionbug"><dir name="core"><file name="core.css" hash="726ac65a6b5f5aa819cebef92f99c7d4"/><dir name="images"><file name="cb_pattern.png" hash="9c5044bebc10bc6a34aa6a1e8e41b54a"/><file name="favicon.png" hash="bab36888d2974803acc518fc6e80c0a8"/><file name="logo.jpg" hash="04b873540f127f3db2702ec81537a92c"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="conversionbug"><dir name="stickyproductsidebar"><file name="main.css" hash="c1cc21869e89fe9dfb601d37b52158cd"/></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="import"><file name="product.csv" hash="fe4db0faa97e0181d36109d73e2a709d"/></dir></target></contents>
36
  <compatible/>
37
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
38
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
+ <name>StickyProduct</name>
4
+ <version>0.2.0</version>
5
  <stability>stable</stability>
6
+ <license uri="http://www.ConversionBug.com/license-agreement.html">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>The sticky product extension has been designed to increase the sales for e-commerce stores.</summary>
10
+ <description>The sticky product extension has been designed to increase the sales for e-commerce stores. Generally, while looking for products the visitor goes to the bottom and loses the information about what he/she was viewing. Whenever the user goes below the product details for checking out other suggestions, the details of the currently viewed product come up either in the sidebar or at the top bar. It enables users to compare details of the current and similar products side by side. The extension increases the probability of the customer to buy the product.&#xD;
11
+ &#xD;
12
+ How to use this extension for higher conversions?&#xD;
13
+ &#xD;
14
+ Use this extension to show your visitors the details about the current product they are viewing to increase the chances of them buying the product. We implemented this extension on some of our client websites and the results were amazing, which proved that the extension is conversion friendly for increasing sales for the e-commerce stores.&#xD;
15
+ &#xD;
16
+ Special features of the sticky product extension&#xD;
17
+ &#xD;
18
+ Product details stick on the top bar and the side bar&#xD;
19
+ Conversion focused design&#xD;
20
+ Fully customizable&#xD;
21
+ Responsive across all devices&#xD;
22
+ Product details stick on the top bar and the side bar&#xD;
23
+ &#xD;
24
+ The extension is very helpful in showing the customers the details of the product which is currently being viewed by the user so that he doesn&#x2019;t lose the info about the same.&#xD;
25
+ &#xD;
26
+ Conversion focused design&#xD;
27
+ &#xD;
28
+ The extension has been designed after deep study of the user behavior and we have designed to make it user as well as conversion focused.&#xD;
29
+ &#xD;
30
+ Fully customizable&#xD;
31
+ &#xD;
32
+ The admin interface for this extension is very easy to understand. This extension can be easily customized based on the business requirement.&#xD;
33
+ &#xD;
34
+ Responsive across all devices&#xD;
35
+ &#xD;
36
+ The sticky product extension works effortlessly across all the devices. From mobile to tablet and desktop to widescreen, this extension does its work flawlessly.&#xD;
37
+ &#xD;
38
+ Compatible with:&#xD;
39
+ Community: 1.9.2</description>
40
+ <notes>changes and bug fixes</notes>
41
  <authors><author><name>shiv kumar singh</name><user>shivam</user><email>shivam.kumar@conversionbug.com</email></author></authors>
42
+ <date>2016-09-17</date>
43
+ <time>06:53:33</time>
44
+ <contents><target name="magelocal"><dir name="ConversionBug"><dir name="Core"><dir name="Block"><file name="Info.php" hash="615b0df84a02bd72de0a75c2a60181af"/><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Product.php" hash="d0b451bf63512ca2e4f4ef4e0dc200c5"/><file name="Store.php" hash="e50327e182f14d67ce1aeed1efa84d61"/></dir></dir><file name="Info.php" hash="aeaf0376ffec6e958c0f030a19b39747"/></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="fd937326042c8165a1df0faca629db7f"/></dir><dir name="Model"><file name="Feed.php" hash="9266834784c19c05f6cf06a3acc69acc"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Display.php" hash="fd271787952e4f1b1ce98a0a68cb37cb"/><file name="Footer.php" hash="7c13df78247e0cc2fe1e11ddff2cdcdf"/><file name="Options.php" hash="a26a31999e38a540292ff24e5ed33428"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="7164e6536faa45bccbf4a09bc6fba886"/><file name="config.xml" hash="72906aaf8f09a16f7a906cccb3874e3b"/><file name="system.xml" hash="7e52ad89b50f1260b86bc00114a0d326"/></dir></dir><dir name="Stickyproductsidebar"><dir name="Helper"><file name="Data.php" hash="7e1bd9f4662cb7431e7b8c4ae4359140"/></dir><dir name="etc"><file name="adminhtml.xml" hash="75f6233af6f4397e3e67b9059ed3907f"/><file name="config.xml" hash="d1f7dad7e19b1983abb0455bd47ee812"/><file name="system.xml" hash="1452bbc0ca52458445ba3f934a950174"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="conversionbugcore.xml" hash="d19182dcda6f0db7fadb1bff12b83e5a"/></dir><dir name="template"><dir name="conversionbugcore"><file name="info.phtml" hash="9c5797c75db2e608fb652f02adb3a02c"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cb_stickyproductsidebar.xml" hash="9c7b70ef9707b2f51ca96c822de83821"/></dir><dir name="template"><dir name="conversionbug"><dir name="stickyproductsidebar"><file name="js.phtml" hash="5fcf620e44bf6e7dfbefb1afab5f8cc0"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ConversionBug_Core.xml" hash="537de773791fc95a5a3e340de82162f7"/><file name="ConversionBug_Stickyproductsidebar.xml" hash="c6997885f8b6a8bfe2f6854a5b4c2669"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="conversionbug"><dir name="core"><file name="core.css" hash="29c9cad2d9271f28bfd9eddd5c808d5d"/><dir name="images"><file name="cb_pattern.png" hash="9c5044bebc10bc6a34aa6a1e8e41b54a"/><file name="favicon.png" hash="bab36888d2974803acc518fc6e80c0a8"/><file name="logo.jpg" hash="04b873540f127f3db2702ec81537a92c"/><file name="logo.png" hash="ee6d3fdb6b84dc6305e1930c9d62c9a1"/><file name="mail.png" hash="dda776f14745ef6ed3ea7c273b89414a"/><file name="skype.png" hash="c47bc27f92a5037b5e5808a4c7946eef"/><file name="star.png" hash="7ba3058f225533076d823ad0de40cf61"/><file name="storebg.png" hash="afc4c40ea7a186c807daa8f4bd16dff3"/><file name="tick.png" hash="a93719f7f9a401c5aa10745e72f33b6a"/><file name="tick1.png" hash="a77e5cdd4aa5960fd325028b3cad225b"/><file name="web.png" hash="d6a873b4366d7337b6e3bc048ad3399f"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="conversionbug"><dir name="stickyproductsidebar"><file name="main.css" hash="c1cc21869e89fe9dfb601d37b52158cd"/></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="conversionbug"><dir name="core"><file name="conversion.js" hash="47004e7b9c863ceb3ad1b8832f2bad6e"/></dir><dir name="stickyproductsidebar"><file name="stickEmUp.js" hash="cf9132fe3b5d04eb9505cd801970fa41"/></dir></dir></dir></target></contents>
45
  <compatible/>
46
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
47
  </package>
skin/adminhtml/default/default/conversionbug/core/core.css CHANGED
@@ -1,12 +1,21 @@
1
- .cb-block dl > dt.label{background: #d1dedf url("images/logo.jpg") no-repeat scroll 0px -1px;padding-left: 50px;text-indent: -999em;}
2
- .cb-intro{background:rgb(25,25,25);height:162px;}
3
- .cb-pattern{background: url("images/cb_pattern.png") no-repeat;height: 162px;width:39%;float:right}
4
- .cb-intro .content{float:left;width:56%;padding:10px 10px 10px 30px;color:white;}
5
- h3.cb-header{background: transparent url("images/favicon.png") no-repeat scroll 0 0;height: 37px;overflow: hidden;padding: 0;text-indent: -9999px;width: 120px;display:none;}
6
- .cbstore-block .item-extensions {float: left;margin: 0 0 0 70px;min-height: 400px;padding: 24px 0;width: 17%;}
7
- .cbstore-block .item-extensions .image img {width: 175px;}
8
- .cbstore-block .item-extensions .title {border-bottom: 1px solid #ededed;margin: 0 0 15px;padding: 31px 0 17px;text-align: center;}
9
- .cbstore-block .item-extensions .title a {color: #545454;display: block;font-family: Arial;font-size: 16px;font-weight: bold;max-height: 57px;min-height: 57px;overflow: hidden;text-decoration: none;}
10
- .cbstore-block .item-extensions .title a:hover {color: #d4022e;}
11
- .cbstore-block .item-extensions .price {color: #000000;font-size: 20px;font-weight: bold;text-align: center;}
12
- .cbstore-block .store-extensions-header {border-bottom: 1px dashed #dddddd;font-family: Arial;font-size: 1.6666em;line-height: 1.25em;margin-left: 70px;padding-bottom: 30px;padding-top: 7px;}
 
 
 
 
 
 
 
 
 
1
+ .content {width:100%;padding-top: 59px; background: url("images/storebg.png") no-repeat;}
2
+ .cb-details {width:70%;float:left}
3
+ .cb-intro{margin: 0px 0px 0px 25px; padding-top: 35px;}
4
+ .cb-pattern{background: url("images/logo.png") no-repeat;height: 100px;width:30%;float:left}
5
+ .cb-intro .content h1{color:#fff;font-weight: bold;}
6
+ .cb-intro .content a{color: #000;padding-left: 12px; font-size: 14px}
7
+ .list-inline {padding-left: 0;list-style: none;margin-left: -5px}
8
+ .list-inline>li {display: inline-block;padding-left: 5px;padding-right: 64px;}
9
+ .list-inline>li.cb-web {background: url("images/web.png") no-repeat; background-position: left center;}
10
+ .list-inline>li.cb-mail {background: url("images/mail.png") no-repeat; background-position: left center;}
11
+ .list-inline>li.cb-skype {background: url("images/skype.png") no-repeat; background-position: left center;}
12
+ .entry-edit .content {pading:0px 0px !important;}
13
+ .product-desc>ul>li {list-style:none;font-size: 12px;line-height: 22px;list-style-image: url("images/tick1.png");
14
+ list-style-position: inside;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
15
+ .rating{float: left;background: url("images/star.png") no-repeat;width: 16px;background-position: right center;
16
+ padding-right: 17px;color: gray;padding-top: 1px;}
17
+ .item-extensions>li{width:25%;float: left;list-style: none;margin-left: 23px;padding-right: 50px;margin-top: 25px;}
18
+ .price{float: right;font-weight: bold;}
19
+ .images img {height:262px}
20
+ .title a {text-decoration: none !important;}
21
+ .item-extensions {float: left;}
skin/adminhtml/default/default/conversionbug/core/images/logo.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/mail.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/skype.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/star.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/storebg.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/tick.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/tick1.png ADDED
Binary file
skin/adminhtml/default/default/conversionbug/core/images/web.png ADDED
Binary file