Remove ORDER NOW button in service catalog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2014 05:42 AM
I want to remove order now button in service catalog and create submit button in it.can anyone please help me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2014 06:20 AM
Thanks for all replies.But it is not my exact solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2014 12:46 AM
Hi Meda,
Did you find an exact solution to this? I am having the similar requirement to drop off the shopping cart too. Thank you.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2014 01:41 AM
Hi Meda,
Why cannot you use record producer in this case ?
-Rohant

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2014 02:19 AM
Hi Alex Ng,Meda Srishilpa ,
I found the solution for this.
Write this below script in you onload clientscript.
var span = document.getElementById('qty');
var row = span.getElementsByTagName('table')[2].rows[0].cells;
row[1].innerHTML= 'Submit';
Regards,
Harish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2014 05:33 PM
Hi Harish,
Thank you for your reply.
Unfortunately, I need to remove the whole shopping cart and replace it with just a submit button though.