• Resolved ABarBot

    (@abarbot)


    This is a third party credit card plugin for Stripe for WooCommerce and Pay for Payments wont add fees to this merchant option in the cart. It’ll work for the built in methods for WooCommerce. I have confirmed that my theme Storefront is up to date and is able to see fees if added manually with

    function add_test_fee( $cart ) {
            $cart->add_fee('Test fee',10);
        }
        add_action('woocommerce_cart_calculate_fees','add_test_fee');

    Any ideas on how to fix this? I really like this plugin.

    https://wordpress.org/plugins/woocommerce-pay-for-payment/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor podpirate

    (@podpirate)

    Hi,
    Stripe considers itself unavailable when the cart total is below 50 ct. The moment when the pay4pay tries to figure out which gateway to use, the cart total is still zero (to be calculated yet) and Stripe is unavaliable.
    I made a small change in v 1.3.5 (just published) now trying to consider all installed gateways, in favor of the available ones. In my testing scenario it works now.
    cheers,
    jörn

    Thread Starter ABarBot

    (@abarbot)

    Thread resolved. Worked perfectly. Thank you!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not adding fees in Stripe for WooCommerce by Stephen Zuniga’ is closed to new replies.