Missing Pictures on product info page
I noticed that somehow my 2 extra pictures on my product info page are missing. I have the product picture then the description under that. Now under the description should be 2 extra photos of the item. They are now missing.
I have been to Catalog/product Types/ then general. The show product additional images is (1) = on.
I was changing a couple items in the Tools/ layout boxes controller. Could I have messed up something there?:oops:
i am using v1.3.9b
http://classic-flatware.com/index.ph...roducts_id=278
Mark
Re: Missing Pictures on product info page
Quote:
Originally Posted by
Golden Synergy
I noticed that somehow my 2 extra pictures on my product info page are missing. I have the product picture then the description under that. Now under the description should be 2 extra photos of the item. They are now missing.
Mark
Thanks to the help of schoolboy I now have all 3 of my images showing on my product info pages.
If you have a Cherry zen template, could you tell me your setting for Configuration / Images / Image - Use Proportional Images on Products and Categories.
Mine is set to ( 0 ) . That seems wrong but when it is turned off ( 0 ) it does help bring bring back my 2 missing pictures.
Mark
Problem with boxes and column
Hello.
First - sorry for my english.
I have a problem with boxes. There is no problem to change the size of boxes, the problem is to change size of column under boxes (gray color). When sign of product in category section is too long its look like on the picture. How to fix it ? How to change this gray column.
I checked on the classic template and everything is ok, I can change column width. I think it's a problem with cherry zen template.
Pictures of my Website http://wstaw.org/w/5Qq/
Template is Cherry Zen
Zen Cart 1.3.9
Thank YOU for Your help.
Problem with boxes and column
Will somebody help me on this forum?
Re: Problem with boxes and column
Quote:
Originally Posted by
RThat
Will somebody help me on this forum?
From the readme_or_else.txt file that COMES WITH Cherry Zen:
2. To change the background color behind the sideboxes, open up /includes/templates/cherry_zen/images/sidebox.gif in your favorite image editor and change the color, save and re-upload.
So you see, the color is from a gif file so your width problem will be close by. Read the WHOLE readme_or_else.txt file and you will find a lot of answers there!
Re: Cherry Zen Template Support Thread
Re: Cherry Zen Template and other fruit(apple..) availabel for 1.39c ?
Quote:
Originally Posted by
supliang
I want to install a new zen-cart.
I wonder whether Cherry Zen Template and other fruit(apple..) are availabel for the newest version of Zen-cart, the1.39c ?
Thanks a lot
The official support thread for Cherry Zen http://www.zen-cart.com/forum/showthread.php?t=72703 should give you a clue (contains about 300 pages though ....) :smile:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
supliang
Hi, thank you very much for such good addon!!
Does the Cherry Zen template support the newest version of Zen cart, 1.39c?
Yes it does. I'm test running everything on my local host before I upload them to my sever. Just make sure your compare the files that the template comes with in a program like WinMerge.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jbabbling
Found the issue. The version of cart_upsell.php I have has the </div> at the end of the file outside of the php if statement, thus inserting an additional </div> html tag in the page and throwing off the css. Here is how it looked before:
<div class="centerBoxWrapper" id="alsoPurchased">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
}
}
?>
</div>
Here is how it should be coded:
<div class="centerBoxWrapper" id="alsoPurchased">
<?php
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
?>
</div>
<?php
}
}
?>
you absolute star! ive been starring for hours at that code trying to work out why! THANKYOU!