You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

Hiding Export Button from Quote List page

Summary:

In the CPQ Quote List page I want to hide the Export button from Action menu

Content (please ensure you mask any confidential information):

We were advised to use a JS customization but not sure how to apply it the right way as I have added the JS file to the file manager but no change was occured


Version (include the version you are using, if applicable):



Code Snippet (add any code snippets that support your topic, if applicable):

(function () {

function hideExport() {

document.querySelectorAll("oj-option").forEach(function(item) {

var a = item.querySelector("a");

if (a && a.textContent.trim() === "Export") {

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!