我添加了一个新的 WooCommerce 自定义支付网关插件,这个插件向我展示了 woocommerce 设置页面中的 2checkout 功能,如下所示
![在此处输入图像描述][1]
但是当用户检查 2checkout 选项并单击下订单按钮然后在站点前面执行什么操作时,我如何在 2co 站点中发送我的产品价值
我附上了我的 woocommerce 自定义支付网关插件的图像,文件名是 class-wc-custom_payment_gateway_1 所以在这个文件中我使用了下面的代码
<form action='https://www.2checkout.com/checkout/purchase' method='post'>
<input type='hidden' name='sid' value='5456777' >
<input type='hidden' name='product_id' value='10' >
<input type='hidden' name='quantity' value='1' >
<input name='submit' type='submit' value='Add to Cart' >
</form>
我如何在支付网关 2checkout 页面中设置的此表单中获取表单值以及如何在单击站点上的下订单按钮时重定向表单值
这是我的产品详细信息,我在单击下订单按钮时发送了产品详细信息
感谢你的回复