- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi Community,
Can we change the 'Order Now' button on the native catalog item to 'Submit' instead?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
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