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
Jessica MeadJessica Mead 

Visualforce Page doesn't appear in my Community?

I attempted to create a site.com site using the builder within the community, which was a simple HTML page with text and a couple videos, but wasn't able to drop this into my Community (I want to be able to click on the Navigation Menu and have the first tab take me to a static page).  After speaking with SF support, they suggested I try a Visualforce page instead.  I've created the VF page and made it available to the community profile, but I'm still not able to access it in the Community BUilder.  Can anyone assist?
amahmamahm
Hi Jessica, facing almost the same issue here... could you get yours solved? No luck still with my question here : https://success.salesforce.com/answers?id=9063A0000019QsQQAU
amahmamahm
Hi, so what i realized - it really depends on the template which you used when creating a community - if your community does not readily allow to include VF page you are out of luck and have to include it as a custom component in an iframe e.g:
 
<aura:component implements="forceCommunity:availableForAllPageTypes" access="global">
    <div class="container">
                 <iframe src="https://VF-Page-URL" style="border: 0;min-height:700px;width:100%;height:100%;" scrolling="true" id="theIframe"/>     
                <br/><br/>
    </div>
</aura:component>