mwbdanish
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Payfast Gateway] WooCommerce Subscription Purchase IssueI have identified the issue. I tested it on the live site, and it is functioning correctly.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Urgent !!! filter hook argument issueat these places the filter has defined with two arguments
includes/class-wc-gateway-stripe.php at line no. 433
includes/abstracts/abstract-wc-stripe-payment-gateway.php at line no. 811
includes/abstracts/abstract-wc-stripe-payment-gateway.php at line no. 1304Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Urgent !!! filter hook argument issuegoto here, includes/class-wc-gateway-stripe.php at line no. 828
you will see this code,
$force_save_source_value = apply_filters( ‘wc_stripe_force_save_source’, false );
as you can see, one argument is passed in the filter here.
Apart from this, there is same filter defined in 3 places with 2 arguments passed
So the problem is that, If I am using the filter, then in the add_filter function, I need to pass the number of arguments but in your case, the same filter is defined with a different number of arguments.
It gives me the fatal error- This reply was modified 11 months, 2 weeks ago by mwbdanish.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Urgent !!! filter hook argument issuethere is a bug in your plugin, I need you to correct that. Please read my above message clearly
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Recurring payment..
- This reply was modified 1 year, 9 months ago by mwbdanish.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Recurring Support CountriesI have gone through Paypal documentation. It seems like the vaulting feature is support only for US.
I have account of the Greece. Could you please confirm with thatForum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Recurring paymentHow can I trigger a function to do the transaction from the third party plugin
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] Recurring paymentis there any way to make a recurring payment from outside your plugin.
Is there any API you guys provided to make a transaction via mandate id ?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Not able make a transactionI have developed a subscription plugin, Plugin is saving the source of the parent order. I have used this filter force save source ( wc_stripe_force_save_source ). The plugin is making a payment for recurring.