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
QMEQME 

Partner portal Home Page

I have configured the Partner Portal in my dev environment successfully.

 

Is there anyway to remove the "Home" tab from the partner portal when a partner user logs in?  I just want to be able to display a few tabs in the partner portal without the user having a Home tab.

 

I am unable to remove this tab in the Partner User profile, and i can't seem to remove it using the tabs I want to display.

VK86VK86

Hello QME,

 

I am pretty sure Salesforce does not allow hiding Home tab for either portal users or any other user.

You can redirect the landing page to your desired tab when a portal user logs in.

 

Hope this helps.

 

Thanks,

VK

thaddeuswardthaddeusward

Per the message below I would either redirect or build different pages in visual force.  

 

I know that we have built flows that take CPL (Customer Portal License) users to pages other than the home page when they log in.

mchristianmchristian

It's possible if you use javascript, but you will have to generate all of your nav buttons by hand.

 

In a custom footer you create a proper HTML string and then set the innerHTML of the 'home_Tab' element.

 

Something like:

 

var myNav = '<a href="myLink"><img src="/resourse/myNavImage"></a>';

document.getElementById('home_Tab'). innerHTML = myNav;