Adding a flash (.swf) header
I love this template. I've come up with a new flash swf that I would like to use as the header for the site, completely replacing the logo.gif and the HEADER_SALES_TEXT.
Can somebody give me a quick lesson on how to do this? What to remove? I think I should be editing in tpl_header.php. But I think one must be very careful not to break it because it will break other parts of the site.
Anyhow, if you can help me replace the logo.gif and the text with just one swf, that would be awesome.
Thanks!
Re: Adding a flash (.swf) header
Quote:
Originally Posted by
gtoger
I love this template. I've come up with a new flash swf that I would like to use as the header for the site, completely replacing the logo.gif and the HEADER_SALES_TEXT.
Can somebody give me a quick lesson on how to do this? What to remove? I think I should be editing in tpl_header.php. But I think one must be very careful not to break it because it will break other parts of the site.
Anyhow, if you can help me replace the logo.gif and the text with just one swf, that would be awesome.
Thanks!
Why don't you put the HTML for the swf in includes/languages/english/apple_zen/header.php where the HEADER SALES TEXT is.
Re: Apple Zen Support Thread
Hi - I LOVE MY SITE! Thanks for the template it is WONDERFUL! I also appreciate the different colors that I can use with it :yes: Great job!!
I need help with one thing and generally this is very simple for me but I cannot seem to add my own information at the footer for the copyright of the site.
Can someone please help me??
Thanks!
Re: Apple Zen Support Thread
Quote:
Originally Posted by
treasured2
Hi - I LOVE MY SITE! Thanks for the template it is WONDERFUL! I also appreciate the different colors that I can use with it :yes: Great job!!
I need help with one thing and generally this is very simple for me but I cannot seem to add my own information at the footer for the copyright of the site.
Can someone please help me??
Thanks!
in includes/languages/apple_zen/english.php
define('FOOTER_TEXT_BODY', 'Template designed by <a href="http://www.sagefish.com/" target="_blank">Sage Fish.com</a>. Copyright © ' . date('Y') . ' <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');
Re: Apple Zen Support Thread
this is the best templates that i found. I got some problem with the product page after i solved the additional images.
1. How can I align the addition images nicely ? Now the images is overlap each others.
2. Can I remove the 'larger image' wording ?
3. Can I replace the "SUNSET TO DIE FOR" in bold with Manufactured by "OBEY" ? and align it together with other info ?
4. How I can rearange the info by following sequence
Manufactured By
Model
Description
Price
Attached is the printed screen for your easy understanding.
Thank you in advance.
http://img367.imageshack.us/img367/3...uctpagehg8.jpg
Re: Apple Zen Support Thread
Quote:
Originally Posted by
showroom
this is the best templates that i found. I got some problem with the product page after i solved the additional images.
1. How can I align the addition images nicely ? Now the images is overlap each others.
2. Can I remove the 'larger image' wording ?
3. Can I replace the "
SUNSET TO DIE FOR" in bold with Manufactured by "OBEY" ? and align it together with other info ?
4. How I can rearange the info by following sequence
Manufactured By
Model
Description
Price
Attached is the printed screen for your easy understanding.
Thank you in advance.
http://img367.imageshack.us/img367/3...uctpagehg8.jpg
1. This doesn't happen in the stock version of the template, I need to see a link.
2. includes/templates/template_default/templates/tpl_modules_main_product_image.php
once you change it, then move it to includes/templates/apple_zen/templates/ so that you're changes will still be there after an upgrade
3. So you want to not have the product name in bold? You want to remove the product name for every product?
4. includes/templates/template_default/templates/tpl_product_info_display.php
That file is nicely segmented into chunks. First you'll need to grab the description chunk, and move the right after this:
<!--eof Product details list -->
Then move the price chunk right after the description chunk.
Then if you want the manufactured by to show up before the model portion, re-arrange this section:
<ul id="productDetailsList">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>
Re: Apple Zen Support Thread
Hi Jade,
I need help about of coupon. I search in the forun but I dont see anything. I decided write to you.
I create a coupon with this code: 3414c5314a.
But when I go to check in information option I put the code but dont show nothing.
the options in spanish are: INFORMACIÓN --> CUPONES DE DESCUENTO
What I do wrong, or I need set enabled other options?.
Thanks
Rolando Maldonado
www.todoenguate.com
Re: Apple Zen Support Thread
Hi Jade,
Thanks for the prompt reply but i just could not get the thing done.
Quote:
Originally Posted by
jettrue
1. This doesn't happen in the stock version of the template, I need to see a link.
2. includes/templates/template_default/templates/tpl_modules_main_product_image.php
once you change it, then move it to includes/templates/apple_zen/templates/ so that you're changes will still be there after an upgrade
3. So you want to not have the product name in bold? You want to remove the product name for every product?
4. includes/templates/template_default/templates/tpl_product_info_display.php
That file is nicely segmented into chunks. First you'll need to grab the description chunk, and move the right after this:
<!--eof Product details list -->
Then move the price chunk right after the description chunk.
Then if you want the manufactured by to show up before the model portion, re-arrange this section:
<ul id="productDetailsList">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?> <?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>
1. This is the link to the page
http://www.showroom.com.my/shop/inde...&products_id=6
2. includes/templates/template_default/templates/tpl_modules_main_product_image.php
I have try to remove the bold one in the script but the wording "larger image" is still there
<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>
3. I want to replace the product name with the manufacturer. And I would like the product name appear allign together with the price , model and description.
4. This is how I arrange the chunk but is still not working. I still could not bring the price and description down right after the manufacturer by.
<!--bof Product details list -->
<?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
<ul id="productDetailsList" class="floatingBox back">
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li>' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_quantity == 1) ? '<li>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n"; ?>
<!-- <?php // echo '<li>' . zen_image(DIR_WS_IMAGES . zen_get_products_manufacturers_image($_GET['products_id'])) . '</li>'; ?> -->
</ul>
<br class="clearBoth" />
<?php
}
?>
<!--eof Product details list -->
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
<!--bof Product Price block -->
<p id="productPrices" class="productGeneral">
<?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
?></p>
<!--eof Product Price block -->
Re: Apple Zen Support Thread
I have a quick question. I installed the news addon and that seems to work great. But the problem I have is that when the page for the news or archives is loaded it actually pushes the right side boxes to the bottom of the page. Which file(s) would I edit to maintain the proper spacing within that page.
Thank You
Chris
main site
http://randallsreptiles.com/index.php?main_page=index
news page
http://randallsreptiles.com/index.ph...&article_id=10
Re: Apple Zen Support Thread
Quote:
Originally Posted by
rmaldonado
Hi Jade,
I need help about of coupon. I search in the forun but I dont see anything. I decided write to you.
I create a coupon with this code: 3414c5314a.
But when I go to check in information option I put the code but dont show nothing.
the options in spanish are: INFORMACIÓN --> CUPONES DE DESCUENTO
What I do wrong, or I need set enabled other options?.
Thanks
Rolando Maldonado
www.todoenguate.com
Please ask this in the general forum.