• I hate the new WooCommerce PayPal Payments Plugin, the big ugly buttons are not removable, you can’t customize them? they ruin your layout and UI. It literally affects my conversions and stops sales!! Useless. I am going back to a third party plugin, or rather just stop using PayPal all together.

Viewing 1 replies (of 1 total)
  • Plugin Support Krystian from Syde

    (@inpsydekrystian)

    Hello @williamdavies33

    Thank you for reaching out and sharing your concerns about the WooCommerce PayPal Payments Plugin.

    I would like to inform you that it is possible to disable the PayPal smart buttons and revert to the default “Place order” button. This will redirect your customers to the PayPal website instead of using the smart button directly on your checkout page. Here’s a simple snippet you can add to your theme’s functions.php file to enable the default “Place order” button:

    // Enable "Place order" button for PayPal gateway
    add_filter('woocommerce_paypal_payments_use_place_order_button', '__return_true');

    Additionally, if you wish to customize the label of the button, you can use the following code to change it to something more suitable for your site:

    // Change the button label - defaults to "Proceed to PayPal"
    add_filter('woocommerce_payal_payments_place_order_button_text', function() {
        return __( 'Place order', 'woocommerce' );
    });

    Please keep in mind that the appearance of the PayPal buttons is dictated by PayPal’s policies and not by us as the plugin developers. However, I will pass your feedback along to the relevant team. We understand the importance of aesthetics and user experience, and while we have limited control over these aspects, we value your input and strive to improve where possible.

    Kind Regards,

    Krystian

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this review.