For partners that build or integrate commercially available applications and service solutions with the Oracle Cloud Platform
For partners that provide implementation or managed services around Oracle Cloud Applications
We are looking to remove the Product and Category fields form our Customer Portal.
We are finding that when people submit tickets, they are selecting the wrong things. All of our tickets get process by one department anyhow, so we have decided to just let our agents assign the Product and Categories.
So my question is what is the best way to do this.
I've done some minor modifications to the portal, so I'm familiar with the concepts. But I haven't done anything this big.
I know I need to modify the "Ask" page. And I've used CyberDuck for other modifications.
My problem is this page has never been modified by us, so I'm not even sure where to find it in the folder structure.
Any guidance anyone could give me would be greatly appreciated.
Go to:
cp/customer/development/views/pages/ask.php
Look for the following 2 widgets
<rn:widget path="input/ProductCategoryInput"/>
<rn:widget path="input/ProductCategoryInput" data_type="Category"/>
Replace this with:
<!-- <rn:widget path="input/ProductCategoryInput"/> disable product -->
<!-- <rn:widget path="input/ProductCategoryInput" data_type="Category"/> disable category -->
Save the change
Go to https://<YOURSITE>.custhelp.com/ci/admin/overview
Click on Development Mode to view site in development mode and you should no longer see the prod & cat
After that deploy the change, first to Stage, after that to Production
And you are done :-)
Thanks Sebastiaan-
I feel like I owe you dinner for all the help you've given me on this site
-Dave
Man Sebastiaan is always onto it at the speed of light!
I was just gonna add this link here, specifically the /customer/ folder descriptions are pretty useful if you're unfamiliar with what sits where: https://documentation.custhelp.com/euf/assets/devdocs/cloud19c/olh/CustomerPortal/topicrefs/r_Folder_structure_052016.html
This link you sent is fantastic. I always feel lost when I have to go into those folders. This helps a lot!
Go to:
cp/customer/development/views/pages/ask.php
Look for the following 2 widgets
Replace this with:
Save the change
Go to https://<YOURSITE>.custhelp.com/ci/admin/overview
Click on Development Mode to view site in development mode and you should no longer see the prod & cat
After that deploy the change, first to Stage, after that to Production
And you are done :-)