elka_palka Posted December 19, 2011 Share Posted December 19, 2011 Hi! When I chose standart theme, my cart doesn't collapse. What should I do? Link to comment Share on other sites More sharing options...
Mike Kranzler Posted December 19, 2011 Share Posted December 19, 2011 Hi elka, Can you please post your URL so that I can take a look at this for you? -Mike Link to comment Share on other sites More sharing options...
doekia Posted December 19, 2011 Share Posted December 19, 2011 This is a well known bug of the latest (1.4.6.x ) Change the modules/blockcart/ajax-cart.js arround line 138 // try to collapse the cart collapse : function(){ return; by // try to collapse the cart collapse : function(){ Best, (d)oekia 1 Link to comment Share on other sites More sharing options...
elka_palka Posted December 19, 2011 Author Share Posted December 19, 2011 Hi, Mike, I work on localhost, but thanks to doekia I fixed the problem. Thank you for quick response Link to comment Share on other sites More sharing options...
Mike Kranzler Posted December 19, 2011 Share Posted December 19, 2011 Thanks doekia! I'll go ahead and mark this as solved for you. -Mike Link to comment Share on other sites More sharing options...
elka_palka Posted December 19, 2011 Author Share Posted December 19, 2011 Mike, I tried to edit to Solved but full edit didn't work, I don't know why. Link to comment Share on other sites More sharing options...
Mike Kranzler Posted December 19, 2011 Share Posted December 19, 2011 Don't worry, I took care of it for you -Mike Link to comment Share on other sites More sharing options...
Online Office USA Posted December 19, 2011 Share Posted December 19, 2011 Hello, i have the same problem and tried the fix but to no avail. I'm using Prestashop New Theme and when I rollover the cart it expands and stays open for an undetermined amount of time...and it's rather annoying. http://onlineofficeusa.com Link to comment Share on other sites More sharing options...
Mike Kranzler Posted December 19, 2011 Share Posted December 19, 2011 Hi OnlineOffice, Have you enabled Force Compile in your Back Office under Preferences > Performance? -Mike Link to comment Share on other sites More sharing options...
doekia Posted December 20, 2011 Share Posted December 20, 2011 That is a totally different issue. Theme called "Prestashop 1.4.5" internal name "prestashop_new" use the blockcart2. The problem is also well known and is due the fact that the component that kicks the opening (#shopping-cart) does not belong to the same container as the cart portion (#cart_block). The cart stays frozen open if the user hover the title (#shopping-cart) and leave without hovering on the cart Snippet from themes/prestashop_new/js/modules/blockcart2/ajax-cart.js /* roll over cart */ $("#shopping_cart").mouseenter(function(){ $("#cart_block").stop(true, true).slideDown(450); }); $("#cart_block").mouseleave(function(){ $(this).stop(true, true).slideUp(450); }); The entire theme construction is the culprit. There is no solution. Sorry. Best, (d)oekia Link to comment Share on other sites More sharing options...
Online Office USA Posted December 20, 2011 Share Posted December 20, 2011 Hi OnlineOffice, Have you enabled Force Compile in your Back Office under Preferences > Performance? -Mike Hi Mike, thank you for the quick reply! yep...Force Compile is one of the first things I check...ajax is enabled... is there a time setting for the js code or anything like that I should check? I might just be "nit-picking" about the collapse of the block. It doesn't appear to affect functionality but it certainly affects the appearance of the site (and its developer - me) Just trying to get the site as close to what I think is perfection that I can... Thanks again! Link to comment Share on other sites More sharing options...
Online Office USA Posted December 20, 2011 Share Posted December 20, 2011 That is a totally different issue. Theme called "Prestashop 1.4.5" internal name "prestashop_new" use the blockcart2. The problem is also well known and is due the fact that the component that kicks the opening (#shopping-cart) does not belong to the same container as the cart portion (#cart_block). The cart stays frozen open if the user hover the title (#shopping-cart) and leave without hovering on the cart Snippet from themes/prestashop_new/js/modules/blockcart2/ajax-cart.js /* roll over cart */ $("#shopping_cart").mouseenter(function(){ $("#cart_block").stop(true, true).slideDown(450); }); $("#cart_block").mouseleave(function(){ $(this).stop(true, true).slideUp(450); }); The entire theme construction is the culprit. There is no solution. Sorry. Best, (d)oekia thank you... Link to comment Share on other sites More sharing options...
doekia Posted December 20, 2011 Share Posted December 20, 2011 Bug reported at the forge: http://forge.prestas...owse/PSCFI-4491 And you may like to try the fix attached to the report. This is NOT a module. Best, (d)oekia Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now