Hi,
If you have the Alfresco from 3.10 you do not need upgrade script for 3.10.
What do you mean by "Alfresco SQL update requests" ?
Note: Keep in mind that you need to run the upgrade scripts (both, nopCommerce and ours) ascending (from lowest version to highest).
Hi,
Unfortunately no. You can update to latest version of nopCommerce and try to use some of our performance tips (although they are for 3.30).
Also a good place to search for initial load optimizations is nopCommerce forums.
Hi,
Did you send your credentials as a response to the ticket or as a response to the notification email ?
We do not track the notification email it is simply used to make the tracking of your ticket easier for you. You need to respond to the ticket itself from our ticketing system.
When you go to My tickets from your account in nop-templates you should see your ticket.
Hi,
Is this your ticket ?
According to the time it was answered 5 minutes after it was submitted. Maybe you have missed the email that our ticketing system sends when someone answers certain ticket.
Hi,
Can you try to reinstall the theme plugin ?
If this doesn't work please submit a ticket with admin credentials so we can check your setup.
Hi,
No this is not a correct value it should look like something like this:
19:2,18:1,20:3,21:4
Note: Keep in mind that the above value is just an example. Do not use it!
Can you try to delete the value of the setting and add your home page categories again from theme settings page ?
Hi,
Can you go to Configuration -> Settings -> All Settings, search for UrbanThemeSettings.HomepageCategoriesIds and paste the value here ?
Maybe the value in the setting is invalid.
Hi,
This should solve the issue when you use back button or getting back to page that you have already visited and you quantity was different.
We were unable to reproduce anything different on lower resolutions. Everything seems to be the same on any resolution.
You need to include the code in some JavaScript that is loaded on every page where you have ajax cart.
Hi,
Can we get a screenshot to check it out ?
Everything seems fine on the theme demo:
http://themes.tiffany1.nop-templates.com/
Hi,
I think it is some kind of browser caching.
You can use the DOMSubtreeModified event. The idea is to target the mini shopping cart quantity and every time it is changed the event will be triggered and the value will be stored in the localStorage.
$(selector).bind("DOMSubtreeModified",function(){
var value = $(selector).text();
localStorage.setItem("numberOfItemsString", value);
});
$(document).ready(function() {
if (localStorage.numberOfItemsString) {
var shoppingCartMenuLinkSelectorElementVal = $.getHiddenValFromDom("#shoppingCartMenuLinkSelector");
if ($(shoppingCartMenuLinkSelectorElementVal).length > 0 && localStorage.numberOfItemsString) {
$(shoppingCartMenuLinkSelectorElementVal).text(localStorage.numberOfItemsString);
}
}
});