• Hi,

    I’m working on building a WooCommerce Payment gateway for a client. Their gateway currently does not support subscriptions. Using this plugin the payment method is still showing. We have not added yith_subscriptions to the supports property of the gateway but it looks like it’s not being removed due to the ywsbs_enable_manual_renews option defaulting to yes therefore bypassing the unset( $gateways[ $gateway_id ] ); in yith-woocommerce-subscription/includes/class.yith-wc-subscription-cart.php:631

    Do you know what this setting/option is for, and where it can be set?

    Plugin version: 2.10.0

Viewing 1 replies (of 1 total)
  • Hi @craiggene,

    The ywsbs_enable_manual_renews option is set to yes so that the customer can pay for the renewal order on the My Account page, since this is the only way to pay for renewals.

    If you need to change this option, you can do so by adding the following line of code to your child theme’s functions.php file:

    get_option( 'ywsbs_enable_manual_renews', 'no' )

Viewing 1 replies (of 1 total)
  • The topic ‘Incompatible Gateway showing on checkout’ is closed to new replies.