Hi,
I have ZenCart 1.3.9
I've searched for this as best as I can but I can't find anything
On the home page it shows underneath the main text "Sorry no currencies found".
The site is http://store.skycallsatellite.com
Thanks for the help
Hi,
I have ZenCart 1.3.9
I've searched for this as best as I can but I can't find anything
On the home page it shows underneath the main text "Sorry no currencies found".
The site is http://store.skycallsatellite.com
Thanks for the help
What do you see when you log into the admin control panel and navigate to localization/currencies ?
If nothing is there try adding something.
I cannot think of any logical reason or explanation for the currencies to dissappear.. hopefully it was something you were playing with rather than someone elses doing.
Cheers
Rod
Under Currencies I have Canadian Dollar and US Dollar. US is the default.
I really can't recall when this came up. Maybe it was a switch but I can't find anything that would make it do this.
I suppose I could try changing the template to see if that would do anything.
OK, I'm stumped. :-(
There is no switch or setting that would cause this symptom that *I'm* aware of.
My gut feeling tells me that this won't solve the issue. Nonetherless trying anything is bettter than trying nothing.. just be sure to keep backups of anything you change so that you can restore things if they don't make any difference.
Good luck,
Rod
I just tried changing templates to the Classic Green and I didn't see the "sorry no currencies found". But when I changed it back to digital shop it showed it there again.
Maybe I need to pick a different template?
go to:
ADMIN > TOOLS > DEVELOPERS TOOL KIT
at the very bottom of the page where is says:
Look-up in all files
Key or Name:
type:
Sorry, no currencies found.
& click search, this should return the file it is being called from?
Hope this helps!
looks like it belongs to a slider image withing your main_page, did you recently remove a slider image?
in your stylesheet.css file
find:
#slider1Content {
width: 590px; /* important to be same as image width or wider */
position: absolute;
top: 0;
margin-left: 0;
}
replace with:
#slider1Content {
width: 590px; /* important to be same as image width or wider */
position: absolute;
top: 0;
margin-left: 0;
display: none;
}
The above fix from the slider does NOT fix it. As a matter of fact, this has nothing to do with the slider. I know for a fact, because I am using a different slider (I erased the one that comes with the template), and still got that annoying message.
To remove it:
go to includes/templates/digitalshop/css/stylesheet.css
and on line 131
P, ADDRESS {
padding: 0.5em;
}
change to:
P, ADDRESS {
padding: 0.5em;
display: none;
}
this does work.