Created
February 3, 2023 18:13
-
-
Save InpsydeNiklas/25d40ab5b9fb1692b1e07b80eb3d121a to your computer and use it in GitHub Desktop.
Add "What is PayPal?" text to PayPal Payments gateway title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function add_ppcp_gateway_title_link( $title, $id ) { | |
if ( 'ppcp-gateway' === $id ) { | |
$title .= sprintf( ' <a href="%s" class="about_ppcp" onclick="javascript:window.open(\'%s\',\'WIPPcp\',\'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=1060, height=700\'); return false;" title="What is PayPal?">What is PayPal?</a>', esc_url( 'https://www.paypal.com/us/webapps/mpp/paypal-popup' ), esc_url( 'https://www.paypal.com/us/webapps/mpp/paypal-popup' ) ); | |
} | |
return $title; | |
} | |
add_filter( 'woocommerce_gateway_title', 'add_ppcp_gateway_title_link', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment