
Hi All,
I'm trying to simplify the options available to staff when we create a new campaign, as we do not require the level of detail available.
I have removed unecessary fields from the form, but I want to remove some of the options within the Details Area on the left of screen. In particular I would like to remove Planning Tasks and Campaign Activities from the Detaills Area and also Target Products and Sales Literature from the Marketing Area
I have exported the Campaign Customization but I cannot find the areas on the XML file to make the changes. Do I have the correct customization file, or if I have the correct one where do I look?
Any help would be appreciated.
Stewart
*This post is locked for comments
I have the same question (0)Hi Stewart,
Please try the following script to hide the Left Nav from the Campaign entity.
// Hide Campaign Activity
document.getElementById("navCampaignActivities").style.display = "none";
// Hide Target Products
document.getElementById("navTargetProducts").style.display = "none";
// Hide Sales Lit
document.getElementById("navCollaterals").style.display = "none";
write the above script at the onload of the campaign.
Thanks!
Sam