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!
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
mordechai
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
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!
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
mordechai
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!
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
rbarbour
Glad you got it figured out!
Ditto :)
Thanks,
Anne
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>
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
lat9
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
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
lat9
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
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
pewe
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
Re: Stirling Grand Responsive Template
Quote:
Originally Posted by
picaflor-azul
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 :P
Just curious - but will add the changes anyway. :yes: