在Stripe和WooCommerce中检索购物车价值

时间:2013-12-13 11:37:44

标签: php woocommerce stripe-payments

我一直在跟随Pippins tutorial to setup Stripe使用WooCommerce购物车。我有插件工作,它已设置好,您可以输入您希望付款的金额为短码。

function pippin_stripe_payment_form($atts, $content = null) {

extract( shortcode_atts( array(
    'amount' => ''
), $atts ) );

global $stripe_options;

ob_start();

有谁知道我如何设置金额来取得WooCommerce结账购物车中的数字而不是短信中输入的金额?结帐购物车> 结账车

1 个答案:

答案 0 :(得分:0)

您可以使用' Stripe免费支付网关进行WooCommerce'作者:SolverCircle。

  1. 下载并激活插件
  2. 转到WooCommerce - >设置 - >结帐
  3. 在页面底部的“付款网关”下,将显示“信用卡”链接
  4. 点击它,您将被带到一个页面。
  5. 勾选'启用条纹'复选框并填写所有信息。
  6. 希望这有帮助! :)

    What you should see at Step 3