Zen Cart Logo
Forums / Addon Templates / Ocean Front Template Support Thread

Ocean Front Template Support Thread

Views: 56,761

Results 81 to 100 of 270
23 Aug 2008, 8:52 PM
#81
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Ocean Front Template Support Thread

Doodlebuckets:

Uh Oh! Now there is no tab at all!

For now restore it back to your original code (with the double tab).

I'm trying to get the mod to work on my test site but for some reason the function call doesn't seem to work. My error log keeps telling me the function is undefined although I've included it in fuctions_customers.php

I'll do some work and see what I can come up with.

23 Aug 2008, 9:21 PM
#82
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

For now restore it back to your original code (with the double tab).

I'm trying to get the mod to work on my test site but for some reason the function call doesn't seem to work. My error log keeps telling me the function is undefined although I've included it in fuctions_customers.php

I'll do some work and see what I can come up with.

I appreciate it. No rush. I don't plan to launch just yet :)

24 Aug 2008, 12:07 AM
#83
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Doodlebuckets:

I appreciate it. No rush. I don't plan to launch just yet :)

I've been looking at the issue and I think it has something to do with how the function is structured but can't pinpoint exactly where the problem is.

This is the function:

/// bof Personalized My Account Link by bigjoed
function zen_customer_store_account() {

if (isset($_SESSION['customer_id']) && $_SESSION['customer_first_name']) {
  $store_account_string = sprintf(TEXT_STORE_ACCOUNT_PERSONAL, zen_output_string_protected($_SESSION['customer_first_name']), zen_href_link(FILENAME_ACCOUNT));
} else {
  $store_account_string = sprintf(TEXT_STORE_ACCOUNT_GUEST, zen_href_link(FILENAME_LOGIN, '', 'SSL'), zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'));
}

return $store_account_string;

}
/// eof Personalized My Account Link by bigjoed

When you're logged in the first part of the function works just fine. As far as I can tell it has something to do with the else statement (or when you're not logged in.
There seem to be two links calls (actually 3, if you count the link in this define statement (TEXT_STORE_ACCOUNT_GUEST)) that may be causing the double tab. I just can't figure out how to correct it.

The mod works just fine using the default tpl_header.php (that is just using the unordered list without moving things around. In the default the My Account link doesn't display until you're logged in.

I'll keep working on it (but at this point, You may have to modify the navbar a little bit to ge the personal account information to show properly.)

I'll let you know.

24 Aug 2008, 2:46 PM
#84
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Originally Posted by Doodlebuckets View Post
I appreciate it. No rush. I don't plan to launch just yet :)

I think I got it fixed:

Open includes/languages/ocean_front/english.php

find this section and delete the highlighted portions:

/// bof Personalized My Account Link by bigjoed
  define('TEXT_STORE_ACCOUNT_PERSONAL', '%s\'s Account');  
  define('TEXT_STORE_ACCOUNT_GUEST', '<a href="%s">Your Account</a>');
/// eof Personalized My Account Link by bigjoed

This link was causing the double tab.

The tab will now show Your Account when not logged in and User Name Account when logged in

So the navigation section of
includes/templates/ocean_front/common/tpl_header.php

Should now look like this

<!--bof-navigation display-->
<div id="navMainWrapper">
<div id="navMain">
    <ul class="back">
    <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>
<?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 } } ?>
</ul>
<ul class="forward">
<li class="contact"><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>

<!--bof Personalized My Account Link by bigjoed-->
    <?php if (SHOW_CUSTOMER_GREETING == '1') { ?><li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT); ?>"><?php echo zen_customer_store_account(); ?></a></li><?php } ?>
<!--eof Personalized My Account Link by bigjoed-->

<?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
<?php }?>
    <li class="viewCart"><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
</ul>

</div>
27 Aug 2008, 9:02 PM
#85
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

I think I got it fixed:

Thanks so much Clyde! That did it...

I have another quandry: My login page doesn't display nicely even with the centercolumn fix you have. Maybe if you looked at the current css, you could see something to fix. I have messed and messed with it, but I just don't know css well enough to fix it:

[php]/**
 * Login CSS Stylesheet
 *
 * @package easy signup and login
 * @copyright Copyright 2007 Numinix Technology http://www.numinix.com
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: login.css 2 2008-07-31 01:49:39Z numinix $
 */

#login-password {
    margin-left: 0px;
    }

#login-email-address {
    margin-left: 0px;
    }

.centerColumn {
    margin-bottom: 2.5em;
    margin: auto;
}

