Change checkout PayPal Express button
-
Hi, I see a tutorial for changing paypal button on checkout:
/** * Change the PayPal button image on the Paid Memberships Pro - Membership Checkout page. * * You can add this recipe to your site by creating a custom plugin * or using the Code Snippets plugin available for free in the WordPress repository. * Read this companion article for step-by-step directions on either method. * https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ */ function my_pmpro_paypal_button_image( $url ) { return 'https://www.paypalobjects.com/webstatic/en_US/i/buttons/checkout-logo-large.png'; } add_filter( 'pmpro_paypal_button_image', 'my_pmpro_paypal_button_image' );
But not working when I use Paypal express ID “pmpro_btn-submit-paypalexpress” for the button, what I’m doing wrong?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Change checkout PayPal Express button’ is closed to new replies.