Sherlock can u tell me
what i miss in here
category style is not displaying as it should ?
Attachment 33003
19 answers
Please post your url here, I will take a closer look.
I did look uper post
In back-end of your categories you can set Is Anchor to Yes so that the right filter block can be shown on the left instead of the category navigation block as at the moment. Let me know if this helps.
aaa i miss that one :/
now i need to hide Price under category
http://www.boomini.eu/index.php/boom…html?mode=grid
can i do this by css ?
or to comment some lines in php?
never mind i turn of that in attributes
now i cannot find where to remove pool?
http://www.magentocommerce.com/knowl…content-blocks
this link will help you .
thanks !
i am learning magento !
why slide sometime display like this ?
Attachment 33152
when i refresh page its ok
this happens often on every browser
yes!!! I was going to ask too…
I’ve been tested for one month and I still couldn’t find out the problem.
hope, Joomla engineer give us a comment.
What if you make a new thread then other people can see it.
recaptcha on form ?
QUOTE] why slide sometime display like this ?
Click image for larger version Name: img.jpg Views: 2 Size: 18.7 KB ID: 33152
when I refresh page its ok
this often happens on every browser
you can open the file app\design\frontend\default\jm_megamalltemplate\j oomlart\jmproductsslider\list.phtml there you change
HTML Code:
jQuery(document).ready(function($){ jQuery("#<?php echo $divid?>").jCarouselLite({ auto: <?php echo $configs['autorun']?>, speed: <?php echo $configs['animationtime']?>, visible: <?php echo $configs['number_items']?>, btnNext: "#jmmainwrap-<?php echo $divid?> .jm-next", btnPrev: "#jmmainwrap-<?php echo $divid?> .jm-prev", width: <?php echo $configs['number_items']*($configs['width']+10); ?>, width_img: <?php echo $configs['width']; ?> }); });
To
HTML Code:
jQuery(window).load(function($){ jQuery("#<?php echo $divid?>").jCarouselLite({ auto: <?php echo $configs['autorun']?>, speed: <?php echo $configs['animationtime']?>, visible: <?php echo $configs['number_items']?>, btnNext: "#jmmainwrap-<?php echo $divid?> .jm-next", btnPrev: "#jmmainwrap-<?php echo $divid?> .jm-prev", width: <?php echo $configs['number_items']*($configs['width']+10); ?>, width_img: <?php echo $configs['width']; ?> }); });
I hope this helps !
not good solution
the same bug is on demo page
Attachment 33262
Have you try the solution I suggested above? I just viewed your source code at http://www.boomini.eu/index.php/ and don’t see the suggessed code therein. The tweak should help you out.
Yes i try that one but when refrashing page .. products dont display as it should..
And i put old code
I will do that again maybe i should play with settings to get it right.. i will post screanshoot lil later
here is difference
this one is with jQuery(document).ready(function($)
Attachment 33323
and this one is with jQuery(window).load(function($)
Attachment 33324
is there any other solution ?
@tojla, can you pm me your admin and FTP credentials of your site for further investigation?
created and sent
I did change from:
HTML Code:
jQuery(window).load(function($){ jQuery("#<?php echo $divid?>").jCarouselLite({ auto: <?php echo $configs['autorun']?>, speed: <?php echo $configs['animationtime']?>, visible: <?php echo $configs['number_items']?>, btnNext: "#jmmainwrap-<?php echo $divid?> .jm-next", btnPrev: "#jmmainwrap-<?php echo $divid?> .jm-prev", width: <?php echo $configs['number_items']*($configs['width']+10); ?>, width_img: <?php echo $configs['width']; ?> }); });
To
HTML Code:
jQuery(window).load(function($){ jQuery("#<?php echo $divid?>").jCarouselLite({ auto: <?php echo $configs['autorun']?>, speed: <?php echo $configs['animationtime']?>, visible: <?php echo $configs['number_items']?>, btnNext: "#jmmainwrap-<?php echo $divid?> .jm-next", btnPrev: "#jmmainwrap-<?php echo $divid?> .jm-prev", width: <?php echo $configs['number_items']*($configs['width']+10); ?>, width_img: <?php echo $configs['width']; ?> }); jQuery(window).trigger("resize"); });
Let me know how it goes.
jQuery(window).trigger("resize");
did the trick !
This question is now closed