Hi,
I think that you'll just have to edit the "worldpay_end.php" file of your worldpay file (hikashop/plugin/payment/worldpay), and to modify these lines :
foreach( $vars as $name => $value ) {
echo '<input type="hidden" name="'.$name.'" value="'.htmlspecialchars((string)$value).'" />';
}
by :
foreach( $vars as $name => $value ) {
echo '<input type="hidden" name="'.$name.'" value="'.htmlspecialchars((string)$value).'" />';
}
echo '<input type=hidden name="testMode" value="100" />';
Hope this will help you.