Version Notes
First Release
Features:
- Customization of slider theme from backend.
- Can use both Images and background color for the slider.
- Can specify whether to include the jQuery or not.
Relase Notes 1.0.2
- Fixed bug : jQuery & jQuery UI not getting included.
Relase Notes 1.0.3
- Fixed bug : Do not Use Images has no effect on frontend.
Relase Notes 1.0.4
- Added : Special Price in filtering
Relase Notes 1.0.5
Bugs Solved :
- Currency symbol do not change - Solved
Improvements:
- Removed theme file dependency
Relase Notes 2.0.0
Bugs Solved :
- Catalog search not working - Solved
Improvements:
- Price Slider now available on search page also
Relase Notes 2.1.0
Improvements:
- AJAX price slider on both category and search pages
- AJAX layered navigation can also be enabled
- AJAX Toolbar can also be enabled
Relase Notes 2.1.1
Bug Fixes : sliderAjax Not found
Release Info
Developer | Mrugesh Mistry |
Extension | Magehouse_Slider |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Magehouse_Slider_Block_Ajax extends Mage_Core_Block_Template{
|
4 |
+
public function __construct(){
|
5 |
+
|
6 |
+
$this->config = Mage::getStoreConfig('price_slider');
|
7 |
+
$this->url = Mage::getStoreConfig('web/unsecure/base_url');
|
8 |
+
|
9 |
+
$this->ajaxSlider = $this->config['ajax_conf']['slider'];
|
10 |
+
$this->ajaxLayered = $this->config['ajax_conf']['layered'];
|
11 |
+
$this->ajaxToolbar = $this->config['ajax_conf']['toolbar'];
|
12 |
+
$this->overlayColor = $this->config['ajax_conf']['overlay_color'];
|
13 |
+
$this->overlayOpacity = $this->config['ajax_conf']['overlay_opacity'];
|
14 |
+
$this->loadingText = $this->config['ajax_conf']['loading_text'];
|
15 |
+
$this->loadingTextColor = $this->config['ajax_conf']['loading_text_color'];
|
16 |
+
$this->loadingImage = $this->config['ajax_conf']['loading_image'];
|
17 |
+
if($this->loadingImage == '' || $this->loadingImage == null){
|
18 |
+
$this->loadingImage = $this->url.'media/magehouse/slider/default/ajax-loader.gif';
|
19 |
+
}else{
|
20 |
+
$this->loadingImage = $this->url.'media/magehouse/slider/default/'.$loadingImage;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
}
|
@@ -1,108 +1,111 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
-
<config>
|
3 |
-
<modules>
|
4 |
-
<Magehouse_Slider>
|
5 |
-
<version>2.1.0</version>
|
6 |
-
</Magehouse_Slider>
|
7 |
-
</modules>
|
8 |
-
<global>
|
9 |
-
<helpers>
|
10 |
-
<slider>
|
11 |
-
<class>Magehouse_Slider_Helper</class>
|
12 |
-
</slider>
|
13 |
-
</helpers>
|
14 |
-
<blocks>
|
15 |
-
<
|
16 |
-
<
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
<
|
41 |
-
</
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
<
|
99 |
-
|
100 |
-
|
101 |
-
<
|
102 |
-
|
103 |
-
|
104 |
-
<
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
</
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Magehouse_Slider>
|
5 |
+
<version>2.1.0</version>
|
6 |
+
</Magehouse_Slider>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<helpers>
|
10 |
+
<slider>
|
11 |
+
<class>Magehouse_Slider_Helper</class>
|
12 |
+
</slider>
|
13 |
+
</helpers>
|
14 |
+
<blocks>
|
15 |
+
<slider>
|
16 |
+
<class>Magehouse_Slider_Block</class>
|
17 |
+
</slider>
|
18 |
+
<catalog>
|
19 |
+
<rewrite>
|
20 |
+
<layer_filter_price>Magehouse_Slider_Block_Catalog_Layer_Filter_Price</layer_filter_price>
|
21 |
+
</rewrite>
|
22 |
+
</catalog>
|
23 |
+
</blocks>
|
24 |
+
<models>
|
25 |
+
<catalog>
|
26 |
+
<rewrite>
|
27 |
+
<layer>Magehouse_Slider_Model_Catalog_Layer</layer>
|
28 |
+
</rewrite>
|
29 |
+
</catalog>
|
30 |
+
<catalogsearch>
|
31 |
+
<rewrite>
|
32 |
+
<layer>Magehouse_Slider_Model_Catalogsearch_Layer</layer>
|
33 |
+
</rewrite>
|
34 |
+
</catalogsearch>
|
35 |
+
</models>
|
36 |
+
<resources>
|
37 |
+
<slider_setup>
|
38 |
+
<setup>
|
39 |
+
<module>Magehouse_Slider</module>
|
40 |
+
<class>Magehouse_Slider_Model_Resource_Setup</class>
|
41 |
+
</setup>
|
42 |
+
<connection>
|
43 |
+
<use>core_setup</use>
|
44 |
+
</connection>
|
45 |
+
</slider_setup>
|
46 |
+
|
47 |
+
<slider_write>
|
48 |
+
<connection>
|
49 |
+
<use>core_write</use>
|
50 |
+
</connection>
|
51 |
+
</slider_write>
|
52 |
+
<slider_read>
|
53 |
+
<connection>
|
54 |
+
<use>core_read</use>
|
55 |
+
</connection>
|
56 |
+
</slider_read>
|
57 |
+
</resources>
|
58 |
+
</global>
|
59 |
+
<frontend>
|
60 |
+
<layout>
|
61 |
+
<updates>
|
62 |
+
<slider>
|
63 |
+
<file>slider.xml</file>
|
64 |
+
</slider>
|
65 |
+
</updates>
|
66 |
+
</layout>
|
67 |
+
<routers>
|
68 |
+
<slider>
|
69 |
+
<use>standard</use>
|
70 |
+
<args>
|
71 |
+
<module>Magehouse_Slider</module>
|
72 |
+
<frontName>slider</frontName>
|
73 |
+
</args>
|
74 |
+
</slider>
|
75 |
+
<catalog>
|
76 |
+
<args>
|
77 |
+
<modules>
|
78 |
+
<Magehouse_Slider before="Mage_Catalog">Magehouse_Slider_Catalog</Magehouse_Slider>
|
79 |
+
</modules>
|
80 |
+
</args>
|
81 |
+
</catalog>
|
82 |
+
<catalogsearch>
|
83 |
+
<args>
|
84 |
+
<modules>
|
85 |
+
<Magehouse_Slider before="Mage_CatalogSearch">Magehouse_Slider_CatalogSearch</Magehouse_Slider>
|
86 |
+
</modules>
|
87 |
+
</args>
|
88 |
+
</catalogsearch>
|
89 |
+
</routers>
|
90 |
+
</frontend>
|
91 |
+
<default>
|
92 |
+
<price_slider>
|
93 |
+
<price_slider_settings></price_slider_settings>
|
94 |
+
<price_slider_conf>
|
95 |
+
<handle_color>#333333</handle_color>
|
96 |
+
<background_color>#eeeeee</background_color>
|
97 |
+
<range_color>#ffbb35</range_color>
|
98 |
+
<handle_width>17</handle_width>
|
99 |
+
<handle_height>18</handle_height>
|
100 |
+
<slider_width>auto</slider_width>
|
101 |
+
<slider_height>7</slider_height>
|
102 |
+
</price_slider_conf>
|
103 |
+
<ajax_conf>
|
104 |
+
<overlay_color>#000000</overlay_color>
|
105 |
+
<overlay_opacity>0.7</overlay_opacity>
|
106 |
+
<loading_text>Fetching Results... Please wait...</loading_text>
|
107 |
+
<loading_text_color>#ffffff</loading_text_color>
|
108 |
+
</ajax_conf>
|
109 |
+
</price_slider>
|
110 |
+
</default>
|
111 |
+
</config>
|
@@ -1,43 +1,51 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<layout version="0.1.0">
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?xml version="1.0"?>
|
2 |
<layout version="0.1.0">
|
3 |
+
<catalog_category_view>
|
4 |
+
<reference name="head">
|
5 |
+
<block type="core/text" name="google.cdn.jquery.slider" >
|
6 |
+
<action method="setText" ifconfig="price_slider/price_slider_settings/include_jquery">
|
7 |
+
<text>
|
8 |
+
<![CDATA[<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script type="text/javascript">jQuery.noConflict();</script>]]>
|
9 |
+
</text>
|
10 |
+
</action>
|
11 |
+
</block>
|
12 |
+
<block type="core/text" name="google.cdn.jquery.ui" >
|
13 |
+
<action method="setText" ifconfig="price_slider/price_slider_settings/include_jquery_ui">
|
14 |
+
<text>
|
15 |
+
<![CDATA[<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>]]>
|
16 |
+
</text>
|
17 |
+
</action>
|
18 |
+
</block>
|
19 |
+
<action method="addCss" ifconfig="price_slider/price_slider_settings/slider_loader_active">
|
20 |
+
<script>css/slider/jquery-ui-1.8.23.custom.css</script>
|
21 |
+
</action>
|
22 |
+
</reference>
|
23 |
+
<reference name="content">
|
24 |
+
<block type="slider/ajax" name="ajaxSlider" template="slider/ajax.phtml" output="toHtml" />
|
25 |
+
</reference>
|
26 |
+
</catalog_category_view>
|
27 |
+
<catalogsearch_result_index>
|
28 |
+
<reference name="head">
|
29 |
+
<block type="core/text" name="google.cdn.jquery.slider" >
|
30 |
+
<action method="setText" ifconfig="price_slider/price_slider_settings/include_jquery">
|
31 |
+
<text>
|
32 |
+
<![CDATA[<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script type="text/javascript">jQuery.noConflict();</script>]]>
|
33 |
+
</text>
|
34 |
+
</action>
|
35 |
+
</block>
|
36 |
+
<block type="core/text" name="google.cdn.jquery.ui" >
|
37 |
+
<action method="setText" ifconfig="price_slider/price_slider_settings/include_jquery_ui">
|
38 |
+
<text>
|
39 |
+
<![CDATA[<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>]]>
|
40 |
+
</text>
|
41 |
+
</action>
|
42 |
+
</block>
|
43 |
+
<action method="addCss" ifconfig="price_slider/price_slider_settings/slider_loader_active">
|
44 |
+
<script>css/slider/jquery-ui-1.8.23.custom.css</script>
|
45 |
+
</action>
|
46 |
+
</reference>
|
47 |
+
<reference name="footer">
|
48 |
+
<block type="slider/ajax" name="ajaxSlider" template="slider/ajax.phtml" output="toHtml" />
|
49 |
+
</reference>
|
50 |
+
</catalogsearch_result_index>
|
51 |
+
</layout>
|
@@ -1,27 +1,8 @@
|
|
1 |
-
<?php
|
2 |
-
$config = Mage::getStoreConfig('price_slider');
|
3 |
-
$url = Mage::getStoreConfig('web/unsecure/base_url');
|
4 |
-
|
5 |
-
$ajaxSlider = $config['ajax_conf']['slider'];
|
6 |
-
$ajaxLayered = $config['ajax_conf']['layered'];
|
7 |
-
$ajaxToolbar = $config['ajax_conf']['toolbar'];
|
8 |
-
$overlayColor = $config['ajax_conf']['overlay_color'];
|
9 |
-
$overlayOpacity = $config['ajax_conf']['overlay_opacity'];
|
10 |
-
$loadingText = $config['ajax_conf']['loading_text'];
|
11 |
-
$loadingTextColor = $config['ajax_conf']['loading_text_color'];
|
12 |
-
$loadingImage = $config['ajax_conf']['loading_image'];
|
13 |
-
if($loadingImage == '' || $loadingImage == null){
|
14 |
-
$loadingImage = $url.'media/magehouse/slider/default/ajax-loader.gif';
|
15 |
-
}else{
|
16 |
-
$loadingImage = $url.'media/magehouse/slider/default/'.$loadingImage;
|
17 |
-
}
|
18 |
-
?>
|
19 |
-
|
20 |
<script type="text/javascript">
|
21 |
var data = "";
|
22 |
var active = false;
|
23 |
jQuery(function($){
|
24 |
-
$('.main').append('<div id="resultLoading"><div><img src="<?php echo $loadingImage ?>"><div><?php echo $loadingText ?></div></div><div class="bg"></div></div>');
|
25 |
var height = $('.main').height();
|
26 |
var width = $('.main').width();
|
27 |
$('.ui-slider-handle').css('cursor','pointer');
|
@@ -30,14 +11,13 @@ if($loadingImage == '' || $loadingImage == null){
|
|
30 |
'width':width,
|
31 |
'height':'100%',
|
32 |
'position':'absolute',
|
33 |
-
'display':'none',
|
34 |
'z-index':'10000000',
|
35 |
'top':'0',
|
36 |
'left':'0'
|
37 |
});
|
38 |
$('#resultLoading .bg').css({
|
39 |
-
'background':'<?php echo $overlayColor; ?>',
|
40 |
-
'opacity':'<?php echo $overlayOpacity ?>',
|
41 |
'width':'100%',
|
42 |
'height':height,
|
43 |
'position':'absolute',
|
@@ -51,23 +31,23 @@ if($loadingImage == '' || $loadingImage == null){
|
|
51 |
'margin-top': '22em',
|
52 |
'font-size':'16px',
|
53 |
'z-index':'10',
|
54 |
-
'color':'<?php echo $loadingTextColor ?>'
|
55 |
|
56 |
});
|
57 |
|
58 |
-
<?php if($ajaxLayered): ?>
|
59 |
var _0x34ae=["\x63\x6C\x69\x63\x6B","\x68\x72\x65\x66","\x61\x74\x74\x72","\x70\x72\x65\x76\x65\x6E\x74\x44\x65\x66\x61\x75\x6C\x74","\x6C\x69\x76\x65","\x2E\x62\x6C\x6F\x63\x6B\x2D\x6C\x61\x79\x65\x72\x65\x64\x2D\x6E\x61\x76\x20\x61"];$(_0x34ae[5])[_0x34ae[4]](_0x34ae[0],function (_0x1f55x1){var _0x1f55x2=$(this)[_0x34ae[2]](_0x34ae[1]);sliderAjax(_0x1f55x2);_0x1f55x1[_0x34ae[3]]();} );
|
60 |
<?php endif; ?>
|
61 |
|
62 |
|
63 |
-
<?php if($ajaxToolbar): ?>
|
64 |
eval(function(p,a,c,k,e,d){while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c])}}return p}('$(\'.1 a\').3(\'9\',5(e){6 0=$(8).c(\'b\');7(0);e.2()});$(\'.1 4\').d(\'g\');$(\'.1 4\').3(\'f\',5(){6 0=$(8).h();7(0);e.2()})',18,18,'url|toolbar|preventDefault|live|select|function|var|sliderAjax|this|click||href|attr|removeAttr||change|onchange|val'.split('|')))
|
65 |
<?php endif; ?>
|
66 |
|
67 |
|
68 |
});
|
69 |
|
70 |
-
<?php if($ajaxSlider || $ajaxLayered): ?>
|
71 |
/*DONOT EDIT THIS CODE*/
|
72 |
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('9 s(1){2(!8){8=r;q(9($){p=1;$(\'#4 .j\').3($(\'.f\').3());$(\'#4\').t(g);u{$(\'7\').h(\'m\',\'y\');$.o({1:1,x:\'w\',v:\'z\',0:0,n:9(0){2(0.c){2($(\'.5-6\')){$(\'.5-6\').a();$(\'.5-6\').k(0.c)}}2(0.i){$(\'.b-l\').a();$(\'.b-l\').k(0.i)}I L=1.K(\'?\');A.M.N(\'P\',0.O,1);$(\'7\').Q(\'.J D\').C(\'B\');$(\'#4 .j\').3($(\'.f\').3());$(\'#4\').E(g);$(\'7\').h(\'m\',\'F\')}})}H(e){}});8=d}G d}',53,53,'data|url|if|height|resultLoading|col|left|body|active|function|empty|category|viewpanel|false||main|300|css|productlist|bg|append|products|cursor|success|ajax|oldUrl|jQuery|true|sliderAjax|fadeIn|try|type|json|dataType|wait|post|window|onchange|removeAttr|select|fadeOut|default|return|catch|var|toolbar|split|hist|history|pushState|title|GET|find'.split('|')))
|
73 |
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<script type="text/javascript">
|
2 |
var data = "";
|
3 |
var active = false;
|
4 |
jQuery(function($){
|
5 |
+
$('.main').append('<div id="resultLoading" style="display:none"><div><img src="<?php echo $this->loadingImage ?>"><div><?php echo $this->loadingText ?></div></div><div class="bg"></div></div>');
|
6 |
var height = $('.main').height();
|
7 |
var width = $('.main').width();
|
8 |
$('.ui-slider-handle').css('cursor','pointer');
|
11 |
'width':width,
|
12 |
'height':'100%',
|
13 |
'position':'absolute',
|
|
|
14 |
'z-index':'10000000',
|
15 |
'top':'0',
|
16 |
'left':'0'
|
17 |
});
|
18 |
$('#resultLoading .bg').css({
|
19 |
+
'background':'<?php echo $this->overlayColor; ?>',
|
20 |
+
'opacity':'<?php echo $this->overlayOpacity ?>',
|
21 |
'width':'100%',
|
22 |
'height':height,
|
23 |
'position':'absolute',
|
31 |
'margin-top': '22em',
|
32 |
'font-size':'16px',
|
33 |
'z-index':'10',
|
34 |
+
'color':'<?php echo $this->loadingTextColor ?>'
|
35 |
|
36 |
});
|
37 |
|
38 |
+
<?php if($this->ajaxLayered): ?>
|
39 |
var _0x34ae=["\x63\x6C\x69\x63\x6B","\x68\x72\x65\x66","\x61\x74\x74\x72","\x70\x72\x65\x76\x65\x6E\x74\x44\x65\x66\x61\x75\x6C\x74","\x6C\x69\x76\x65","\x2E\x62\x6C\x6F\x63\x6B\x2D\x6C\x61\x79\x65\x72\x65\x64\x2D\x6E\x61\x76\x20\x61"];$(_0x34ae[5])[_0x34ae[4]](_0x34ae[0],function (_0x1f55x1){var _0x1f55x2=$(this)[_0x34ae[2]](_0x34ae[1]);sliderAjax(_0x1f55x2);_0x1f55x1[_0x34ae[3]]();} );
|
40 |
<?php endif; ?>
|
41 |
|
42 |
|
43 |
+
<?php if($this->ajaxToolbar): ?>
|
44 |
eval(function(p,a,c,k,e,d){while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c])}}return p}('$(\'.1 a\').3(\'9\',5(e){6 0=$(8).c(\'b\');7(0);e.2()});$(\'.1 4\').d(\'g\');$(\'.1 4\').3(\'f\',5(){6 0=$(8).h();7(0);e.2()})',18,18,'url|toolbar|preventDefault|live|select|function|var|sliderAjax|this|click||href|attr|removeAttr||change|onchange|val'.split('|')))
|
45 |
<?php endif; ?>
|
46 |
|
47 |
|
48 |
});
|
49 |
|
50 |
+
<?php if($this->ajaxSlider || $this->ajaxLayered): ?>
|
51 |
/*DONOT EDIT THIS CODE*/
|
52 |
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('9 s(1){2(!8){8=r;q(9($){p=1;$(\'#4 .j\').3($(\'.f\').3());$(\'#4\').t(g);u{$(\'7\').h(\'m\',\'y\');$.o({1:1,x:\'w\',v:\'z\',0:0,n:9(0){2(0.c){2($(\'.5-6\')){$(\'.5-6\').a();$(\'.5-6\').k(0.c)}}2(0.i){$(\'.b-l\').a();$(\'.b-l\').k(0.i)}I L=1.K(\'?\');A.M.N(\'P\',0.O,1);$(\'7\').Q(\'.J D\').C(\'B\');$(\'#4 .j\').3($(\'.f\').3());$(\'#4\').E(g);$(\'7\').h(\'m\',\'F\')}})}H(e){}});8=d}G d}',53,53,'data|url|if|height|resultLoading|col|left|body|active|function|empty|category|viewpanel|false||main|300|css|productlist|bg|append|products|cursor|success|ajax|oldUrl|jQuery|true|sliderAjax|fadeIn|try|type|json|dataType|wait|post|window|onchange|removeAttr|select|fadeOut|default|return|catch|var|toolbar|split|hist|history|pushState|title|GET|find'.split('|')))
|
53 |
<?php endif; ?>
|
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magehouse_Slider</name>
|
4 |
-
<version>2.1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
@@ -54,11 +54,15 @@ Improvements:
|
|
54 |
- AJAX price slider on both category and search pages
|
55 |
- AJAX layered navigation can also be enabled
|
56 |
- AJAX Toolbar can also be enabled
|
|
|
|
|
|
|
|
|
57 |
</notes>
|
58 |
<authors><author><name>Mrugesh Mistry</name><user>mrugeshrocks</user><email>mrugesh.rocks@gmail.com</email></author></authors>
|
59 |
-
<date>2013-01-
|
60 |
-
<time>
|
61 |
-
<contents><target name="magecommunity"><dir name="Magehouse"><dir name="Slider"><dir name="Block"><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Price.php" hash="b035dba0be61b43594a70939755f05e8"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="a065b8f56bbda2943734e76139883220"/></dir><dir name="Model"><dir name="Catalog"><file name="Layer.php" hash="6a721e4f0118d0353a9f6b7838c5aeaf"/></dir><dir name="Catalogsearch"><file name="Layer.php" hash="e75760252676747cd68039c6ba4920f6"/></dir><dir name="Resource"><file name="Setup.php" hash="adf2aaa164649ba2a335545303ee1600"/></dir></dir><dir name="controllers"><dir name="Catalog"><file name="CategoryController.php" hash="c7dde356bb55b306484efac577573625"/></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="55903199aa1e17657e9be4082e09a813"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="c728cee82276d42e77808bf48fdd0cdf"/><file name="config.xml" hash="
|
62 |
<compatible/>
|
63 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
64 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Magehouse_Slider</name>
|
4 |
+
<version>2.1.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
|
7 |
<channel>community</channel>
|
54 |
- AJAX price slider on both category and search pages
|
55 |
- AJAX layered navigation can also be enabled
|
56 |
- AJAX Toolbar can also be enabled
|
57 |
+

