• Resolved jcharpentier86

    (@jcharpentier86)


    Hello, I have a question please. How to change the text of the Pay With Paypal button (on invoice page) to something else, for example “Payez Maintenant” (French)?

    Thank you in advance,
    Jean

Viewing 1 replies (of 1 total)
  • Plugin Author SlicedInvoices

    (@slicedinvoices)

    Hi there,

    There is a hook available you can use to change the text. Here is some example code you can add to your (child) theme’s functions.php file to change the text:

    add_filter( 'sliced_get_gateway_paypal_label', 'sliced_custom_gateway_paypal_label' );
    function sliced_custom_gateway_paypal_label() {
    	return 'Payez Maintenant';
    }

    Hope that helps!

    Cheers,
    David
    Sliced Invoices Support

Viewing 1 replies (of 1 total)
  • The topic ‘How to change text of Pay With Paypal button?’ is closed to new replies.