• Resolved yasmimdoss

    (@yasmimdoss)


    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/

Viewing 11 replies - 16 through 26 (of 26 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    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

    (@yasmimdoss)

    Should I add all of 3? And only replace the text inside the text?
    Thanks

    Plugin Author Neah Plugins

    (@gplsaver)

    you can add all three.

    Thread Starter yasmimdoss

    (@yasmimdoss)

    Thanks.
    I added but it still “Please, submit…” (if you would like to see, http://personalizadora.com.br/checkout/)
    Thanks!

    Plugin Author Neah Plugins

    (@gplsaver)

    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

    (@yasmimdoss)

    Hum, I see.
    I should only replace the “your own submit something text” right?

    Plugin Author Neah Plugins

    (@gplsaver)

    yes
    also make sure you have the latest update.

    Plugin Author Neah Plugins

    (@gplsaver)

    reinstall the plugin from the latest copy. You might not have the latest version

    Thread Starter yasmimdoss

    (@yasmimdoss)

    Ok, I will try it!

    Thread Starter yasmimdoss

    (@yasmimdoss)

    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

    (@gplsaver)

    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)

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