function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kim.stiteskim.stites 

Opportunity Integration - Primary Campaign Source

I have a create opportunity call in which I am trying to recreate the standard functionality that auto-populates the Primary Campaign source field with the most recent campaign related to the contact.  Does anyone know how I could add to my call to have it do this?

C_GibsonC_Gibson

I don't know if this will help anyone but I was also able to get rid of the sidebar by embedding styling tags into the footer HTML document associated to the portal. I had to set the width of the IDs "sidebarCell" and "sidebarDiv"


Something like:

<style>
    #sidebarCell{
        width:0px;
    }
    #sidebarDiv{
        width:0px;
    }

</style>

This successfully removed the sidebar for me.

Note* -  I had already turned all the sidebar features off and it was just a white space pushing the contents of the page to the right.