Hide Submit/Order Now from one catalog item

harver31
Tera Contributor

Usecase : Need to hide Order Now/ Submit  button from a catalog item?

7 REPLIES 7

Not working at all 

 

Community Alums
Not applicable

 

Client script:

Sai149_2-1716814828641.png

this.jQuery("#submit-btn").hide();

Result:

Sai149_0-1716814676519.png

 

kk53
Tera Contributor

you can hide or cancel submission based on the condition for example  based on the region you can hide submit button click on like if helpful

function onSubmit() {
if( g_form.getValue('region') == 'apac'){ //select the regions
g_form.addErrorMessage('Request was not created'); //change with your message

//Make sure dirty form still works
g_form.submitted = false;

//Abort the submission
return false;
}
}