Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Woody619
Great template and thanks for all your time.
I have just added Lightbox 1.3 and now I have a white box with a shadow below the image on a product page.
How can I get rid of that box?
http://anythingwooden.co.uk
No, that's part of my template, though the box is only supposed to be around the image, not the larger image link. I'm guessing that lightbox 1.3 modifies includes/templates/YOUR_TEMPLATE/templates/tpl_main_product_image.php.
But anyway, details on how to remove the drop shadow are in the readme.txt. All you have to do is remove the section of css that controls it (bottom of the main stylesheet).
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
No, that's part of my template, though the box is only supposed to be around the image, not the larger image link. I'm guessing that lightbox 1.3 modifies includes/templates/YOUR_TEMPLATE/templates/tpl_main_product_image.php.
But anyway, details on how to remove the drop shadow are in the readme.txt. All you have to do is remove the section of css that controls it (bottom of the main stylesheet).
Thanks for your quick reply, I would really like to keep the shadow around just the image.
Do you know what font you used for the buttons?
Re: Cherry Zen Template Support Thread
Yeah the two tpl_modules_main_product_image.php file are different, I need the merge the two but what parts?
Before Lightbox
PHP Code:
?>
<?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?>
<div id="productImage" class="centeredContent back">
<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<div id="productMainImage"><a href="javascript:popupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div><br class="clearBoth" /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
//--></script>
<noscript>
<?php
echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>';
?>
</noscript>
</div>
After adding Lightbox
PHP Code:
?>
<?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?>
<div id="productMainImage" class="centeredContent back">
<!-- begin zen lightbox v1.3 aclarke 2006-10-20 -->
<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<a href="' . zen_image_lightbox_IH2_url($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
//--></script>
<!-- end zen lightbox v1.3 aclarke 2006-10-20 -->
<noscript>
<?php
echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>';
?>
</noscript>
</div>
Checkout format error, Please help
Hello Jade, or anyone that can help fix this:smile:
1st off, just wanted to say great template. I really like it a lot!!!
My problem is when the shopping cart is empty and the checkout button is clicked both the left and right columns combine into the center content. This is only happening on "main_page=time_out" and after looking at code for several days I'm at a loss for what might be causing this problem.
The only mods done besides the ones already support in the cherry zen template readme file are:
1. time zone offset fix
2. Supper Tracker
Both of which are mainly admin mods, so don't think they are causing this problem. Any and all help would be appreciated, please check it out at:
http://sexy4you.us/index.php?main_page=login
Email: ########@sexy4you.us
Password: testing
Regards,
Mike
Re: Checkout format error, Please help
Quote:
Originally Posted by
ferenczy
Hello Jade, or anyone that can help fix this:smile:
1st off, just wanted to say
great template. I really like it a lot!!!
My problem is when the shopping cart is empty and the checkout button is clicked both the left and right columns combine into the center content. This is only happening on "main_page=time_out" and after looking at code for several days I'm at a loss for what might be causing this problem.
The only mods done besides the ones already support in the cherry zen template readme file are:
1. time zone offset fix
2. Supper Tracker
Both of which are mainly admin mods, so don't think they are causing this problem. Any and all help would be appreciated, please check it out at:
http://sexy4you.us/index.php?main_page=login
Email: ########@sexy4you.us
Password: testing
Regards,
Mike
I see no sideboxes at all....
Re: Checkout format error, Please help
Quote:
Originally Posted by
jettrue
I see no sideboxes at all....
You have to log in to see anything, thats the way I have the store setup.
Re: Checkout format error, Please help
Quote:
Originally Posted by
ferenczy
You have to log in to see anything, thats the way I have the store setup.
Whenever the site *does that* that means there is a missing closing </div>. I'm guessing you made changes to includes/templates/YOUR_TEMPLATE/tpl_time_out_default.php
Lines 13-19 should look like this:
Code:
<div class="centerColumn" id="timeoutDefault">
<?php
if ($_SESSION['customer_id']) {
?>
<h1 id="timeoutDefaultHeading"><?php echo HEADING_TITLE_LOGGED_IN; ?></h1>
<div id="timeoutDefaultContent" class="content"><?php echo TEXT_INFORMATION_LOGGED_IN; ?></div>
</div>
Re: Checkout format error, Please help
Quote:
Originally Posted by
jettrue
Whenever the site *does that* that means there is a missing closing </div>. I'm guessing you made changes to includes/templates/YOUR_TEMPLATE/tpl_time_out_default.php
Thanks was having a hard time trying to find that.:frusty: You're Great really appreciate the help! :clap:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Woody619
Yeah the two tpl_modules_main_product_image.php file are different, I need the merge the two but what parts?
Before Lightbox
PHP Code:
?>
<?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?>
<div id="productImage" class="centeredContent back">
<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<div id="productMainImage"><a href="javascript:popupWindow(\\\'' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '\\\')">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '</div><br class="clearBoth" /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
//--></script>
<noscript>
<?php
echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>';
?>
</noscript>
</div>
After adding Lightbox
PHP Code:
?>
<?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?>
<div id="productMainImage" class="centeredContent back">
<!-- begin zen lightbox v1.3 aclarke 2006-10-20 -->
<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<a href="' . zen_image_lightbox_IH2_url($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="lightbox[gallery]" title="' . addslashes($products_name) . '">' . zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
//--></script>
<!-- end zen lightbox v1.3 aclarke 2006-10-20 -->
<noscript>
<?php
echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>';
?>
</noscript>
</div>
You're saying that you can't see the differences between the two, and then combine them? In mine, I simply add the <div id="productMainImage"> before the image link, then I add the </div><br class="clearBoth" /> after the image height section. Simply add that to the lightbox code.
Re: Cherry Zen Template Support Thread
Hello. Another fan of this new template - so professional looking with just a touch of class, nice. I'm getting close to open my new site with this design and am so excited!
I saw the bubbles site and want to do the same with the horizontal menu but have asked that question in the appropriate spot.
However I do have some problems I need help in solving:
- How do I move the template up in the window, the extra space about the main wrapper is begging to be reduced by half to my eye.
- On the listing page of products how do I move the price down next to Add to My cart instead of hugging the image.
- On the product descriptions page it's a total mess, on my site. Click on any product and you will see what I mean.
We're not open on this site yet as the secure socket layer is missing for credit card protection.
http://smockingbooks.com/index.php?main_page=
Thanks for your assistance, when I'm done I'll be donating. :hug:
Beth-Katherine