首页 文章

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

提问于
浏览
1

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

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

请指教 . 我对woocommerce很新 .

非常感谢你 .

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';
    

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

相关问题