Page 234 of 305 FirstFirst ... 134184224232233234235236244284 ... LastLast
Results 2,331 to 2,340 of 3042
  1. #2331
    Join Date
    Nov 2008
    Posts
    1
    Plugin Contributions
    0

    Default 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!

  2. #2332
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Adding a flash (.swf) header

    Quote Originally Posted by gtoger View Post
    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.

  3. #2333
    Join Date
    Nov 2008
    Posts
    8
    Plugin Contributions
    0

    Default 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 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!

  4. #2334
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by treasured2 View Post
    Hi - I LOVE MY SITE! Thanks for the template it is WONDERFUL! I also appreciate the different colors that I can use with it 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>.&nbsp;Copyright &copy; ' . 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>');

  5. #2335
    Join Date
    Nov 2008
    Posts
    4
    Plugin Contributions
    0

    Default 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.


  6. #2336
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by showroom View Post
    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.

    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>

  7. #2337
    Join Date
    Aug 2008
    Posts
    26
    Plugin Contributions
    0

    Default 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

  8. #2338
    Join Date
    Nov 2008
    Posts
    4
    Plugin Contributions
    0

    Default 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 View Post
    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 -->

  9. #2339
    Join Date
    May 2008
    Location
    Waterloo, Ontario
    Posts
    10
    Plugin Contributions
    0

    Default 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

  10. #2340
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by rmaldonado View Post
    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.

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR