Wordpress / Woocommerce ::基于表单的支付网关选项

时间:2013-05-22 07:15:55

标签: wordpress e-commerce woocommerce

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

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

请指教。我对woocommerce很新。

非常感谢。

1 个答案:

答案 0 :(得分:-1)

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

  

C:\ XAMPP \ htdocs中\ WordPress的\可湿性粉剂内容\插件\ 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';

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