Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2009
    Posts
    27
    Plugin Contributions
    0

    Default zencart background template?

    <?php
    $siteurl = "http://copperheadfab.com";
    print <<<EOT
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <title>Copperhead Fabrication</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <link rel="stylesheet" type="text/css" href="../stylesheet.css" />
    </head>
    <body>
    <table cellpadding=0 cellspacing=0 align=center>
    <tr>
    <td colspan=3>
    <div id="TopNav">
    <!-- START TOP LINKS -->
    <div id="TableContainer"><a href="/index.php?action=contactus" >Contact Us</a>
    <span class="Pipe1">|</span>
    <a href="$siteurl/index.php">Home Page</a>
    <span class="Pipe1">|</span>
    <a href="$siteurl/index.php?action=aboutus">About Us</a>
    </div>
    <!-- END TOP LINKS -->

    </div>
    </td>
    </tr><tr>
    <td colspan=3 id="TopBorder" align=right>


    <a name="top"></a>


    <!-- START MAIN NAV -->

    <table class="MainNavContainer">
    <tr>
    <td><a href="$siteurl/index.php" class="
    EOT;
    if ($action==""){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">Homepage</a></td>

    <td><a href="$siteurl/store" class="
    EOT;
    if ($action=="catalog"){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">Products</a></td>

    <td><a href="$siteurl/index.php?action=custom" class="
    EOT;
    if ($action=="custom"){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">Custom Work</a></td>

    <td><a href="$siteurl/index.php?action=photogallery" class="
    EOT;
    if ($action=="photogallery"){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">Photo Gallery</a></td>

    <td><a href="$siteurl/index.php?action=aboutus" class="
    EOT;
    if ($action=="aboutus"){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">About Us</a></td>

    <td><a href="$siteurl/index.php?action=contactus" class="
    EOT;
    if ($action=="contactus"){
    print "Button2";
    }else{
    print "Button";
    }
    print <<<EOT
    ">Contact US</a>
    </td>
    <td width=30></td>
    </tr>
    </table>
    </td>
    </tr><tr>
    <!-- END MAIN NAV -->
    <!-- START MAIN CONTENT -->

    <td class="leftside" valign=top width=36><img src="$siteurl/images/left.jpg"></td>
    <td valign=top bg##############################>
    <div class="IntroContainer">




    </div>
    </td>

    <td class="rightside" valign=top width=36><img src="$siteurl/images/right.jpg"></td>
    </tr><tr>
    EOT;
    ?>

    <!-- END MAIN CONTENT -->

    <td colspan=3>
    <div class="FooterContainer">
    <div class="BackToTop"><a href="#top">back to top</a></div>
    </div>

    <div class="FooterSpacer"></div>
    <span class="Green">&copy; <?php date('Y'); ?> Copperhead Fabrication. All Rights Reserved.
    </div></td></tr></table>

    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-1639866-1";
    urchinTracker();
    </script>

    </body>

    </html>

    that is the existing site template for a website that my friend wants to use zencart instead of the shopping cart that is there. Is there anyway I can just take this code and place it in a zencart template and have the store be in the middle? The site i am playing with isnt live yet but existing site is www.Copperheadfab.com.

  2. #2
    Join Date
    Oct 2009
    Posts
    27
    Plugin Contributions
    0

    Default Re: zencart background template?

    What i tried is include_once ("template.php"); in the main page and it shows it, but the zencart is further down the page???

    <?php
    /** Blue Highlites 2.0 Template - YOUR_CATALOG/includes/templates/blue_highlites2/common/tpl_main_page.php
    * Common Template - tpl_main_page.php
    *
    * Governs the overall layout of an entire page<br />
    * Normally consisting of a header, left side column. center column. right side column and footer<br />
    * For customizing, this file can be copied to /templates/your_template_dir/pagename<br />
    * example: to override the privacy page<br />
    * - make a directory /templates/my_template/privacy<br />
    * - copy /templates/templates_defaults/common/tpl_main_page.php to /templates/my_template/privacy/tpl_main_page.php<br />
    * <br />
    * to override the global settings and turn off columns un-comment the lines below for the correct column to turn off<br />
    * to turn off the header and/or footer uncomment the lines below<br />
    * Note: header can be disabled in the tpl_header.php<br />
    * Note: footer can be disabled in the tpl_footer.php<br />
    * <br />
    * $flag_disable_header = true;<br />
    * $flag_disable_left = true;<br />
    * $flag_disable_right = true;<br />
    * $flag_disable_footer = true;<br />
    * <br />
    * // example to not display right column on main page when Always Show Categories is OFF<br />
    * <br />
    * if ($current_page_base == 'index' and $cPath == '') {<br />
    * $flag_disable_right = true;<br />
    * }<br />
    * <br />
    * example to not display right column on main page when Always Show Categories is ON and set to categories_id 3<br />
    * <br />
    * if ($current_page_base == 'index' and $cPath == '' or $cPath == '3') {<br />
    * $flag_disable_right = true;<br />
    * }<br />
    *
    * @package templateSystem
    * @copyright Copyright 2008 JAWCS http://jawcs.com
    * @copyright Portions 2003-2007 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_main_page.php 7085 2007-09-22 04:56:31Z ajeh $
    */

    // the following IF statement can be duplicated/modified as needed to set additional flags
    if (in_array($current_page_base,explode(",",'account_history_info,checkout_payment, checkout_confirmation,list_pages_to_skip_all_right_sideboxes_on_here,separated_b y_commas,and_no_spaces')) ) {
    $flag_disable_left = true;
    }

    // JAWCS - Uncomment the following lines to restore default Zen Cart behavior as in the above (remove only the "//" at the beginning of the lines)
    // if (in_array($current_page_base,explode(",",'account,create_account,login,account_h istory_info,checkout_shipping,checkout_payment,checkout_confirmation,list_pages_ to_skip_all_right_sideboxes_on_here,separated_by_commas,and_no_spaces')) ) {
    $flag_disable_right = true;
    // }
    include_once ("template.php");
    $header_template = 'tpl_header.php';
    $footer_template = 'tpl_footer.php';
    $left_column_file = 'column_left.php';
    $right_column_file = 'column_right.php';
    $body_id = ($this_is_home_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);
    ?>
    <body id="<?php echo $body_id . 'Body'; ?>"<?php if($zv_onload !='') echo ' onload="'.$zv_onload.'"'; ?>>
    <!--bof- banner #1 display -->
    <?php
    if (SHOW_BANNERS_GROUP_SET1 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET1)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerOne" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>

    <div id="mainWrapper">
    <?php
    /**
    * prepares and displays header output
    *
    */
    if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_HEADER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
    $flag_disable_header = true;
    }
    require($template->get_template_dir('tpl_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_header.php');?>

    <table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
    <tr>
    <?php
    if (COLUMN_LEFT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
    // global disable of column_left
    $flag_disable_left = true;
    }
    if (!isset($flag_disable_left) || !$flag_disable_left) {
    ?>
    <!-- JAWCS - to restore default zc setting delete 190 and replace 'px' (including quotes) with COLUMN_WIDTH_LEFT (without quotes) -->
    <td id="navColumnOne" class="columnLeft" style="width:190<?php echo 'px'; ?>">
    <?php
    /**
    * prepares and displays left column sideboxes
    *
    */
    ?>
    <!-- JAWCS - to restore default zc setting delete 190 and replace echo 'px' (including quotes) with BOX_WIDTH_LEFT (without quotes) -->
    <div id="navColumnOneWrapper" style="width:190<?php echo 'px'; ?>">
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?>
    </div>
    </td>
    <?php
    }
    ?>
    <td valign="top">
    <!-- bof breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
    <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php } ?>
    <!-- eof breadcrumb -->

    <?php
    if (SHOW_BANNERS_GROUP_SET3 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET3)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerThree" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>

    <!-- bof upload alerts -->
    <?php if ($messageStack->size('upload') > 0) echo $messageStack->output('upload'); ?>
    <!-- eof upload alerts -->

    <?php
    /**
    * prepares and displays center column
    *
    */
    require($body_code); ?>

    <?php
    if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerFour" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?></td>

    <?php
    //if (COLUMN_RIGHT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF == 'true' && $_SESSION['customers_authorization'] != 0)) {
    if (COLUMN_RIGHT_STATUS == 0 || (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') || (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == ''))) {
    // global disable of column_right
    $flag_disable_right = true;
    }
    if (!isset($flag_disable_right) || !$flag_disable_right) {
    ?>
    <!-- JAWCS - to restore default zc setting delete 190 and replace 'px' (including quotes) with BOX_WIDTH_RIGHT (without quotes) -->
    <td id="navColumnTwo" class="columnRight" style="width:190<?php echo 'px'; ?>">
    <?php
    /**
    * prepares and displays right column sideboxes
    *
    */
    ?>
    <!-- JAWCS - to restore default zc setting delete 190 and replace 'px' (including quotes) with BOX_WIDTH_RIGHT (without quotes) -->
    <div id="navColumnTwoWrapper" style="width:190<?php echo 'px'; ?>">
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?>
    </div>
    </td>
    <?php
    }
    ?>
    </tr>
    </table>

    <?php
    /**
    * prepares and displays footer output
    *
    */
    if (CUSTOMERS_APPROVAL_AUTHORIZATION == 1 && CUSTOMERS_AUTHORIZATION_FOOTER_OFF == 'true' and ($_SESSION['customers_authorization'] != 0 or $_SESSION['customer_id'] == '')) {
    $flag_disable_footer = true;
    }
    require($template->get_template_dir('tpl_footer.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer.php');
    ?>

    </div>
    <!--bof- parse time display -->
    <?php
    if (DISPLAY_PAGE_PARSE_TIME == 'true') {
    ?>
    <div class="smallText center">Parse Time: <?php echo $parse_time; ?> - Number of Queries: <?php echo $db->queryCount(); ?> - Query Time: <?php echo $db->queryTime(); ?></div>
    <?php
    }
    ?>
    <!--eof- parse time display -->
    <!--bof- banner #6 display -->
    <?php
    if (SHOW_BANNERS_GROUP_SET6 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET6)) {
    if ($banner->RecordCount() > 0) {
    ?>
    <div id="bannerSix" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
    <?php
    }
    }
    ?>
    <!--eof- banner #6 display -->
    include_once ("template.php");
    </body>

  3. #3
    Join Date
    Oct 2009
    Posts
    27
    Plugin Contributions
    0

    Default Re: zencart background template?

    here is a screen shot.
    Attached Images Attached Images  

  4. #4
    Join Date
    Oct 2009
    Posts
    27
    Plugin Contributions
    0

    Default Re: zencart background template?

    I also tried saving the template.php file as tpl_main_page.php and it shows up fine. Then if I add any of the original tpl_main_page code I either get what is shown in the pic or just a black screen. I may be going about this all wrong and if I am please feel free to set me straight. I did redo the css to include all the images and it looked close, but I wanted the layout to be exact as the rest of the site, since I am only replacing the shopping section.

 

 

Similar Threads

  1. can i use template monster 1.3.9 template for 1.3.8a zencart?
    By Player in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 22 Aug 2010, 12:39 PM
  2. Background OUTSIDE of Template
    By Harvezter in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 22 Oct 2009, 05:41 PM
  3. Can i change an Oscommerce template to a zencart template?
    By touchclothing in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 12 Jun 2009, 04:53 PM
  4. Adding a background image behind my ZenCart pages
    By vfrazier in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 4 Sep 2008, 03:16 PM
  5. Not sure how I lost ZenCart background
    By beautifulminds-us in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 24 Nov 2007, 05:32 AM

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