#loginColumnLeft {
    width: 60%;
    margin-left:0;
    float: left;
    }

#loginColumnRight {
    width: 35%;
    padding-left:2.4em;
    float: left;
    }
    
.loginFieldsetRight, .loginFieldsetLeft {
    width:100%;
}

fieldset {
    border: 1px solid #cccccc;
    padding: 6px;
}

legend {
    border: 1px solid #4A4A4A; /*#cccccc;*/
    background-color: #F0FFF0; /*#E8E8E8;*/
    color: #4A4A4A;
}
.buttonRow {
    padding-top: 5px;
}[/php]
27 Aug 2008, 10:36 PM
#86
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Doodlebuckets:

Thanks so much Clyde! That did it...

I have another quandry: My login page doesn't display nicely even with the centercolumn fix you have. Maybe if you looked at the current css, you could see something to fix. I have messed and messed with it, but I just don't know css well enough to fix it:

[php]/**

#login-password {
margin-left: 0px;
}

#login-email-address {
margin-left: 0px;
}

.centerColumn {
margin-bottom: 2.5em;
margin: auto;
}

#loginColumnLeft {
width: 60%;
margin-left:0;
float: left;
}

#loginColumnRight {
width: 35%;
padding-left:2.4em;
float: left;
}

.loginFieldsetRight, .loginFieldsetLeft {
width:100%;
}

fieldset {
border: 1px solid #cccccc;
padding: 6px;
}

legend {
border: 1px solid #4A4A4A; /#cccccc;/
background-color: #F0FFF0; /#E8E8E8;/
color: #4A4A4A;
}
.buttonRow {
padding-top: 5px;
}[/php]


Amy,

Try adding a width to the .centercolumn declaration

.centerColumn {
    margin-bottom: 2.5em;
    margin: auto;
    width: 790px;
}
28 Aug 2008, 1:44 AM
#87
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

Amy,

Try adding a width to the .centercolumn declaration

.centerColumn {
margin-bottom: 2.5em;
margin: auto;
width: 790px;
}

Yes, I've done that and nothing changes. https://www.babygiftbasketstores.com/store/index.php?main_page=login
I just put it to 10px and it didn't budge! It's just not affecting the width at all...

28 Aug 2008, 2:16 AM
#88
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Doodlebuckets:

Yes, I've done that and nothing changes. https://www.babygiftbasketstores.com/store/index.php?main_page=login
I just put it to 10px and it didn't budge! It's just not affecting the width at all...

Amy can you post your tpl_login.php file.

I can use it and the css on my test site and see whats what.

28 Aug 2008, 4:45 PM
#89
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

Amy can you post your tpl_login.php file.

I can use it and the css on my test site and see whats what.

This is from my tpl_login_default.php fileL

[php]<?php

/**

 * Page Template

 *

 * @package templateSystem
- Easy Sign-Up and Login
 * @copyright Copyright 2007-2008 Numinix Technology http://www.numinix.com
 * @copyright Copyright 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_login_default.php 2 2008-07-31 01:49:39Z numinix $

 */

?>


<div id="centerColumn">
<?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>
<div id="loginColumnLeft">


<?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
<!-- BOF SHOPPING CART -->
<?php

  if ($fec_order_total_enabled) {
    include(DIR_WS_TEMPLATE . 'templates/tpl_modules_esl_ordertotal.php');
  } 
?>
<!-- EOF SHOPPING CART -->
<!-- BEGIN CHECKOUT WITHOUT ACCOUNT -->
<?php
    if (FEC_NOACCOUNT_SWITCH == 'true') {
      if ($_SESSION['cart']->count_contents() > 0) { ?>
        <fieldset class="loginFieldsetLeft">
        <legend><?php echo COWOA_HEADING; ?></legend>
        <br class="clearBoth" />
        <div class="information"><?php echo TEXT_RATHER_COWOA; ?></div>
        <div class="buttonRow forward">
        <?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
        <?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
        </fieldset>
<?php }} ?>
<!-- END CHECKOUT WITHOUT ACCOUNT -->
<!--BOF PPEC split login- DO NOT REMOVE-->

<fieldset class="loginFieldsetLeft">

<legend><?php echo HEADING_NEW_CUSTOMER_SPLIT; ?></legend>
<br class="clearBoth"/>
<?php if ($_SESSION['cart']->count_contents() > 0) { ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT_NO_CART; ?></div>
<?php } else { ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT; ?></div>
<?php } ?>

