2

有人可以建议我如何将我们公司自己的支付网关集成到 woocommerce 中吗?我有它的文档,我非常了解它。我的问题是如何将它作为基于表单的支付网关(http://docs.woothemes.com/document/payment-gateway-api/)实现到 woocommerce

我想要的只是将“下订单”按钮的链接更改为我们自己的支付网关。我应该在结帐页面上更改某些内容吗?

请指教。我对 woocommerce 很陌生。

非常感谢。

4

1 回答 1

-1

嘿,我也有同样的问题。只需转到插件 woocommerce 的路径并打开 woocommerce.php 它将在

C:\xampp\htdocs\wordpress\wp-content\plugins\woocommerce

并且您包括自己的付款方式

function core_gateways( $methods ) {
    $methods[] = 'WC_Gateway_BACS';
    $methods[] = 'WC_Gateway_Cheque';
    $methods[] = 'WC_Gateway_COD';
    $methods[] = 'WC_Gateway_Mijireh';
    $methods[] = 'WC_Gateway_Paypal';
    $methods[] = 'WC_Gateway_Firstdata';
    return $methods;
}

如果您的网关是授权的,则将 ti 添加为

$methods[] = 'WC_Gateway_Authorize';

您将在结帐页面中获得一个选项,然后您可以创建自己的代码以在选择该网关时进行处理。

于 2013-07-27T05:34:12.620 回答