Disable 'Next' button in Order Guide

CatalogCat
Tera Contributor

One of the items included in my Order Guide will contain only information and a link. 

Is there any way that users can make it to the 'Choose options' stage, to continue clicking on the link, and not fill in any variables or continue to the 'Summary' stage? Can I deactivate the 'Next' button for the relevant item? 

My first and simplest idea was to use a Content item, but those are not possible to use in an Order Guide. The 'No order now' or 'No cart' options did not work either. Is this even possible?  

I am on London version and the user interface is Service Portal.

5 REPLIES 5

Prins Kumar Gup
Giga Guru

Hi,

Open your order guide nad try it after filling the mandatory fields and click "Choose Option" then a new tab will be opened in that tab you "Next Tab" UI Action. Right-click on that UI action and click "Inspect". Please see the below-attached screenshot.

and create OnLoad catalog client script on that order guide and use below code:

function onLoad() {

$('button_id').hide();// 
    Or
JQuery('button_id').hide();

    Or
$('#button_id').hide();
    Or
JQuery('#button_id').hide();

}

If my replies have helped you at all, I’d really appreciate it if you click the Helpful button and if my reply is the answer you were looking for, it would be awesome if you could click the Accepted Solution button!
Best Regards,
PKG