Hide Submit/Order Now from one catalog item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-27-2024 05:17 AM
Usecase : Need to hide Order Now/ Submit button from a catalog item?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-27-2024 05:31 AM
Not working at all

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-27-2024 06:00 AM
Client script:
this.jQuery("#submit-btn").hide();
Result:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
â05-27-2024 10:44 AM
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;
}
}