Page 30 of 53 FirstFirst ... 20282930313240 ... LastLast
Results 291 to 300 of 527
  1. #291
    Join Date
    Aug 2006
    Posts
    134
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by picaflor-azul View Post
    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

    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.

  2. #292
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by pewe View Post
    Thanks Anne - my reply was a 'little tongue in cheek' as you probably guessed

    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.
    Oh yes, anytime I find a fix for anything I always post to the template support thread ;)

    Thanks,

    Anne

  3. #293
    Join Date
    Aug 2006
    Posts
    134
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    As always

  4. #294
    Join Date
    Oct 2012
    Location
    Natrona Heights, PA
    Posts
    23
    Plugin Contributions
    0

    Default 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...
    Last edited by guido49; 24 May 2014 at 06:28 PM.
    If you act like you know what you're doing,
    everyone thinks that you do................

  5. #295
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by guido49 View Post
    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

  6. #296
    Join Date
    Oct 2012
    Location
    Natrona Heights, PA
    Posts
    23
    Plugin Contributions
    0

    Default 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.
    If you act like you know what you're doing,
    everyone thinks that you do................

  7. #297
    Join Date
    Oct 2012
    Location
    Natrona Heights, PA
    Posts
    23
    Plugin Contributions
    0

    Default 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 !

    Guido
    If you act like you know what you're doing,
    everyone thinks that you do................

  8. #298
    Join Date
    Apr 2013
    Location
    Wisconsin
    Posts
    134
    Plugin Contributions
    0

    help question 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! :-)

  9. #299
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by CookieMonster View Post
    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

  10. #300
    Join Date
    Apr 2013
    Location
    Wisconsin
    Posts
    134
    Plugin Contributions
    0

    help question 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!

 

 
Page 30 of 53 FirstFirst ... 20282930313240 ... LastLast

Similar Threads

  1. Responsive All Business Template
    By picaflor-azul in forum Addon Templates
    Replies: 392
    Last Post: 3 Oct 2019, 05:42 AM
  2. v154 Best Responsive Template
    By martynbaker52 in forum General Questions
    Replies: 4
    Last Post: 12 Sep 2015, 02:35 AM
  3. v151 responsive template problems
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 23 May 2014, 07:11 AM
  4. Stirling Grand Template blank product info page
    By Pablo_escobar in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 18 Jan 2014, 04:38 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR