Page 10 of 53 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 527
  1. #91
    Join Date
    Jul 2004
    Location
    Minnesota
    Posts
    31
    Plugin Contributions
    0

    red flag Re: Stirling Grand Responsive Template

    BS"D - I really like this Sterling-Grand Template... it's so clean and simple.
    I am starting a fresh Website and it's going pretty well, but I have run into one snag...

    In the Attributes Controller, when I choose a file to add an image to an attribute, it shows the name of the image file until I click "insert"... but the image file is not connected to the attribute. (The Yellow Dot that shows an image is attached is not there.) When I click Edit to try to add the image again it says "No File Chosen".
    How can I get this to work properly? :-( Help!

  2. #92
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by mordechai View Post
    BS"D - I really like this Sterling-Grand Template... it's so clean and simple.
    I am starting a fresh Website and it's going pretty well, but I have run into one snag...

    In the Attributes Controller, when I choose a file to add an image to an attribute, it shows the name of the image file until I click "insert"... but the image file is not connected to the attribute. (The Yellow Dot that shows an image is attached is not there.) When I click Edit to try to add the image again it says "No File Chosen".
    How can I get this to work properly? :-( Help!
    I doubt this has anything to do with this template for it's files do not alter anything in the admin > attributes arena.

    You can take a look at this post:
    http://www.zen-cart.com/showthread.p...73#post1198673

  3. #93
    Join Date
    Jul 2004
    Location
    Minnesota
    Posts
    31
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    BS"D

    My hosting support solved the issue:

    The cause of the issue was a permissions setting on a directory that the images were being saved to.

    Thanks!

  4. #94
    Join Date
    Feb 2010
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by mordechai View Post
    BS"D

    My hosting support solved the issue:

    The cause of the issue was a permissions setting on a directory that the images were being saved to.

    Thanks!
    Glad you got it figured out!

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by rbarbour View Post
    Glad you got it figured out!
    Ditto :)

    Thanks,

    Anne

  6. #96
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,371
    Plugin Contributions
    94

    Default Re: Stirling Grand Responsive Template

    I just downloaded this template and found some short-open tags in the file /includes/templates/stirling_grand/templates/tpl_modules_mobile_categories_tabs.php
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
    This should be changed to
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>

  7. #97
    Join Date
    Aug 2006
    Posts
    134
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by lat9 View Post
    I just downloaded this template and found some short-open tags in the file /includes/templates/stirling_grand/templates/tpl_modules_mobile_categories_tabs.php
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
    This should be changed to
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
    I see these relate to the mobile template.
    As I currently don't have a smartphone to test this, what effect would a mobile user see as a result of the missing 'php' tags.
    Does putting them in change the screen content on a mobile? how

    Thanks

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

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by lat9 View Post
    I just downloaded this template and found some short-open tags in the file /includes/templates/stirling_grand/templates/tpl_modules_mobile_categories_tabs.php
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <? echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <? echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
    This should be changed to
    Code:
       <li class="mshopping-cart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?> - <?php echo $_SESSION['cart']->count_contents();?> <?php echo HEADER_TITLE_CART_ITEMS; ?> - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a></li>
    Thank you for posting. I do have this on a list of things to fix for a future update ;)

    Thanks,

    Anne

  9. #99
    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
    I see these relate to the mobile template.
    As I currently don't have a smartphone to test this, what effect would a mobile user see as a result of the missing 'php' tags.
    Does putting them in change the screen content on a mobile? how

    Thanks
    It will not be a problem for a large majority of users. If you are worried then just add in the changes posted to fix.

    Thanks,

    Anne

  10. #100
    Join Date
    Aug 2006
    Posts
    134
    Plugin Contributions
    0

    Default Re: Stirling Grand Responsive Template

    Quote Originally Posted by picaflor-azul View Post
    It will not be a problem for a large majority of users. If you are worried then just add in the changes posted to fix.
    Thanks,

    Anne
    Not worried Anne
    Just curious - but will add the changes anyway.

 

 
Page 10 of 53 FirstFirst ... 8910111220 ... 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