• I enabled this plugin and all applicable settings. While the ‘Add to Cart’ buttons get removed, paypal payment method buttons still show up on product pages.

    Is there a way to get them not to show up?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    Could you tell me what plugin are you using for PayPal ?

    Thread Starter juryiel

    (@juryiel)

    Woocommerce. It has a setting for Paypal Checkout, which adds two paypal-related buttons in addition to the ‘Add to Cart’ button on product pages. You can find it by going to Payment Methods in WooCommerce. There are two Paypal settings. The one I’m talking about is called Paypal Checkout, not just Paypal

    Plugin Author YITHEMES

    (@yithemes)

    HI @juryiel,
    please add this snippet in the functions.php file of your theme:

    function my_ywctm_catalog_classes( $classes ) {
    
    	$classes[] = '.wcppec-checkout-buttons';
    
    	return $classes;
    
    }
    
    add_filter( 'ywctm_catalog_classes', 'my_ywctm_catalog_classes' );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Paypal button doesn’t go away’ is closed to new replies.