Question about category mod.
Hi,
I've recently discovered both Zen cart and the apple zen template, which is GREAT! I am slowly working on an online floral shop and the apple zen template has a lot of what i've been looking for.
One question, however:
I would like to inquire about how to modify the category/link CSS display so that:
a) the categories are displayed horizontally in using the CSS menu style with sub categories being displayed as the vertical component (instead of the horizontal listing with just top category links).
b) the information items (about us, my account, etc.) is displayed somewhere else (maybe in a box on the right).
This is my html mock-up/design for the site:
http://tegflorist.com/indexmain.php
Any suggestions/help would be appreciated.
Thanks,
W
Re: Question about category mod.
Quote:
Originally Posted by
english_1969
Hi,
I've recently discovered both Zen cart and the apple zen template, which is GREAT! I am slowly working on an online floral shop and the apple zen template has a lot of what i've been looking for.
One question, however:
I would like to inquire about how to modify the category/link CSS display so that:
a) the categories are displayed horizontally in using the CSS menu style with sub categories being displayed as the vertical component (instead of the horizontal listing with just top category links).
b) the information items (about us, my account, etc.) is displayed somewhere else (maybe in a box on the right).
This is my html mock-up/design for the site:
http://tegflorist.com/indexmain.php
Any suggestions/help would be appreciated.
Thanks,
W
a) try using the "Pauls Version" of the css drop down menu, you'll find it in the downloads section in "other modules"
b) Turn on the ezpages sidebox, and add any pages you'd like (you can link to the about us page, my account page, etc.), under "Tools", "Layout boxes controller", then add the ezpages under "Tools", "Ezpages".
Re: Apple Zen Support Thread
Hi just a quick question,
How can I edit the Gift Cert. page? I have changed the breadcrumb bit already
Re: Apple Zen Support Thread
Quote:
Originally Posted by
1st4Advertising
Hi just a quick question,
How can I edit the Gift Cert. page? I have changed the breadcrumb bit already
includes/languages/english/YOUR_TEMPLATE/gv_faq.php
Re: Apple Zen Support Thread
I have a site which I built using apple zen some time ago and it has worked just great. The client now wants to offer items for sale in different currencies. I've switched on sideboxes/currencies in layout box controller and set it to OFF, LEFT, 0, 0, ON as I would like it to appear next to the search box.
This hasn't done the trick though. How do I get them to display?
Re: Apple Zen Support Thread
Quote:
Originally Posted by
high2K
I have a site which I built using apple zen some time ago and it has worked just great. The client now wants to offer items for sale in different currencies. I've switched on sideboxes/currencies in layout box controller and set it to OFF, LEFT, 0, 0, ON as I would like it to appear next to the search box.
This hasn't done the trick though. How do I get them to display?
You have to add the code for the currencies sidebox in includes/templates/YOUR_TEMPLATE/common/tpl_header.php
Code:
<?php require(DIR_WS_MODULES . 'sideboxes/currencies.php'); ?>
Re: Apple Zen Support Thread
Hi Jettrue,
Thanks for your help. But where do I put this code? The page code up to EZPAGES_STATUS header is as follows:
Code:
?>
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
echo htmlspecialchars(urldecode($_GET['error_message']));
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
echo htmlspecialchars($_GET['info_message']);
} else {
}
?>
<!--bof-header logo and navigation display-->
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>
<div id="headerWrapper" class="clearfix">
<div id="headerWrappera">
<div id="headerWrapperb">
<div id="headerWrapperc">
<!--bof-navigation display-->
<div id="navMainWrapper" class="clearfix">
<div id="navMain">
<div id="navMainLinks">
<ul class="back2">
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<?php } } ?>
<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
</ul>
</div>
<div id="navMainSearch">
<?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
</div>
</div>
</div>
<!--eof-navigation display-->
<!--bof-branding display-->
<div id="logoWrapperOuter">
<div id="logoWrapper">
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT) . '</a>'; ?></div>
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<div id="taglineWrapper">
<?php
if (HEADER_SALES_TEXT != '') {
?>
<div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?php
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
}
}
?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
</div>
</div>
<!--eof-branding display-->
<!--eof-header logo and navigation display-->
<!--bof-header ezpage links-->
I'd like the currencies to display to the left of the search box. I tried putting the line of code you gave me directly before
Code:
<?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
but that gave me errors when I opened the page.
Re: Apple Zen Support Thread
I love the Apple Zen template it really looks good.
What is the best way to move an attribute up to the level of the Add to Cart, just under Shipping Weight?
Any help would be appreciated.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jonm
I love the Apple Zen template it really looks good.
What is the best way to move an attribute up to the level of the Add to Cart, just under Shipping Weight?
Any help would be appreciated.
Open up includes/templates/YOUR_TEMPLATE/templates/tpl_product_info_display.php
Everything is nicely segregated in that template, you can move chunks around where you'd like them.
Re: Apple Zen Support Thread
Hi,
I install apple zen template, everything fine exept the horizontal menu with IE7.
When I rollover the main title, the subtitles appear but come instead of the title. Upfully you understand what happens!!
here is the URL: http://cart.smoother.biz
I'll try to replace my stylesheet with the one found in the last version of apple zen template; but it's exactely the same think. I don't know where is from!!!
Any help will be really appreciate!
Greg