stuart-d
7/3/2018 - 12:54 PM

Remove PayPal Standard from displaying at checkout in WooCommerce

Remove PayPal Standard from displaying at checkout in WooCommerce

/**
 * Remove PayPal Standard from displaying at checkout in WooCommerce
 */
function remove_paypal_from_available_payment_gateways( $gateways ) {

	unset( $gateways['paypal'] );

	return $gateways;
}
add_filter( 'woocommerce_available_payment_gateways', 'remove_paypal_from_available_payment_gateways' );