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
Pasan   EeriyagamaPasan Eeriyagama 

Inline Visualforce page is displayed as a link, any idea why? and how to remove the link behavior?

We have below simple example visualforce page (to be used as inline VF page for Opportunity).
 
<apex:page standardController="Opportunity" >
    This page doesn't have any content.
</apex:page>

This page is added to Opportunity page layout for Partner Community User.
When we view as partner community user, it appears as a link as below.

User-added image

Because of this, it seems contents inline pages are not accessible. Also when we click on this page, it goes to 'Invalid page' community page which is not intended at all.
Any idea how we can remove this link behavior? Appreciate any help on this. Thanks.
 
Lalit Mistry 21Lalit Mistry 21
Hi PasanEeriyagama,

Verify if the partner community user profile has access to the visualforce page that is in question here.
Pasan   EeriyagamaPasan Eeriyagama
Partner community user has access to this inline page. Actually it's the screenshot of appearing page, therefore Page is accessible for Partner community user. 
Pasan   EeriyagamaPasan Eeriyagama
Found this similar Known issue  (https://success.salesforce.com/issues_view?id=a1p3A0000001Ch4QAE)
 
Followed it's workaround,
 
added below CSS to Community branding custom CSS.
 
.oneAlohaPage .mask { 
display: none; 

 
and that fixed the issue.