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
Forrest Muldune 36Forrest Muldune 36 

Lighting component - Salesforce HomePage Link not working

All,

In my custom link section in Home, I created a link , with content source = URL and the following below

https://test--skuid.na3.visual.force.com/apex/ui?page=ProgramsHealthCheckPipeline

When I went into Lightning App Builder this was not available as a component.

How can I display this link on my lightning home page? Do I have to create a lightning component? if yes, how?
Best Answer chosen by Forrest Muldune 36
Raj VakatiRaj Vakati
Create a lightning component with below code 
<aura:component 
                implements="flexipage:availableForRecordHome,force:hasRecordId">
   
              <a target="_blank" 
                 href="https://test--skuid.na3.visual.force.com/apex/ui?page=ProgramsHealthCheckPipeline">Link </a>
           
</aura:component>
Add it the home page 
 

All Answers

Raj VakatiRaj Vakati
Create a lightning component with below code 
<aura:component 
                implements="flexipage:availableForRecordHome,force:hasRecordId">
   
              <a target="_blank" 
                 href="https://test--skuid.na3.visual.force.com/apex/ui?page=ProgramsHealthCheckPipeline">Link </a>
           
</aura:component>
Add it the home page 
 
This was selected as the best answer
Forrest Muldune 36Forrest Muldune 36
When I made the update to the code below it worked fine.
 
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes" access="global" >
   
              <a target="_New Venture Status Grid" 
                 href="https://Iongeo--skuid.na3.visual.force.com/apex/ui?page=ProgramsHealthCheckPipeline"> New Venture Status Grid </a>
           
</aura:component>

Do you know any of any websites where I can learn to format text and background color of the Lightning component? -
Raj VakatiRaj Vakati
Go to below links  
https://developer.salesforce.com/blogs/
https://trailhead.salesforce.com/

search for lightning .. this is the best place to learn lightning ... 


Mark it as solved 
Forrest Muldune 36Forrest Muldune 36
thank you
Raj VakatiRaj Vakati
You are welcome  Forrest !  Mark it as solved 
Forrest Muldune 36Forrest Muldune 36
I selected "Best Answer" does it mark it as solved?
Raj VakatiRaj Vakati
yes
Forrest Muldune 36Forrest Muldune 36
thanks