Title: Change button text on Proforma
Last modified: March 28, 2018

---

# Change button text on Proforma

 *  Resolved [ArcticFritid](https://wordpress.org/support/users/metuza/)
 * (@metuza)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/change-button-text-on-proforma/)
 * Hello,
 * I am using this filter to change button text in my account page, wpo_wcpdf_myaccount_button_text
   but it seems to only work with invoice and not proforma.
 * I am using invoice as order confirmation and proforma as delivery confirmation.
 * Thanks
    Rune
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fchange-button-text-on-proforma%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Contributor [Ewout](https://wordpress.org/support/users/pomegranate/)
 * (@pomegranate)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/change-button-text-on-proforma/#post-10125687)
 * Hello Rune,
    If you change the document title in the Documents > Proforma tab(
   version 2.2.0 or higher), this should change the my account button text too. 
   That’s by far the easiest way 🙂 Alternatively, you can change this with the 
   filter `wpo_wcpdf_myaccount_proforma_button` which is the proforma equivalent
   of `wpo_wcpdf_myaccount_button_text`.
 * If you have any other questions regarding the Professional extension, please 
   email us at [support@wpovernight.com](https://wordpress.org/support/topic/change-button-text-on-proforma/support@wpovernight.com?output_format=md),
   wordpress.org does not allow us to use these forums for premium support.
 * Thanks!
 * Ewout
 *  Thread Starter [ArcticFritid](https://wordpress.org/support/users/metuza/)
 * (@metuza)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/change-button-text-on-proforma/#post-10125831)
 * Hello Ewout!
 * I did find the second filter so this did the trick:
 *     ```
       function wpo_wcpdf_myaccount_button_text( $button_text, $invoice ) {
       	if ( $invoice->get_title() == "Ordrebekreftelse" ) {
       	$button_text = "Ordre (PDF)";
       	}
       	if ( $invoice->get_title() == "Leveringsbekreftelse" ) {
       	$button_text = "Levering (PDF)";
       	}
       	return $button_text;
       }
       add_filter( 'wpo_wcpdf_myaccount_button_text', 'wpo_wcpdf_myaccount_button_text', 10, 2 );
       add_filter( 'wpo_wcpdf_myaccount_proforma_button', 'wpo_wcpdf_myaccount_button_text', 10, 2 );
       ```
   
 * Thanks, i’ll use the email next time ..
 * Brgds
    Rune

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change button text on Proforma’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-pdf-invoices-packing-slips/assets/icon-256x256.
   png?rev=2189942)
 * [PDF Invoices & Packing Slips for WooCommerce](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-pdf-invoices-packing-slips/reviews/)

## Tags

 * [Button text](https://wordpress.org/support/topic-tag/button-text/)
 * [my account](https://wordpress.org/support/topic-tag/my-account/)

 * 2 replies
 * 2 participants
 * Last reply from: [ArcticFritid](https://wordpress.org/support/users/metuza/)
 * Last activity: [8 years, 1 month ago](https://wordpress.org/support/topic/change-button-text-on-proforma/#post-10125831)
 * Status: resolved