younmever Posted March 5, 2010 Posted March 5, 2010 Hello to all ginius members, I'm really glad that I can post now I've checked the forums to find the answer, and contacted templatemonster.com where I had bought this template from, but haven't got a clue yet, This is my problem, www.exoticcosmetic.com, it's still being set up. When I create a sample customer, and log in with him, there is no way for the customer to log out. I've checked the includes/header.php mentioned-below, I don't know exactly which part has to be editted. Could you guys please pin-point out where I'm missing? Thank you very much <?php /* $Id: header.php,v 1.42 2003/06/10 18:20:38 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // check if the 'install' directory exists, and warn of its existence if (WARN_INSTALL_EXISTENCE == 'true') { if (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/install')) { $messageStack->add('header', WARNING_INSTALL_DIRECTORY_EXISTS, 'warning'); } } // check if the configure.php file is writeable if (WARN_CONFIG_WRITEABLE == 'true') { if ( (file_exists(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) && (is_writeable(dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/includes/configure.php')) ) { $messageStack->add('header', WARNING_CONFIG_FILE_WRITEABLE, 'warning'); } } // check if the session folder is writeable if (WARN_SESSION_DIRECTORY_NOT_WRITEABLE == 'true') { if (STORE_SESSIONS == '') { if (!is_dir(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NON_EXISTENT, 'warning'); } elseif (!is_writeable(tep_session_save_path())) { $messageStack->add('header', WARNING_SESSION_DIRECTORY_NOT_WRITEABLE, 'warning'); } } } // check session.auto_start is disabled if ( (function_exists('ini_get')) && (WARN_SESSION_AUTO_START == 'true') ) { if (ini_get('session.auto_start') == '1') { $messageStack->add('header', WARNING_SESSION_AUTO_START, 'warning'); } } if ( (WARN_DOWNLOAD_DIRECTORY_NOT_READABLE == 'true') && (DOWNLOAD_ENABLED == 'true') ) { if (!is_dir(DIR_FS_DOWNLOAD)) { $messageStack->add('header', WARNING_DOWNLOAD_DIRECTORY_NON_EXISTENT, 'warning'); } } if ($messageStack->size('header') > 0) { echo $messageStack->output('header'); } ?> <!-- <? // ---- MANUFACTURERS $manufacturers_query = tep_db_query("select manufacturers_id, manufacturers_name from " . TABLE_MANUFACTURERS . " order by manufacturers_name"); if ($number_of_rows = tep_db_num_rows($manufacturers_query)) { echo '<table cellspacing=0 cellpadding=0 width=177 align=center> '. tep_draw_form('manufacturers', tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false), 'get') .' <tr><td colspan=2><b>Search by manufacturers:</b></td></tr> <tr><td height=2 colspan=2></td></tr> <tr><td colspan=2> '; $manufacturers_array = array(); while ($manufacturers = tep_db_fetch_array($manufacturers_query)) { $manufacturers_name = ((strlen($manufacturers['manufacturers_name']) > MAX_DISPLAY_MANUFACTURER_NAME_LEN) ? substr($manufacturers['manufacturers_name'], 0, MAX_DISPLAY_MANUFACTURER_NAME_LEN) . '..' : $manufacturers['manufacturers_name']); $manufacturers_array[] = array('id' => $manufacturers['manufacturers_id'], 'text' => $manufacturers_name); } echo tep_draw_pull_down_menu('manufacturers_id', $manufacturers_array, (isset($HTTP_GET_VARS['manufacturers_id']) ? $HTTP_GET_VARS['manufacturers_id'] : ''), 'onChange="this.form.submit();" size="' . MAX_MANUFACTURERS_LIST . '" class=se1') . tep_hide_session_id(); echo ' </td> </form> </table> '; } ?> --> <table cellspacing=0 cellpadding=0 width=742 height=100% align=center> <tr><td valign=top> <table cellspacing=0 cellpadding=0> <tr><td width=211><a href=<?=tep_href_link('index.php')?>><img src=images/m01.gif width=211 height=85 border=0></a></td> <td colspan=2 width=531 valign=top> <table cellspacing=0 cellpadding=0 width=531> <tr><td height=21></td></tr> <tr><td align=right><a href=<?=tep_href_link('specials.php')?> class=ml1>Specials</a><span class=ch1></span><img src=images/m02.gif width=1 height=11 align=absmiddle><span class=ch1></span><a href=<?=tep_href_link('advanced_search.php')?> class=ml1>Site Search</a><span class=ch1></span><img src=images/m02.gif width=1 height=11 align=absmiddle><span class=ch1></span><a href=<?=tep_href_link('contact_us.php')?> class=ml1>Contact Us</a><span class=ch1></span><img src=images/m02.gif width=1 height=11 align=absmiddle><span class=ch1></span><a href=<?=tep_href_link('account.php')?> class=ml1>Create an account</a><span class=ch1></span><img src=images/m02.gif width=1 height=11 align=absmiddle><span class=ch1></span><a href=<?=tep_href_link('login.php')?> class=ml1>Customer Login</a><span style="padding-left: 5px"></span></td></tr> <tr><td height=15></td></tr> <tr><td align=right><a href=<?=tep_href_link('index.php')?>><img src=images/b01.gif width=104 height=35 border=0></a><span class=ch2></span><a href=<?=tep_href_link('products_new.php')?>><img src=images/b02.gif width=104 height=35 border=0></a><span class=ch2></span><a href=<?=tep_href_link('account.php')?>><img src=images/b03.gif width=104 height=35 border=0></a><span class=ch2></span><a href=<?=tep_href_link('shopping_cart.php')?>><img src=images/b04.gif height=35 border=0></a><span class=ch2></span><a href=<?=tep_href_link('checkout_shipping.php')?>><img src=images/b05.gif width=104 height=35 border=0></a></td></tr> </table> </td></tr> <tr><td height=1></td></tr> <tr><td bgcolor=#DCDFE0 width=211 height=34 align=center> <table cellspacing=0 cellpadding=0> <tr><td width=65 class=ch3>Currencies:</td> <td width=109> <? // CURRENCIES echo tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get'); reset($currencies->currencies); $currencies_array = array(); while (list($key, $value) = each($currencies->currencies)) { $currencies_array[] = array('id' => $key, 'text' => $value['title']); } $hidden_get_variables = ''; reset($HTTP_GET_VARS); while (list($key, $value) = each($HTTP_GET_VARS)) { if ( ($key != 'currency') && ($key != tep_session_name()) && ($key != 'x') && ($key != 'y') ) { $hidden_get_variables .= tep_draw_hidden_field($key, $value); } } echo tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit(); "class=se ') . $hidden_get_variables . tep_hide_session_id(); echo '</form>'; ?> </td></tr> </table> </td> <td bgcolor=#EFF2F3 width=273 height=35 align=center> <table cellspacing=0 cellpadding=0 align=center> <tr><td width=138 class=ch3>Choose your language:</td> <td> <? // LANGUAGES if (!isset($lng) || (isset($lng) && !is_object($lng))) { include(DIR_WS_CLASSES . 'language.php'); $lng = new language; } $languages_string = ''; reset($lng->catalog_languages); while (list($key, $value) = each($lng->catalog_languages)) { $languages_string .= ' <a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('language', 'currency')) . 'language=' . $key, $request_type) . '">' . tep_image(DIR_WS_LANGUAGES . $value['directory'] . '/images/' . $value['image'], $value['name']) . '</a> '; } echo $languages_string; ?> </td></tr> </table> </td> <td bgcolor=#E6E9E9 width=258 align=center> <table cellspacing=0 cellpadding=0 align=center> <tr><td width=24><a href=<?=tep_href_link('shopping_cart.php')?>><img src=images/m06.gif border=0></a></td> <td width=83 class=ch3>Shopping cart:</td> <td class=ch4>now in your cart <a class=ml2 href=<?=tep_href_link('shopping_cart.php')?>><?=$cart->count_contents()?> items</a></td></tr> </table> </td></tr> </table> </td></tr> <tr><td height=100% valign=top> <table cellspacing=0 cellpadding=0 width=742> <tr><td width=211 valign=top style="padding-right: 5px"> <table cellspacing=0 cellpadding=0 width=211> <tr><td height=3></td></tr> <tr><td background=images/m07.gif width=211 height=30><span style="padding-left: 10px"></span><span class=ch5>Browse by category</span></td></tr> <? // ---- CATEGORIES function tep_show_category($counter) { global $tree, $categories_string, $cPath_array; if(!$tree[$counter]['level']){ $categories_string .= $categories_string ? '' : ''; $categories_string .= '<tr><td background=images/m08.gif width=211 height=20><span class=ch6></span><a class=ml3 href='; if ($tree[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $tree[$counter]['path']; } $categories_string .= tep_href_link('index.php', $cPath_new) . '>'; // display categry name $categories_string .= $tree[$counter]['name']; $categories_string .= '</a></td></tr> '; }else{ // SUBCATEGORY $categories_string .= '<tr><td background=images/m08.gif width=211 height=20><span class=ch6></span> '; for($i=0;$i<$tree[$counter]['le vel'];$i++) $categories_string .= ' '; $categories_string .= ' <a class=ml3 style="font-weight:normal;" href='; if ($tree[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $tree[$counter]['path']; } $categories_string .= tep_href_link('index.php', $cPath_new) . '>-'; // display category name $categories_string .= $tree[$counter]['name']; $categories_string .= '</a></td></tr>'; } if ($tree[$counter]['next_id'] != false) { tep_show_category($tree[$counter]['next_id']); } } define(TABLE_CATEGORIES, "categories"); define(TABLE_CATEGORIES_DESCRIPTION, "categories_description"); $categories_string = ''; $tree = array(); $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name"); while ($categories = tep_db_fetch_array($categories_query)) { $tree[$categories['categories_id']] = array('name' => $categories['categories_name'], 'parent' => $categories['parent_id'], 'level' => 0, 'path' => $categories['categories_id'], 'next_id' => false); if (isset($parent_id)) { $tree[$parent_id]['next_id'] = $categories['categories_id']; } $parent_id = $categories['categories_id']; if (!isset($first_element)) { $first_element = $categories['categories_id']; } } //------------------------ if ($cPath) { $new_path = ''; reset($cPath_array); while (list($key, $value) = each($cPath_array)) { unset($parent_id); unset($first_id); $categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name"); if (tep_db_num_rows($categories_query)) { $new_path .= $value; while ($row = tep_db_fetch_array($categories_query)) { $tree[$row['categories_id']] = array('name' => $row['categories_name'], 'parent' => $row['parent_id'], 'level' => $key+1, 'path' => $new_path . '_' . $row['categories_id'], 'next_id' => false); if (isset($parent_id)) { $tree[$parent_id]['next_id'] = $row['categories_id']; } $parent_id = $row['categories_id']; if (!isset($first_id)) { $first_id = $row['categories_id']; } $last_id = $row['categories_id']; } $tree[$last_id]['next_id'] = $tree[$value]['next_id']; $tree[$value]['next_id'] = $first_id; $new_path .= '_'; } else { break; } } } $categories_string .= ''; tep_show_category($first_element); $categories_string .= ''; echo $categories_string; ?> <tr><td background=images/m09.gif width=211 height=30><span style="padding-left: 10px"></span><span class=ch7>Browse by brand</span></td></tr> <? // ---- MANUFACTURERS STRING OUTPUT $manufacturers_query = tep_db_query("select manufacturers_id, manufacturers_name from " . TABLE_MANUFACTURERS . " order by manufacturers_name"); if ($number_of_rows = tep_db_num_rows($manufacturers_query)) { $manufacturers_array = array(); while ($manufacturers = tep_db_fetch_array($manufacturers_query)) { $output .= $output ? '' : ''; $output .= '<tr><td background=images/m08.gif width=211 height=20><span class=ch6></span><a class=ml3 href='; $manufacturers_name = ((strlen($manufacturers['manufacturers_name']) > MAX_DISPLAY_MANUFACTURER_NAME_LEN) ? substr($manufacturers['manufacturers_name'], 0, MAX_DISPLAY_MANUFACTURER_NAME_LEN) . '..' : $manufacturers['manufacturers_name']); $output .= tep_href_link('index.php', 'manufacturers_id='.$manufacturers['manufacturers_id']). '>'.$manufacturers_name; $output .= '</a></td></tr>'; } echo $output; } ?> <tr><td background=images/m10.gif width=211 height=112 style="padding-left: 19px" valign=top> <? // SEARCH ?> <table cellspacing=0 cellpadding=0 width=174> <?=tep_draw_form('quick_find', tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get')?> <tr><td height=12</td></tr> <tr><td class=ch8>Site Search</td></tr> <tr><td height=22></td></tr> <tr><td width=146> <?=tep_draw_input_field('keywords', '', 'size="20" maxlength="50" onclick="this.value=\'\'" value="keyword" class=se2') . ' ' . tep_hide_session_id()?></td><td><input type=image src=images/m12.gif></td></tr> </form> </table> <? // END SEARCH ?> </td></tr> </table> </td> <td valign=top width=526 valign=top align=right> <table cellspacing=0 cellpadding=0 width=526> <tr><td height=3></td></tr> <tr><td><a href=<?=tep_href_link('specials.php')?>><img src=images/m13.jpg width=281 height=226 border=0><img src=images/m14.jpg width=245 height=226 border=0></a></td></tr> <tr><td background=images/m15.gif height=1></td></tr> </table>
younmever Posted March 5, 2010 Author Posted March 5, 2010 This is the first time post for me, Could any member say hi to me? :thumbsup:
Guest Posted March 5, 2010 Posted March 5, 2010 This is the first time post for me, Could any member say hi to me? :thumbsup: hi to me? :thumbsup: Backup your file first Try changing this line <a href=<?=tep_href_link('login.php')?> class=ml1>Customer Login</a> To <?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link('logoff.php', '', 'SSL'); ?>" class="ml1">Customer Logoff</a><?php } else { ?><a href="<?php echo tep_href_link('login.php', '', 'SSL'); ?>" class="ml1">Customer Login</a><?php } ?>
younmever Posted March 5, 2010 Author Posted March 5, 2010 Hello Brian, Thank you so much for your help. It seems perfect when I log in, and it becomes logoff. But when I click on logoff, my IE says 'the website can not display the page' I'd be greatly appriciated if you could check it once again,
Guest Posted March 6, 2010 Posted March 6, 2010 The above code works. What do you mean by "But when I click on logoff, my IE says 'the website can not display the page'" Do you have a page called logoff.php or is it that the page is there but not showing. Do you have a url?
younmever Posted March 6, 2010 Author Posted March 6, 2010 Thanks for the reply, Brian. I did exactly what you said. Here is what happened. After I change the code, I log in with a sample customer, then I can see login becomes logoff, and the site keeps the order information. So I tried to click on logoff, then the Windows Explorer says "The website can not display the page." I do have logoff.php in several places like public_html/logoff.php and public_html/includes/languages/english/logoff.php Just in case you need to see the logoff.php, I copy/paste it here mentioned below <?php /* $Id: logoff.php,v 1.13 2003/06/05 23:28:24 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_LOGOFF); $breadcrumb->add(NAVBAR_TITLE); tep_session_unregister('customer_id'); tep_session_unregister('customer_default_address_id'); tep_session_unregister('customer_first_name'); tep_session_unregister('customer_country_id'); tep_session_unregister('customer_zone_id'); tep_session_unregister('comments'); $cart->reset(); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <!-- body_text //--> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><?php echo tep_image(DIR_WS_IMAGES . 'table_background_man_on_board.gif', HEADING_TITLE); ?></td> <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="pageHeading" align="center"><?php echo HEADING_TITLE; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_MAIN; ?></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> <!-- body_text_eof //--> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Finally, I took out the codes that you recommanded, so it has now <a href=<?=tep_href_link('login.php')?> class=ml1>Customer Login</a> Again, I'm really sorry to bother your Friday night, Brian. Have a good one :P
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 Do you have a link so I can see what it is doing? Hi,don't want to mix in to much but?? <?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?> ??? John sorry sleeping template John To improve is to change; to be perfect is to change often.
Guest Posted March 6, 2010 Posted March 6, 2010 Hi,don't want to mix in to much but?? <?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?> ??? John sorry sleeping template John Hey John, I was going to use the FILENAME_LOGOFF too at first, but who knows how some of these templates are actually put together. Thats why I left it as logoff.php. However that should not stop it from working. So I don't know what is wrong with it.
younmever Posted March 6, 2010 Author Posted March 6, 2010 Thanks for being interested in the issue guys, The address is www.exoticcosmetic.com. And to show you what is going on, I just added your codes back. You can use a sample customer information name:[email protected] and password:737315 Could you try to log in and log out? Thank you so much
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 Hey John, I was going to use the FILENAME_LOGOFF too at first, but who knows how some of these templates are actually put together. Thats why I left it as logoff.php. However that should not stop it from working. So I don't know what is wrong with it. Hi, no cookies either. John To improve is to change; to be perfect is to change often.
Guest Posted March 6, 2010 Posted March 6, 2010 @John Not sure what mean by that. Could you please explain a little more. @younmever I just copied your header and logoff files to my local server and added the code in. It all works as it should. The only thing I can of is maybe your logoff.php is corrupted. If you have a fresh copy of that file, delete the one from your server and upload the new one. If you don't have one contact your template provider to see if you can get one.
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 Hi, no cookies either. John Hi, do not know what you have just changed but by me it now remembers the login/cookies so getting better still blank page but :rolleyes: . going to sleep now will take a look tommorrow bye John To improve is to change; to be perfect is to change often.
younmever Posted March 6, 2010 Author Posted March 6, 2010 Brian, thank you so much for your excellent work. I'll contact with the provider, templatemonster.com about this issue. I guess I stole your priceless Friday night. I'll see you around :rolleyes: John, I'm sorry but I don't understand by login/cookies, but thank you for being interested in my issue. You're always welcome to come back tomorrow with fresh mind.
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 @John Not sure what mean by that. Could you please explain a little more. @younmever I just copied your header and logoff files to my local server and added the code in. It all works as it should. The only thing I can of is maybe your logoff.php is corrupted. If you have a fresh copy of that file, delete the one from your server and upload the new one. If you don't have one contact your template provider to see if you can get one. Hi, Just meant I tried to login/logoff and my browser did not remember the password. To improve is to change; to be perfect is to change often.
Guest Posted March 6, 2010 Posted March 6, 2010 Hi, Just meant I tried to login/logoff and my browser did not remember the password. LOL I just realized what you were talking about. It's 12 am here so a little slow on the draw. I was able to login and navigate through with no problems. The reason for the sid not going away is because of misconfigured configure.php. Most likely incorrect cookie domains and cookie paths, but that still should not have stopped the logoff page from displaying. I don't think so anyway. Do you disagree with that. Like I said outside of a corrupt file, I don't know what else it could be.
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 LOL I just realized what you were talking about. It's 12 am here so a little slow on the draw. I was able to login and navigate through with no problems. The reason for the sid not going away is because of misconfigured configure.php. Most likely incorrect cookie domains and cookie paths, but that still should not have stopped the logoff page from displaying. I don't think so anyway. Do you disagree with that. Like I said outside of a corrupt file, I don't know what else it could be. Two thoughts one observation: We, You more than me are correcting template monsters problems LOL OK doesn't matter really. going to sleep on the problem see tommorrow notice that Customer Login stays the same been learning from guys like you for the last few years so reckon you will get the answer quicker than me To improve is to change; to be perfect is to change often.
♥joli1811 Posted March 6, 2010 Posted March 6, 2010 Two thoughts one observation: You more than me are correcting template monsters problems LOL OK doesn't matter really. Going to sleep on the problem see tomorrow have you noticed that Customer Login stays the same(in the header) I have been learning from guys like you for the last few years!! So I do not reckon I will get the answer quicker than you :D To improve is to change; to be perfect is to change often.
Guest Posted March 6, 2010 Posted March 6, 2010 Two thoughts one observation: We, You more than me are correcting template monsters problems LOL OK doesn't matter really. going to sleep on the problem see tommorrow notice that Customer Login stays the same been learning from guys like you for the last few years so reckon you will get the answer quicker than me Trust me, I am still learning too. Templates from TM can be such a mess can't they? Thanks for all your input. Every little bit helps. :D
Recommended Posts
Archived
This topic is now archived and is closed to further replies.