The putting product into the shopping cart does not work cor

GK User
Thu Oct 16, 2014 8:01 pm
Hello do you know tell me why does not work add product in to the cart? Once added products into your cart and sometimes not? I do not know if it's in the settings or what is wrong?
Joomla! 2.5.27, VirtueMart 2.6.6, Gavern v.3.13
http://www.drevoland.sk
User avatar
Fresh Boarder

teitbite
Sat Oct 18, 2014 5:04 pm
Hi

Please rename /html/com_virtuemart with /html/_com_virtuemart and try it that. This will disable our overrides to VM and will tell if problem is connected with our template or VM itself.
User avatar
Moderator

GK User
Sat Oct 18, 2014 8:01 pm
When I renamed it worked mod_virtuemart_cart
User avatar
Fresh Boarder

teitbite
Mon Oct 20, 2014 9:57 am
Hi

Are You sure it was a virtumar module ? Not a component by accident ? If it's a module than changes there aren't big, so I think having it renamed can act as a solution to this problem.
User avatar
Moderator

GK User
Mon Oct 20, 2014 9:56 pm
You wrote to me that I try to rename / html / com_virtuemart the / html / _com_virtuemart to be tried whether it's in the template or in VirtueMart?
I tried to rename / html / com_virtuemart the / html / _com_virtuemart but it did not help to put products into your shopping cart
So I tried to rename / html / mod_virtuemart_cart the / html / _mod_virtuemart_cart and then put products into your cart worked, but threw to view the shopping cart at the top right items are written out immediately below each other (not just the number of items)!
User avatar
Fresh Boarder

teitbite
Wed Oct 22, 2014 10:21 am
Hi

Ok. This is an important information. Please send me an access to ftp I think I know where to look for a fix.
User avatar
Moderator

teitbite
Thu Oct 23, 2014 10:40 am
Hi

I've reported this to programmers. Will let You know when they will answer.
User avatar
Moderator

GK User
Thu Oct 23, 2014 10:43 am
Thank you
User avatar
Fresh Boarder

teitbite
Thu Oct 23, 2014 1:52 pm
Hi

Bad news. Programmers cannot recreate the error. Cart always updates for them. Please tell me the joomla panel access so I'll put a module there with cart to show this problem or screens maybe.
User avatar
Moderator

teitbite
Fri Nov 21, 2014 4:18 pm
Hi

Ok. Programmers could not find the reason of such behaviour, but they have told me how to reconnect the module to check if there is no new products.

in file /js/gk.script.js I've replaced this code:

Code: Select all
                   new Request.HTML({
                        url: $GK_URL + 'index.php?tmpl=json',
                        onSuccess: function(nodes, xml, text) {
                            document.id('gkCartCounter').set('html', text);   
                        }


with this one:

Code: Select all
                   new Request.HTML({
                        url: $GK_URL + 'index.php?tmpl=json',
                        onSuccess: function(nodes, xml, text) {
                            document.id('gkCartCounter').set('html', text);   
                        },
                                onComplete: function() {
                                    setTimeout(function() { gkCartDataRequest(); }, 4000);
                                }
                    }).send();   


works fine to me now. Please check.
User avatar
Moderator


cron