<?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>

<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>

<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>
</form>

</form>

</fieldset>
</div> <!-- end columnLeft -->
<div id="loginColumnRight">
<fieldset class="loginFieldsetRight">
<legend><?php echo HEADING_RETURNING_CUSTOMER_SPLIT; ?></legend>
<br class="clearBoth"/>

<div class="information"><?php echo TEXT_RETURNING_CUSTOMER_SPLIT; ?></div>

<br class="clearBoth"/>
<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>

<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>

<?php echo zen_draw_input_field('email_address', '', 'size="25"', 'id="login-email-address"'); ?>
<br class="clearBoth" />
<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>

<?php echo zen_draw_password_field('password', '', 'size="25"', 'id="login-password"'); ?>
<?php 
    if (PROJECT_VERSION_MAJOR == '1' && substr(PROJECT_VERSION_MINOR, 0, 3) == '3.8') { 
        echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); 
    }
?>    
<div class="buttonRow back"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>

</fieldset>
<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
</form>
<br class="clearBoth"/>

<!-- BOF PAYPAL -->
<?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** 
?>
<?php if ($ec_button_enabled) { ?>
<fieldset class="loginFieldsetRight">
<legend><?php echo HEADING_PAYPAL; ?></legend>
<br class="clearBoth"/>
<div class="information"><?php echo TEXT_PAYPAL_INTRODUCTION_SPLIT; ?></div>
<br class="clearBoth"/>
<div class="center"><?php require(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php'); ?></div>
</fieldset>
<br class="clearBoth"/>
<?php } ?>

<?php // ** END PAYPAL EXPRESS CHECKOUT ** 
?>
<!-- EOF PAYPAL -->

<?php if (FEC_CONFIDENCE == 'true') { ?>
    <fieldset class="loginFieldsetRight">
        <legend><?php echo HEADING_CONFIDENCE; ?></legend>
    </fieldset>
<?php } ?>

</div> <!-- end columnRight -->
<!--EOF PPEC split login- DO NOT REMOVE-->

<?php } else { ?>

<!--BOF normal login-->

<?php

  if ($_SESSION['cart']->count_contents() > 0) {

?>

<div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>

<?php

  }

?>

<?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>

<fieldset>

<legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>



<label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>

<?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="login-email-address"'); ?>

<br class="clearBoth" />



<label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>

<?php echo zen_draw_password_field('password', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_password') . ' id="login-password"'); ?>

<br class="clearBoth" />
<?php 
    if (PROJECT_VERSION_MAJOR == '1' && substr(PROJECT_VERSION_MINOR, 0, 3) == '3.8') {
        echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']);
    }
?>
</fieldset>



<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>

<div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>

</form>

<br class="clearBoth" />



<!-- BEGIN CHECKOUT WITHOUT ACCOUNT -->
<?php
    if (FEC_NOACCOUNT_SWITCH == 'true') {
        if ($_SESSION['cart']->count_contents() > 0) { ?>
           <fieldset>
        <legend>Checkout Without Account</legend>
        <?php echo TEXT_RATHER_COWOA; ?>
        <div class="buttonRow forward">
        <?php echo "<a href=\"" . zen_href_link(FILENAME_NO_ACCOUNT, '', 'SSL') . "\">"; ?>
        <?php echo zen_image_button(BUTTON_IMAGE_CONTINUE, BUTTON_CONTINUE_ALT); ?></a></div>
        <br class="clearBoth" />
        </fieldset>
<?php }} ?>
<!-- END CHECKOUT WITHOUT ACCOUNT -->
<?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>

<fieldset>

<legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>



<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>



<?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>



</fieldset>



<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>

</form>

<!--EOF normal login-->

<?php } ?>
</div>

     <?php
  // ** GOOGLE CHECKOUT **
  if (strtolower(MODULE_PAYMENT_GOOGLECHECKOUT_STATUS) == 'true') {
    ?>
    <div style="margin-top:100px;">
    <?php
    include(DIR_WS_MODULES . 'show_google_components.php');
  ?>
  </div>
  <?php
  }
  // ** END GOOGLE CHECKOUT **
  ?>[/php]
28 Aug 2008, 5:19 PM
#90
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Doodlebuckets:

This is from my tpl_login_default.php fileL

OK, I'll put them up on my test site and see if I can track down the problem.

28 Aug 2008, 5:41 PM
#91
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

clydejones:

OK, I'll put them up on my test site and see if I can track down the problem.

OK, I think I got it:

open tpl_login_default.php

right at the top make the highlighted change.

<div class="centerColumn"> <?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?> <div id="loginColumnLeft">

In your original file you had <div id="centerColumn">

This is calling an id from the stylesheet instead of the class that is there.

28 Aug 2008, 6:53 PM
#92
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

clydejones:

OK, I think I got it:

open tpl_login_default.php

right at the top make the highlighted change.

<div class="centerColumn"> <?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?> <div id="loginColumnLeft">

In your original file you had <div id="centerColumn">

This is calling an id from the stylesheet instead of the class that is there.

You might also want to make the following changes to the login.css

.centerColumn {
margin-bottom: 2.5em;
margin: auto;
width: 790px;
}

#loginColumnLeft {
width: 60%;
margin-left:0;
float: left;
}

