Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Bug with checkout - User can get charged no P+P!!!!


Floob

Recommended Posts

Posted

that is why both language box and currency box should not be showed during checkout... it messes things up...

in the default install there is a check in column_left and column_right... if we're on a checkout page don't show those boxes.

 

Guess you've moved the boxes out of that check?

"Politics is the art of preventing people from taking part in affairs which properly concern them"

Posted

hmm, I guess so.... :?

 

Here is part of my column_left

 

  require(DIR_WS_BOXES . 'information.php');



if (substr(basename($PHP_SELF), 0, 8) != 'checkout')

   include(DIR_WS_BOXES . 'languages.php');

   include(DIR_WS_BOXES . 'currencies.php');



?>

Does that help?

 

How should I edit it?

Posted

if (substr(basename($PHP_SELF), 0, 8) != 'checkout') {

   include(DIR_WS_BOXES . 'languages.php'); 

   include(DIR_WS_BOXES . 'currencies.php'); 

}

 

is correct

(yours is missing { and } )

"Politics is the art of preventing people from taking part in affairs which properly concern them"

Posted

now promise you will not go about removing accolades here and there anymore...

It is a nasty habit! :D

"Politics is the art of preventing people from taking part in affairs which properly concern them"

Archived

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

×
×
  • Create New...