Results 1 to 10 of 3244

Hybrid View

  1. #1
    Join Date
    Oct 2008
    Posts
    48
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by rc11888 View Post
    ok. copy in the "order confirmation page" file only? or the whole template itself?
    Just the "order confirmation page" file (sorry - I should have said that in my reply).

    If that makes the page look okay then you can start reintroducing the changes you need - but do it a tiny bit at a time and make sure the page looks right after each change.

  2. #2
    Join Date
    Jan 2009
    Posts
    39
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi, I wonder if there is a way to turn Cherry Zen from been "fluid" to "static".

  3. #3
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by daymobrew View Post
    Just the "order confirmation page" file (sorry - I should have said that in my reply).

    If that makes the page look okay then you can start reintroducing the changes you need - but do it a tiny bit at a time and make sure the page looks right after each change.
    ok here is the "original" page for includes/templates/custom/templates/tpl_checkout_confirmation.php

    [SCR]<?php
    /**
    * Page Template
    *
    * Loaded automatically by index.php?main_page=checkout_confirmation.<br />
    * Displays final checkout details, cart, payment and shipping info details.
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_checkout_confirmation_default.php 5326 2006-12-21 18:12:54Z drbyte $
    */
    ?>
    <div class="centerColumn" id="checkoutConfirmDefault">

    <h1 id="checkoutConfirmDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

    <!-- bof Order Steps (tableless) -->
    <?php echo ORDER_REVIEW; ?>

    <div id="order_steps">
    <div class="order_steps_text">
    <span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_2; ?></span><span id="active_step_text"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_3; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_4; ?></span>
    </div>
    <div class="order_steps_line_2">
    <span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_inactive">&nbsp;</span>
    </div>
    </div>
    <!-- eof Order Steps (tableless) -->

    <?php if ($messageStack->size('redemptions') > 0) echo $messageStack->output('redemptions'); ?>
    <?php if ($messageStack->size('checkout_confirmation') > 0) echo $messageStack->output('checkout_confirmation'); ?>
    <?php if ($messageStack->size('checkout') > 0) echo $messageStack->output('checkout'); ?>

    <?php
    if (isset($_SESSION['customer_id'])) {
    ?>
    <div id="checkoutBillto" class="back">
    <h2 id="checkoutConfirmDefaultBillingAddress"><?php echo HEADING_BILLING_ADDRESS; ?></h2>
    <?php if (!$flagDisablePaymentAddressChange) { ?>
    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' .

    zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <?php } ?>

    <address><?php echo zen_address_format($order->billing['format_id'], $order->billing, 1, ' ', '<br />'); ?></address>
    <?php
    }
    ?>

    <?php
    $class =& $_SESSION['payment'];
    ?>

    <h4 id="checkoutConfirmDefaultPayment"><?php echo HEADING_PAYMENT_METHOD; ?></h4>
    <p id="checkoutConfirmDefaultPaymentTitle"><?php echo $GLOBALS[$class]->title; ?></p>

    <?php
    if (is_array($payment_modules->modules)) {
    if ($confirmation = $payment_modules->confirmation()) {
    ?>
    <div class="important"><?php echo $confirmation['title']; ?></div>
    <?php
    }
    ?>
    <div class="important">
    <?php
    for ($i=0, $n=sizeof($confirmation['fields']); $i<$n; $i++) {
    ?>
    <div class="back"><?php echo $confirmation['fields'][$i]['title']; ?></div>
    <div ><?php echo $confirmation['fields'][$i]['field']; ?></div>
    <?php
    }
    ?>
    </div>
    <?php
    }
    ?>

    <br class="clearBoth" />
    </div>

    <?php
    if ($_SESSION['sendto'] != false) {
    ?>
    <div id="checkoutShipto" class="forward">
    <h4 id="checkoutConfirmDefaultShippingAddress"><?php echo HEADING_DELIVERY_ADDRESS; ?></h4>
    <div class="buttonRow forward"><?php echo '<a href="' . $editShippingButtonLink . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>

    <address><?php echo zen_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br />'); ?></address>

    <?php
    if ($order->info['shipping_method']) {
    ?>
    <h4 id="checkoutConfirmDefaultShipment"><?php echo HEADING_SHIPPING_METHOD; ?></h4>
    <p id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></p>

    <?php
    }
    ?>
    </div>
    <?php
    }
    ?>
    <br class="clearBoth" />
    <hr />
    <?php
    // always show comments
    // if ($order->info['comments']) {
    ?>

    <h4 id="checkoutConfirmDefaultHeadingComments"><?php echo HEADING_ORDER_COMMENTS; ?></h4>

    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <div><?php echo (empty($order->info['comments']) ? NO_COMMENTS_TEXT : nl2br(zen_output_string_protected($order->info['comments'])) . zen_draw_hidden_field('comments', $order->info['comments'])); ?></div>
    <br class="clearBoth" />
    <?php
    // }
    ?>
    <hr />

    <h4 id="checkoutConfirmDefaultHeadingCart"><?php echo HEADING_PRODUCTS; ?></h4>

    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_SHOPPING_CART, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <br class="clearBoth" />

    <?php if ($flagAnyOutOfStock) { ?>
    <?php if (STOCK_ALLOW_CHECKOUT == 'true') { ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></div>
    <?php } else { ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></div>
    <?php } //endif STOCK_ALLOW_CHECKOUT ?>
    <?php } //endif flagAnyOutOfStock ?>


    <table border="0" width="100%" cellspacing="0" cellpadding="0" id="cartContentsDisplay">
    <tr class="cartTableHeading">
    <th scope="col" id="ccQuantityHeading" width="30"><?php echo TABLE_HEADING_QUANTITY; ?></th>
    <th scope="col" id="ccProductsHeading"><?php echo TABLE_HEADING_PRODUCTS; ?></th>
    <?php
    // If there are tax groups, display the tax columns for price breakdown
    if (sizeof($order->info['tax_groups']) > 1) {
    ?>
    <th scope="col" id="ccTaxHeading"><?php echo HEADING_TAX; ?></th>
    <?php
    }
    ?>
    <th scope="col" id="ccTotalHeading"><?php echo TABLE_HEADING_TOTAL; ?></th>
    </tr>
    <?php // now loop thru all products to display quantity and price ?>
    <?php for ($i=0, $n=sizeof($order->products); $i<$n; $i++) { ?>
    <tr class="<?php echo $order->products[$i]['rowClass']; ?>">
    <td class="cartQuantity"><?php echo $order->products[$i]['qty']; ?>&nbsp;x</td>
    <td class="cartProductDisplay"><?php echo $order->products[$i]['name']; ?>
    <?php echo $stock_check[$i]; ?>

    <?php // if there are attributes, loop thru them and display one per line
    if (isset($order->products[$i]['attributes']) && sizeof($order->products[$i]['attributes']) > 0 ) {
    echo '<ul class="cartAttribsList">';
    for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
    ?>
    <li><?php echo $order->products[$i]['attributes'][$j]['option'] . ': ' . nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value'])); ?></li>
    <?php
    } // end loop
    echo '</ul>';
    } // endif attribute-info
    ?>
    </td>

    <?php // display tax info if exists ?>
    <?php if (sizeof($order->info['tax_groups']) > 1) { ?>
    <td class="cartTotalDisplay">
    <?php echo zen_display_tax_value($order->products[$i]['tax']); ?>%</td>
    <?php } // endif tax info display ?>
    <td class="cartTotalDisplay">
    <?php echo $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']);
    if ($order->products[$i]['onetime_charges'] != 0 ) echo '<br /> ' . $currencies->display_price($order->products[$i]['onetime_charges'], $order->products[$i]['tax'], 1);
    ?>
    </td>
    </tr>
    <?php } // end for loopthru all products ?>
    </table>
    <hr />

    <?php
    if (MODULE_ORDER_TOTAL_INSTALLED) {
    $order_totals = $order_total_modules->process();
    ?>
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div>
    <?php
    }
    ?>

    <?php
    echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');

    if (is_array($payment_modules->modules)) {
    echo $payment_modules->process_button();
    }
    ?>
    <hr />
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>

    </div>[/SCR]

    and here is my current includes/templates/custom/templates/tpl_checkout_confirmation.php

    [SCR]<?php
    /**
    * Page Template
    *
    * Loaded automatically by index.php?main_page=checkout_confirmation.<br />
    * Displays final checkout details, cart, payment and shipping info details.
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_checkout_confirmation_default.php 5326 2006-12-21 18:12:54Z drbyte $
    */
    ?>
    <div class="centerColumn" id="checkoutConfirmDefault">

    <h1 id="checkoutConfirmDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

    <!-- bof Order Steps (tableless) -->
    <?php echo ORDER_REVIEW; ?>

    <div id="order_steps">
    <div class="order_steps_text">
    <span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_2; ?></span><span id="active_step_text"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_3; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_4; ?></span>
    </div>
    <div class="order_steps_line_2">
    <span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_inactive">&nbsp;</span>
    </div>
    </div>
    <!-- eof Order Steps (tableless) -->

    <?php if ($messageStack->size('redemptions') > 0) echo $messageStack->output('redemptions'); ?>
    <?php if ($messageStack->size('checkout_confirmation') > 0) echo $messageStack->output('checkout_confirmation'); ?>
    <?php if ($messageStack->size('checkout') > 0) echo $messageStack->output('checkout'); ?>

    <div id="checkoutShipto" class="back">
    <h4 id="checkoutConfirmDefaultBillingAddress"><?php echo HEADING_BILLING_ADDRESS; ?></h4>
    <?php if (!$flagDisablePaymentAddressChange) { ?>
    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <?php } ?>

    <address><?php echo zen_address_format($order->billing['format_id'], $order->billing, 1, ' ', '<br />'); ?></address>

    <?php
    $class =& $_SESSION['payment'];
    ?>

    <h4 id="checkoutConfirmDefaultPayment"><?php echo HEADING_PAYMENT_METHOD; ?></h4>
    <p id="checkoutConfirmDefaultPaymentTitle"><?php echo $GLOBALS[$class]->title; ?></p>

    <?php
    if (is_array($payment_modules->modules)) {
    if ($confirmation = $payment_modules->confirmation()) {
    ?>
    <div class="important"><?php echo $confirmation['title']; ?></div>
    <?php
    }
    ?>
    <div class="important">
    <?php
    for ($i=0, $n=sizeof($confirmation['fields']); $i<$n; $i++) {
    ?>
    <div class="back"><?php echo $confirmation['fields'][$i]['title']; ?></div>
    <div ><?php echo $confirmation['fields'][$i]['field']; ?></div>
    <?php
    }
    ?>
    </div>
    <?php
    }
    ?>

    <br class="clearBoth" />
    </div>

    <?php
    if ($_SESSION['sendto'] != false) {
    ?>
    <div id="checkoutShipto" class="forward">
    <h4 id="checkoutConfirmDefaultShippingAddress"><?php echo HEADING_DELIVERY_ADDRESS; ?></h4>
    <div class="buttonRow forward"><?php echo '<a href="' . $editShippingButtonLink . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>

    <address><?php echo zen_address_format($order->delivery['format_id'], $order->delivery, 1, ' ', '<br />'); ?></address>

    <?php
    if ($order->info['shipping_method']) {
    ?>
    <h4 id="checkoutConfirmDefaultShipment"><?php echo HEADING_SHIPPING_METHOD; ?></h4>
    <p id="checkoutConfirmDefaultShipmentTitle"><?php echo $order->info['shipping_method']; ?></p>

    <?php
    }
    ?>
    </div>
    <?php
    }
    ?>
    <br class="clearBoth" />
    <hr />
    <?php
    // always show comments
    // if ($order->info['comments']) {
    ?>

    <h4 id="checkoutConfirmDefaultHeadingComments"><?php echo HEADING_ORDER_COMMENTS; ?></h4>

    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <div><?php echo (empty($order->info['comments']) ? NO_COMMENTS_TEXT : nl2br(zen_output_string_protected($order->info['comments'])) . zen_draw_hidden_field('comments', $order->info['comments'])); ?></div>
    <br class="clearBoth" />
    <?php
    // }
    ?>
    <hr />

    <h4 id="checkoutConfirmDefaultHeadingCart"><?php echo HEADING_PRODUCTS; ?></h4>

    <div class="buttonRow forward"><?php echo '<a href="' . zen_href_link(FILENAME_SHOPPING_CART, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_EDIT_SMALL, BUTTON_EDIT_SMALL_ALT) . '</a>'; ?></div>
    <br class="clearBoth" />

    <?php if ($flagAnyOutOfStock) { ?>
    <?php if (STOCK_ALLOW_CHECKOUT == 'true') { ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CAN_CHECKOUT; ?></div>
    <?php } else { ?>
    <div class="messageStackError"><?php echo OUT_OF_STOCK_CANT_CHECKOUT; ?></div>
    <?php } //endif STOCK_ALLOW_CHECKOUT ?>
    <?php } //endif flagAnyOutOfStock ?>


    <table border="0" width="100%" cellspacing="0" cellpadding="0" id="cartContentsDisplay">
    <tr class="cartTableHeading">
    <th scope="col" id="ccQuantityHeading" width="30"><?php echo TABLE_HEADING_QUANTITY; ?></th>
    <th scope="col" id="ccProductsHeading"><?php echo TABLE_HEADING_PRODUCTS; ?></th>
    <?php
    // If there are tax groups, display the tax columns for price breakdown
    if (sizeof($order->info['tax_groups']) > 1) {
    ?>
    <th scope="col" id="ccTaxHeading"><?php echo HEADING_TAX; ?></th>
    <?php
    }
    ?>
    <th scope="col" id="ccTotalHeading"><?php echo TABLE_HEADING_TOTAL; ?></th>
    </tr>
    <?php // now loop thru all products to display quantity and price ?>
    <?php for ($i=0, $n=sizeof($order->products); $i<$n; $i++) { ?>
    <tr class="<?php echo $order->products[$i]['rowClass']; ?>">
    <td class="cartQuantity"><?php echo $order->products[$i]['qty']; ?>&nbsp;x</td>
    <td class="cartProductDisplay"><?php echo $order->products[$i]['name']; ?>
    <?php echo $stock_check[$i]; ?>

    <?php // if there are attributes, loop thru them and display one per line
    if (isset($order->products[$i]['attributes']) && sizeof($order->products[$i]['attributes']) > 0 ) {
    echo '<ul class="cartAttribsList">';
    for ($j=0, $n2=sizeof($order->products[$i]['attributes']); $j<$n2; $j++) {
    ?>
    <li><?php echo $order->products[$i]['attributes'][$j]['option'] . ': ' . nl2br(zen_output_string_protected($order->products[$i]['attributes'][$j]['value'])); ?></li>
    <?php
    } // end loop
    echo '</ul>';
    } // endif attribute-info
    ?>
    </td>

    <?php // display tax info if exists ?>
    <?php if (sizeof($order->info['tax_groups']) > 1) { ?>
    <td class="cartTotalDisplay">
    <?php echo zen_display_tax_value($order->products[$i]['tax']); ?>%</td>
    <?php } // endif tax info display ?>
    <td class="cartTotalDisplay">
    <?php echo $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']);
    if ($order->products[$i]['onetime_charges'] != 0 ) echo '<br /> ' . $currencies->display_price($order->products[$i]['onetime_charges'], $order->products[$i]['tax'], 1);
    ?>
    </td>
    </tr>
    <?php } // end for loopthru all products ?>
    </table>
    <hr />

    <?php
    if (MODULE_ORDER_TOTAL_INSTALLED) {
    $order_totals = $order_total_modules->process();
    ?>
    <div id="orderTotals"><?php $order_total_modules->output(); ?></div>
    <?php
    }
    ?>

    <?php
    echo zen_draw_form('checkout_confirmation', $form_action_url, 'post', 'id="checkout_confirmation" onsubmit="submitonce();"');

    if (is_array($payment_modules->modules)) {
    echo $payment_modules->process_button();
    }
    ?>
    <hr />
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CONFIRM_ORDER, BUTTON_CONFIRM_ORDER_ALT, 'name="btn_submit" id="btn_submit"') ;?></div>
    </form>
    <div class="buttonRow back"><?php echo TITLE_CONTINUE_CHECKOUT_PROCEDURE . '<br />' . TEXT_CONTINUE_CHECKOUT_PROCEDURE; ?></div>

    </div>[/SCR]

    i cant find a single difference between the two.. i haven't re-uploaded the new original page yet because i cant seem to find a difference.. please help me with this if you can find a single flaw in my particular tpl_checkout_confirmation.php page
    Thanks alot-
    Ryan -RSK owner

  4. #4
    Join Date
    Oct 2008
    Posts
    48
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by rc11888 View Post
    i cant find a single difference between the two.. i haven't re-uploaded the new original page yet because i cant seem to find a difference.. please help me with this if you can find a single flaw in my particular tpl_checkout_confirmation.php page
    Unfortunately I don't have the time to check the code.

    Please upload the original file - there might have been a glitch when you were uploading the file and uploading a new copy might fix it.

  5. #5
    Join Date
    Dec 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I wanted to display some my left boxes in the center column on the front page.

    the effect I am trying to get is like this website:
    http://www.christianbook.com/
    where the side boxes are at the bottom of the center colum.

  6. #6
    Join Date
    Dec 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by nikki72 View Post
    I wanted to display some my left boxes in the center column on the front page.

    the effect I am trying to get is like this website:
    http://www.christianbook.com/
    where the side boxes are at the bottom of the center colum.
    I got help with this in another thread. So no one needs bother, also my question about the advanced search header.. I found the mod -search categories in header- and moded it.

    I now have search by
    Catergory(drop down) Manufact.(dropdown) search text box {submit}

    So if anyone else needs the moded file I'll share it, however.... I must say it's really FUN getting it like you want in CSS when you are as green as I am. Thx to those who did help.

    You can view it at my test site:
    www.2antioch.org/store It's in the development stage so there are no products... etc
    Last edited by nikki72; 11 Jan 2009 at 06:32 AM.

  7. #7
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by daymobrew View Post
    Unfortunately I don't have the time to check the code.

    Please upload the original file - there might have been a glitch when you were uploading the file and uploading a new copy might fix it.
    I appreciate your help.. it worked perfect as far as i can see so far.. i dont see anything wrong with it now...again i appreciate you very much

    Ryan-RSK owner

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

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