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
Mike ElhardMike Elhard 

Visualforce Page to Open External Site for use with Related List Help

I have created a custom Visualforce page to redirect the related list help link to an external URL - our sales support site.

User-added image
This is working just fine but I'd like to go directly to the URL instead of opening another Salesforce page with nothing but a link to the external URL.
User-added image

I've used this code to accomplish what I've completed so far.

<apex:page >
<apex:outputLink value="https://www.salesforce.com/" id="theLink">Sales Support</apex:outputLink>
</apex:page>

and this code

<apex:page >

<a href="https://www.w3schools.com" target="_blank">Visit W3Schools.com!</a> 

</apex:page>

What can I do to go directly to the sales support site instead of another SF page requiring another click?
Raj VakatiRaj Vakati
Go to Setup -- > Customize -- > Help Settings override the Re-direct Help URL with the external site 
Mike ElhardMike Elhard
I'm only looking to redirect the help link within a related list.


I don't want to redirect the Salesforce help link on the top of the page.