单击按钮后,我想打开一个新窗口,并尝试在 Zencart 中修改代码。我想我正试图在正确的地方操纵它……但我不知道该怎么做:
(对于任何知道 Zencart 的人,这在 paypalwpp.php 文件中,第 1616-1618 行)
// This is where we actually redirect the customer's browser to PayPal. Upon return from PayPal, they go to ec_step2
header("HTTP/1.1 302 Object Moved");
zen_redirect($paypal_url . "?cmd=_express-checkout&token=" . $_SESSION['paypal_ec_token'] . $userActionKey);
这是我的业余尝试:
zen_redirect( "target='_blank'" . $paypal_url . "?cmd=_express-checkout&token=" . $_SESSION['paypal_ec_token'] . $userActionKey);
当然,我添加了“target='_blank'”,但它不起作用......我怎么能通过修改上面的代码来打开一个新窗口?谢谢你!