Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
jolliejollie
Hi. Just wanna make sure, is this template compatible with zen cart v1.5.4? And for the slideshow, the size of the pictures I wanna use are different from those in the demo. Will the size of the slideshow be automatically adjusted or can it be manually adjusted? Thanks.
Yes, the template is compatible with 1.5.4.
The width of the template is 980 pixels wide so this is the max width you can use. I am not sure if the slide show will adjust automatically or not. Add your slides and see. If they don't adjust you will need to make css changes.
Thanks,
Anne
Re: Carlisle Fresh Template Support Thread
I'm wrestling with the ezpages. I finally got them to show in the header dropdown and the footer (after fixing my own dumb mistake), but now they're also showing up in the sideboxes.
I have them set to show up in an "Important Links" sidebox, that's working how I want. But once I enabled the ezpages in the header dropdown, they started showing under my "Search" sidebox as a bulleted list. Example: http://whatthecraft.com/test/index.p...=index&cPath=1
Any thoughts on what's causing it? I would cheat and do the old display:none trick in CSS, but the links don't seem to be styled in a way that would make that possible.
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
smarmyclothes
I'm wrestling with the ezpages. I finally got them to show in the header dropdown and the footer (after fixing my own dumb mistake), but now they're also showing up in the sideboxes.
I have them set to show up in an "Important Links" sidebox, that's working how I want. But once I enabled the ezpages in the header dropdown, they started showing under my "Search" sidebox as a bulleted list. Example:
http://whatthecraft.com/test/index.p...=index&cPath=1
Any thoughts on what's causing it? I would cheat and do the old display:none trick in CSS, but the links don't seem to be styled in a way that would make that possible.
If you don't want the ezpages sidebox to show you can turn if off in your admin--tools--layoutboxes controller.
Thanks,
Anne
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
picaflor-azul
If you don't want the ezpages sidebox to show you can turn if off in your admin--tools--layoutboxes controller.
Thanks,
Anne
Thank you! I tried that before, but I think I must have turned off the Single Column status as well, which caused it to disappear from the header menu.
And thank you for making these awesome free templates. I think this is the third template of yours that I've used. :D
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
picaflor-azul
This is a bug in the DIY template original code. You can fix it by editing the includes/templates/carlisle_fresh/common/html_header.php file. Change this:
Code:
if (COLUMN_WIDTH == '0') {
to this:
Code:
if (COLUMN_WIDTH == '0' || (in_array($current_page_base,explode(",",'popup_image,popup_image_additional')) )) {
Thanks,
Anne
Anne, it worked for me with my v1.5.4 but now I cannot work out which set of numbers I have to alter under admin/configuration/images to change to make the popup image larger.
Great work Anne keep up the very good work
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
adb34
Anne, it worked for me with my v1.5.4 but now I cannot work out which set of numbers I have to alter under admin/configuration/images to change to make the popup image larger.
Great work Anne keep up the very good work
If you add the code fix, the popup image will be the same size as your large size product image
Thanks,
Anne
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
picaflor-azul
If you add the code fix, the popup image will be the same size as your large size product image
Thanks,
Anne
So there is no way to make the popup image bigger?
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
adb34
So there is no way to make the popup image bigger?
The popup will only be as large as the large size image _LRG. This is native zen cart functionality
Thanks,
Anne
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
picaflor-azul
The popup will only be as large as the large size image _LRG. This is native zen cart functionality
Thanks,
Anne
So, lets see if I understand what you are saying Anne; if I want a big popup image, I have to tag with '_LRG'? If yes, then how do I have a large popup for the additional images as they are tagged '_1' etc? E.g. Main picture is mainpic.jpg and others are mainpic_1.jpg, mainpic_2.jpg
Re: Carlisle Fresh Template Support Thread
Quote:
Originally Posted by
adb34
So, lets see if I understand what you are saying Anne; if I want a big popup image, I have to tag with '_LRG'? If yes, then how do I have a large popup for the additional images as they are tagged '_1' etc? E.g. Main picture is mainpic.jpg and others are mainpic_1.jpg, mainpic_2.jpg
What a stupid question. I have found the answer.