Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
picaflor-azul
I'll take a look around the forum to see if a fix has ever been posted ;) This is more of what I meant by if you figure out a fix.
Thanks,
Anne
Thanks Anne - my reply was a 'little tongue in cheek' as you probably guessed :blink:
I will look around when I have some time later, but getting the correct search words can take a little perseverance sometimes.
If you do come across anything, a heads up would be appreciated. :cool:
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
pewe
Thanks Anne - my reply was a 'little tongue in cheek' as you probably guessed :blink:
I will look around when I have some time later, but getting the correct search words can take a little perseverance sometimes.
If you do come across anything, a heads up would be appreciated. :cool:
Oh yes, anytime I find a fix for anything I always post to the template support thread ;)
Thanks,
Anne
Re: Stirling Grand Responsive Template
Re: Stirling Grand Responsive Template
Hi Anne,
Thank you so much for the cool template! Really appreciate it.
I'm having an issue with a dev site (local running on WAMP). It's a new install of ZC v1.5.1, with your template installed.
The problem is that the site works beautifully when using a computer/PC, but when accessing the dev site using Android-based devices, (OLD Google Nexus One, generic Android 10" tablet and generic Android 5" smartphone) it only displays a long vertical list of blue links (every link on the site, I might add) on a white background...? I mean, no graphics whatsoever other than the links. I'd include a screenshot if I could, but I have no clue how to do that with a cell phone, sorry.
I've tried suggestions I found on the net, but so far, nothing has worked for me at all.
Any clues as to what's going on, or am I just totally missing something?
Thanks in advance for any help/ideas you can give me.
Guido
P.S. Should have said I tried accessing the site using the stock Android browser and also the latest version of Firfox for Android...neither works...
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
guido49
Hi Anne,
Thank you so much for the cool template! Really appreciate it.
I'm having an issue with a dev site (local running on WAMP). It's a new install of ZC v1.5.1, with your template installed.
The problem is that the site works beautifully when using a computer/PC, but when accessing the dev site using Android-based devices, (OLD Google Nexus One, generic Android 10" tablet and generic Android 5" smartphone) it only displays a long vertical list of blue links (every link on the site, I might add) on a white background...? I mean, no graphics whatsoever other than the links. I'd include a screenshot if I could, but I have no clue how to do that with a cell phone, sorry.
I've tried suggestions I found on the net, but so far, nothing has worked for me at all.
Any clues as to what's going on, or am I just totally missing something?
Thanks in advance for any help/ideas you can give me.
Guido
P.S. Should have said I tried accessing the site using the stock Android browser and also the latest version of Firfox for Android...neither works...
If the template demo works, but your version on your wamp server does not work, then the problem may be server related.
Thanks,
Anne
Re: Stirling Grand Responsive Template
OK...I'll see what (if anything) I can figure out. If I get it to work, I'll post back with what I did to fix it.
Thanks again.
Re: Stirling Grand Responsive Template
After a LOT of messing around, I finally figured this out. It may not be a big deal for people who don't use a local dev site, but for those who do use WAMP server and have the same problem I was having, here is how I fixed it. Just be aware you may also have to tweak your httpd.conf file.
Before you proceed with what I'm going to suggest, PLEASE make copies of these 2 files: /your_store/includes/configure.php and /your_store/your_admin/includes/configure.php.
AND BACK UP YOUR DATABASE !!!!!! I take no responsibility for anything that goes awry with your installation. All I know is that this worked for me.
The problem had to do with 2 files in Zencart and also the MySQL database priveleges.
In /your_store/includes/configure.php, I made these 3 changes:
Changed define('HTTP_SERVER', 'http://localhost'); to define('HTTP_SERVER', 'http://192.168.x.x');
Changed define('HTTPS_SERVER', 'http://localhost'); to define('HTTPS_SERVER', 'http://192.168.x.x');
Changed define('DB_SERVER', 'localhost'); to define('DB_SERVER', '192.168.x.x');
In /your_store/your_admin/includes/configure.php, I made these 5 changes:
Changed define('HTTP_SERVER', 'http://localhost'); to define('HTTP_SERVER', 'http://192.168.x.x');
define('HTTPS_SERVER', 'https://localhost'); to define('HTTPS_SERVER', 'https://192.168.x.x');
define('HTTP_CATALOG_SERVER', 'http://localhost'); to define('HTTP_CATALOG_SERVER', 'http://192.168.x.x');
define('HTTPS_CATALOG_SERVER', 'https://localhost'); to define('HTTPS_CATALOG_SERVER', 'https://192.168.x.x');
define('DB_SERVER', 'localhost'); to define('DB_SERVER', '192.168.x.x');
In phpMyAdmin, selct your database and click the Privileges tab, then the Add User link. Fill in the Login Information field if you want to (I selected Any User from the dropdown). For the Host, select the option labelled as "Use Text Field" and type in your computer's LAN/IP address in the text box. Scroll down to the Global privileges form. Select the choose all link (or select specific ones you want to assign to this user). Click on Go button. When connecting to MySQL from your remote computer, use the details you just set up.
After doing all that, I restarted WAMP, put the server online (be careful with this unless you have a stupendous firewall running...as soon as you're done testing, be sure to take WAMP OFFLINE), and Anne's template now loads beautifully on all of my Android devices.
So...very long story short, Anne, you've done a fine job with your responsive templates....I applaud you and thank you profusely ! :clap: :clap: :bow:
Guido
Re: Stirling Grand Responsive Template
Hello,
How do I get new links in the megamenu? For example, say I want one of the More Information sideboxes (page_2.php) to appear in the upper mega menu, how do I do so?
Thanks! :-)
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
CookieMonster
Hello,
How do I get new links in the megamenu? For example, say I want one of the More Information sideboxes (page_2.php) to appear in the upper mega menu, how do I do so?
Thanks! :-)
You can add them to includes/templates/stirling_grand/common/tpl_mega_menu.php and includes/templates/stirling_grand/templates/tpl_modules_mobile_categories_tabs.php
Thanks,
Anne
Re: Stirling Grand Responsive Template
Thanks for directing me where to look.
I'm not very good with some types of code, and I looked in the forum and cannot find more help (probably because everyone knows how to do this!), but how would I make a link between Home and Brands in the Mega Menu? For example, if I want the link to be called "Events" and the link to be http://www.mywebsite.com/catalog/ind...in_page=page_3, what line of code would I need to put in those two files?
I'm sorry; I just cannot figure it out!