Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Script formatting gets messed up when I login as a customer


matrix1000

Recommended Posts

Everything works fine and looks fine when I access my site.

Then when I sign into my customer account, all the boxes on the right side of the page, except the Shopping cart box move to the Left side of the Page!?!?!

 

Anyone know why this would happen? I am using a secured server but I don't know why it would change the left and right side formatting.

 

Anyone have any ideas?

 

Thanks in advance.

Link to comment
Share on other sites

Strange, when I'm not logged in it looks fine, when I login it is messed up but then when I log back out its fine again.

 

Doesnt it use the same boxes script whether logged in or not?

just wondering. If you take a look at it its at www.monster-hobbies.com

 

I'll look for a missing tag but its strange it isn't messed up when logged out also.

 

:P

Link to comment
Share on other sites

It looks like its messing up in the Best Sellers box but here is the code, I cant find a problem with it so far but I may be blind :shock:

 

<?php



/*

 $Id: best_sellers.php,v 1.19 2002/06/05 20:59:08 dgw_ Exp $

 osCommerce, Open Source E-Commerce Solutions

 http://www.oscommerce.com

 Copyright (c) 2001 osCommerce

 Released under the GNU General Public License

*/



?>

<!-- best_sellers //-->

<?php



 if ($cPath) {



   $best_sellers_query = tep_db_query("select distinct p.products_id, pd.products_name, p.products_ordered from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_status = '1' and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and (c.categories_id = '" . $current_category_id . "' OR c.parent_id = '" . $current_category_id . "') order by p.products_ordered DESC, pd.products_name limit " . MAX_DISPLAY_BESTSELLERS);



 } else {



   $best_sellers_query = tep_db_query("select p.products_id, pd.products_name, p.products_ordered from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' order by p.products_ordered DESC, pd.products_name limit " . MAX_DISPLAY_BESTSELLERS);



 }







 if (tep_db_num_rows($best_sellers_query) >= MIN_DISPLAY_BESTSELLERS) {



?>



<tr>

 <td>

   <TABLE WIDTH=171 BORDER=0 CELLPADDING=0 CELLSPACING=0>

     <TR>

       <TD COLSPAN=3 ><img src="../../images/boxes/table_bestsellers.jpg" width="171" height="27"></TD>

     </TR>

     <TR>

       <td background="../../images/bck_window.jpg"><table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">

           <tr>

             <td>

               <?php



   $rows = 0;



   $info_box_contents = array();



   while ($best_sellers = tep_db_fetch_array($best_sellers_query)) {



     $rows++;



     $info_box_contents[] = array('align' => 'left',



                                  'text'  => tep_row_number_format($rows) . '. <a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $best_sellers['products_id'], 'NONSSL') . '">' . $best_sellers['products_name'] . '</a>');



   }







   new infoBox($info_box_contents);



?>

             </td>

           </tr>

         </table>

       </TD>

     </TR>

     <TR>

       <TD height="12" COLSPAN=3> <img src="../../images/boxes/table_bottom_a.jpg" width="171" height="12"></TD>

     </TR>

   </TABLE>

 </td>

</tr>

<?php



 }



?>

<!-- best_sellers_eof //-->

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...