Hi narendrababu,
1. Please open file\CuteSoft_Client\Gallery\Editor\Explorer\Code.js, find the function below
function SelectCategory(category) {}
2. Add the code below into the function above, then it will hide the upload button when user click on any category except "default".
- if (category.Title != null) {
-
- uploadbtn.style.visibility = "hidden";
- }
- else {
- uploadbtn.style.visibility = "visible";
- }
Regards,
Ken