|
58 |
+
Relase Notes 2.1.1
|
59 |
+

|
60 |
+
Bug Fixes : sliderAjax Not found
|
61 |
</notes>
|
62 |
<authors><author><name>Mrugesh Mistry</name><user>mrugeshrocks</user><email>mrugesh.rocks@gmail.com</email></author></authors>
|
63 |
+
<date>2013-01-23</date>
|
64 |
+
<time>18:20:31</time>
|
65 |
+
<contents><target name="magecommunity"><dir name="Magehouse"><dir name="Slider"><dir name="Block"><file name="Ajax.php" hash="62df9fd793aedb94d8988956cf0f6a0c"/><dir name="Catalog"><dir name="Layer"><dir name="Filter"><file name="Price.php" hash="b035dba0be61b43594a70939755f05e8"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="a065b8f56bbda2943734e76139883220"/></dir><dir name="Model"><dir name="Catalog"><file name="Layer.php" hash="6a721e4f0118d0353a9f6b7838c5aeaf"/></dir><dir name="Catalogsearch"><file name="Layer.php" hash="e75760252676747cd68039c6ba4920f6"/></dir><dir name="Resource"><file name="Setup.php" hash="adf2aaa164649ba2a335545303ee1600"/></dir></dir><dir name="controllers"><dir name="Catalog"><file name="CategoryController.php" hash="c7dde356bb55b306484efac577573625"/></dir><dir name="CatalogSearch"><file name="ResultController.php" hash="55903199aa1e17657e9be4082e09a813"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="c728cee82276d42e77808bf48fdd0cdf"/><file name="config.xml" hash="48b33238b2079b39d821447d64b5b1ec"/><file name="system.xml" hash="83978053d99367987bf8ff0748bcf64c"/></dir><dir name="sql"><dir name="slider_setup"><file name="mysql4-install-2.1.0.php" hash="12d0c01013cbeadce8d5b6d3e7b148d2"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Magehouse_Slider.xml" hash="43112ba587c13efb57d3b9471498a814"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="slider"><dir name="images"><file name="Thumbs.db" hash="c192da3c422ad168eecbe155887757f4"/><file name="ui-bg_diagonals-thick_18_b81900_40x40.png" hash="95f9cceeb9d742dd3e917ec16ed754f8"/><file name="ui-bg_diagonals-thick_20_666666_40x40.png" hash="f040b255ca13e693da34ab33c7d6b554"/><file name="ui-bg_flat_10_000000_40x100.png" hash="c18cd01623c7fed23c80d53e2f5e7c78"/><file name="ui-bg_glass_100_f6f6f6_1x400.png" hash="4c494f261d76fd2c344853b64a09371b"/><file name="ui-bg_glass_100_fdf5ce_1x400.png" hash="4c494f261d76fd2c344853b64a09371b"/><file name="ui-bg_glass_65_ffffff_1x400.png" hash="4c494f261d76fd2c344853b64a09371b"/><file name="ui-bg_gloss-wave_35_f6a828_500x100.png" hash="8c06b9c15ea2bef5ff5f1c7468bdc106"/><file name="ui-bg_highlight-soft_100_eeeeee_1x100.png" hash="f00e2ff3af640da7ee8915791b947349"/><file name="ui-bg_highlight-soft_75_ffe45c_1x100.png" hash="b806658954cb4d16ade8977af737f486"/><file name="ui-icons_222222_256x240.png" hash="ebe6b6902a408fbf9cac6379a1477525"/><file name="ui-icons_228ef1_256x240.png" hash="79f41c0765e9ec18562b20b0801d748b"/><file name="ui-icons_ef8c08_256x240.png" hash="ef9a6ccfe3b14041928ddc708665b226"/><file name="ui-icons_ffd27a_256x240.png" hash="39c5a5f53ff0e6cebaec731706427bbb"/><file name="ui-icons_ffffff_256x240.png" hash="342bc03f6264c75d3f1d7f99e34295b9"/></dir><file name="jquery-ui-1.8.23.custom.css" hash="408147096939c6ddb0becced6cdc1197"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="slider.xml" hash="1ce45e45e2ef8744b4e52584555afbc6"/></dir><dir name="template"><dir name="slider"><file name="ajax.phtml" hash="5b12e7ec6309364601af86ef645ccd60"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="magehouse"><dir name="slider"><dir name="default"><file name="ajax-loader.gif" hash="f9b76dc9bba462ece85fc9d7f8f2c33e"/><file name="handle.png" hash="4c494f261d76fd2c344853b64a09371b"/><file name="handle_1.png" hash="4c494f261d76fd2c344853b64a09371b"/><file name="range-bg.jpg" hash="8c06b9c15ea2bef5ff5f1c7468bdc106"/><file name="slider-bg.jpg" hash="f00e2ff3af640da7ee8915791b947349"/></dir></dir></dir></target></contents>
|
66 |
<compatible/>
|
67 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
68 |
</package>
|