#loginColumnRight {
width: 35%;
padding-left:2.4em;
float: right;
}

6 Sep 2008, 1:19 AM
#93
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

You might also want to make the following changes to the login.css

.centerColumn {
margin-bottom: 2.5em;
margin: auto;
width: 790px;
}

#loginColumnLeft {
width: 60%;
margin-left:0;
float: left;
}

#loginColumnRight {
width: 35%;
padding-left:2.4em;
float: right;
}

Clyde, I've been meaning to tell you thanks, that this worked great! But I am expecting our 7th child and the few brain cells I have left aren't working at their fullest potential :D But thanks for all your help. You are my favorite Zen man!

6 Sep 2008, 1:30 AM
#94
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Doodlebuckets:

Clyde, I've been meaning to tell you thanks, that this worked great! But I am expecting our 7th child and the few brain cells I have left aren't working at their fullest potential :D But thanks for all your help. You are my favorite Zen man!

Glad its working.

22 Dec 2008, 10:17 AM
#95
jessica2000 avatar

jessica2000

New Zenner

Join Date:
Dec 2008
Posts:
7
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

Clyde, I love your template, but I'm having a problem that I can not seem to resolve:

When viewing product details for any product, there seems to be a left margin that I can't seem to remove. All the other pages seem to be fine. To see what I'm talking about please view:

http://www.newemergencypreparedness.com/catalog/index.php?main_page=product_info&cPath=10&products_id=11

I have tried everything the stylesheet and still can not seem to locate the fix I need. This has been frustrating me for many days now. Please help.

22 Dec 2008, 6:30 PM
#96
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Jessica2000:

Clyde, I love your template, but I'm having a problem that I can not seem to resolve:

When viewing product details for any product, there seems to be a left margin that I can't seem to remove. All the other pages seem to be fine. To see what I'm talking about please view:

http://www.newemergencypreparedness.com/catalog/index.php?main_page=product_info&cPath=10&products_id=11

I have tried everything the stylesheet and still can not seem to locate the fix I need. This has been frustrating me for many days now. Please help.

Which browser is this happening in?

22 Dec 2008, 10:14 PM
#97
jessica2000 avatar

jessica2000

New Zenner

Join Date:
Dec 2008
Posts:
7
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

Which browser is this happening in?

It is happening in IE7 ...I just tried FF3, and it seems to work fine there. I've tried on multiple computers, and the same result in IE7.

Here's a screenshot of what is happening:

http://www.newemergencypreparedness.com/catalog/screenshot.jpg

22 Dec 2008, 11:35 PM
#98
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Jessica2000:

It is happening in IE7 ...I just tried FF3, and it seems to work fine there. I've tried on multiple computers, and the same result in IE7.

Here's a screenshot of what is happening:

http://www.newemergencypreparedness.com/catalog/screenshot.jpg

Try this and see if it helps.

Just unzip the file and upload the entire includes folder to your server.

[Attachment no longer available]

23 Dec 2008, 1:55 AM
#99
jessica2000 avatar

jessica2000

New Zenner

Join Date:
Dec 2008
Posts:
7
Plugin Contributions:
0

Re: Ocean Front Template Support Thread

clydejones:

Try this and see if it helps.

Just unzip the file and upload the entire includes folder to your server.

[Attachment no longer available]

Sorry, but it did not fix the problem. Could it be something in the zen cart files and not the template that is causing it?

23 Dec 2008, 2:33 AM
#100
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Ocean Front Template Support Thread

Jessica2000:

Sorry, but it did not fix the problem. Could it be something in the zen cart files and not the template that is causing it?

Have you edited/modified tpl_product_info_display.php in any way?