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
gautam123gautam123 

Different Logos/graphics for different users based on their login credentials

Hi everyone,

 

We have a requirement where in our customer portal's welcome visualforce page,we should be able to display different logos/graphics/messages depending on user's login credentials .

 

For example when user A logs in ,he should see his logo in logo space of our visualforce page .on the other hand ,when user B logs in ,he should see his logo .

 

Can anyone help me on how we can implement this requirement ? Thanks

Best Answer chosen by Admin (Salesforce Developers) 
Anand@SAASAnand@SAAS

If you are using visual force, you can do something like:

<apex:image value="{!$Resource.Profile1Img" rendered="{!Profile.Name='Profile1'}"/> 

<apex:image value="{!$Resource.Profile2Img" rendered="{!Profile.Name='Profile2'}"/>  

 

All Answers

Anand@SAASAnand@SAAS

If you are using visual force, you can do something like:

<apex:image value="{!$Resource.Profile1Img" rendered="{!Profile.Name='Profile1'}"/> 

<apex:image value="{!$Resource.Profile2Img" rendered="{!Profile.Name='Profile2'}"/>  

 

This was selected as the best answer
gautam123gautam123

Thank you very much ,it works fine .

Need to assign the respective VF page to profiles  .