Title: Replace place_order text button
Last modified: August 31, 2016

---

# Replace place_order text button

 *  Resolved [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/)
 * Hi! First, I have to say that this plugin saved my life. I tried so many others
   but any of them worked. Thank you! Thank you so much.
    Now I need to ask if there
   is a way to chande the button “Please, submit you quote request” in the checkout.
   I am from Brasil and I need to put “Solicitar orçamento” instead. Another question:
   is there a way to change “add to cart” to “add to quote/request a quote” (just
   to know, because I would have to change to “adicionar ao orçamento”
 * One more time: thank you!
 * [https://wordpress.org/plugins/woo-rfq-for-woocommerce/](https://wordpress.org/plugins/woo-rfq-for-woocommerce/)

Viewing 11 replies - 16 through 26 (of 26 total)

[←](https://wordpress.org/support/topic/replace-place_order-text-button/?output_format=md)
[1](https://wordpress.org/support/topic/replace-place_order-text-button/?output_format=md)
2

 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083931)
 * in 1.3.1 you can change the wording further by adding this to functions.php
 *     ```
       //your own proceed to checkout text
       add_filter('gpls_woo_rfq_proceed_to_checkout','gpls_woo_rfq_proceed_to_checkout',10,1);
   
       function gpls_woo_rfq_proceed_to_checkout($proceed_to_checkout){
   
       	$proceed_to_checkout = "your own proceed to checkout text";
       	return $proceed_to_checkout;
       }
   
       // when you have a RFQ checkout setting
       add_filter('gpls_woo_rfq_rfq_submit_your_order_text','gpls_woo_rfq_rfq_submit_your_order_text',10,1);
   
       function gpls_woo_rfq_rfq_submit_your_order_text($order_button_text){
   
       	$order_button_text = "your own submit QUOTE text ";
       	return $order_button_text;
       }
   
       // when you have a normal checkout setting
       add_filter('gpls_woo_rfq_checkout_submit_your_order_text','gpls_woo_rfq_checkout_submit_your_order_text',10,1);
   
       function gpls_woo_rfq_checkout_submit_your_order_text($order_button_text){
   
       	$order_button_text = "your own submit ORDER text ";
       	return $order_button_text;
       }
       ```
   
 *  Thread Starter [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083932)
 * Should I add all of 3? And only replace the text inside the **“**text**“**?
    
   Thanks
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083933)
 * you can add all three.
 *  Thread Starter [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083945)
 * Thanks.
    I added but it still “Please, submit…” (if you would like to see, [http://personalizadora.com.br/checkout/](http://personalizadora.com.br/checkout/))
   Thanks!
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083949)
 * should have worked. I tested on my copy.
    The only other thing i can think is
   what i wrote before , your own theme or another plugin . In the future , i will
   add these to settings to change all these labels safely.
 *  Thread Starter [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083950)
 * Hum, I see.
    I should only replace the “your own submit something text” right?
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083951)
 * yes
    also make sure you have the latest update.
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083952)
 * reinstall the plugin from the latest copy. You might not have the latest version
 *  Thread Starter [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083958)
 * Ok, I will try it!
 *  Thread Starter [yasmimdoss](https://wordpress.org/support/users/yasmimdoss/)
 * (@yasmimdoss)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083965)
 * Hi friend so I tried it and it didn’t work.
    Now, when I turn the plugin off 
   my button at the checkout is “Finalizar orçamento”
 * Any idea what it could be and how can I fix it?
 *  Plugin Author [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * (@gplsaver)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083969)
 * When you turn the plugin <u>off</u> then it should have no affect on what is 
   there. Your theme or another plugin seems to be interfering.

Viewing 11 replies - 16 through 26 (of 26 total)

[←](https://wordpress.org/support/topic/replace-place_order-text-button/?output_format=md)
[1](https://wordpress.org/support/topic/replace-place_order-text-button/?output_format=md)
2

The topic ‘Replace place_order text button’ is closed to new replies.

 * ![](https://ps.w.org/woo-rfq-for-woocommerce/assets/icon-128x128.png?rev=2024323)
 * [NP Quote Request for WooCommerce](https://wordpress.org/plugins/woo-rfq-for-woocommerce/)
 * [Support Threads](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-rfq-for-woocommerce/reviews/)

 * 26 replies
 * 2 participants
 * Last reply from: [Neah Plugins](https://wordpress.org/support/users/gplsaver/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/replace-place_order-text-button/page/2/#post-7083969)
 * Status: resolved