The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Change "order now" to "submit" on catalog native form

aloksharma31344
Tera Contributor

Hi Community,

Can we change the 'Order Now' button on the native catalog item to 'Submit' instead? 

2 ACCEPTED SOLUTIONS

mayankkumar
Tera Sage

Hi @aloksharma31344,
I did some workaround to meet your requirement, you can achieve it easily by adding a onLoad catalog client script

 var orderButton = top.document.getElementById("oi_order_now_button");
    if (orderButton) {
        orderButton.innerHTML = 'Submit';
    }

This approach is best if you want it for some specific catalogs (Not for All)
Let me know if you need further help
--------------------------------------------------------------------------------------------------------------------------------------
Please mark my response helpful and accept as solution
Thanks & Regards
Mayank

View solution in original post

prerna_sh
Mega Sage

Hi @aloksharma31344 

You can follow these steps:

  • Navigate to "Maintain Cart Layout", Under "Catalog Definition".
  • In Cart Layout open item ordering widget, "Browser Widget" -> "item Ordering Widget".
  • In Item Ordering Widget, in "Button Label" Related list.
  • Change the name under "Order Now Label".

 

NOTE: This will change the button for all the catalogs, if want for any specific catalog you can try method provide by @mayankkumar 

Please refer attachments for better understanding.
---------------------------------------------------------------------------------------------------------------------------------------------------

If my response solves your query, please marked helpful by selecting Accept as Solution and Helpful. Let me know if anything else is required.

Thanks,

Prerna

View solution in original post

2 REPLIES 2

mayankkumar
Tera Sage

Hi @aloksharma31344,
I did some workaround to meet your requirement, you can achieve it easily by adding a onLoad catalog client script

 var orderButton = top.document.getElementById("oi_order_now_button");
    if (orderButton) {
        orderButton.innerHTML = 'Submit';
    }

This approach is best if you want it for some specific catalogs (Not for All)
Let me know if you need further help
--------------------------------------------------------------------------------------------------------------------------------------
Please mark my response helpful and accept as solution
Thanks & Regards
Mayank

prerna_sh
Mega Sage

Hi @aloksharma31344 

You can follow these steps:

  • Navigate to "Maintain Cart Layout", Under "Catalog Definition".
  • In Cart Layout open item ordering widget, "Browser Widget" -> "item Ordering Widget".
  • In Item Ordering Widget, in "Button Label" Related list.
  • Change the name under "Order Now Label".

 

NOTE: This will change the button for all the catalogs, if want for any specific catalog you can try method provide by @mayankkumar 

Please refer attachments for better understanding.
---------------------------------------------------------------------------------------------------------------------------------------------------

If my response solves your query, please marked helpful by selecting Accept as Solution and Helpful. Let me know if anything else is required.

Thanks,

Prerna