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
Rita Leverett 2Rita Leverett 2 

App Launcher not displaying in Experience Cloud site

Hello,
How do I make the app launcher display in Experience Cloud? Show App Launcher in Experience Cloud sites is checked on the profiles. I'm using an Aura Component for a custom theme. Documentation says I need only add
<div class="appLauncher">
        <forceCommunity:appLauncher/>
 </div>
to my code but it doesn't work. Here is my code:
<aura:component implements="forceCommunity:themeLayout">
    <aura:attribute name="search" type="Aura.Component[]"/>
    <aura:attribute name="showSearch" type="Boolean" default="true" />
    <div>
        <div class="slds-row">
            <div class="slds-grid">
                <div class="slds-row">
                    <div class="logoContainer"></div>
                </div>
                <div class="appLauncher">
                    <forceCommunity:appLauncher/>
                </div>
		     <aura:if isTrue="{!v.showSearch}">
                    <div class="slds-row">
               	        {!v.search}
                    </div>
		     </aura:if>
            </div>
        </div>
        <div class="slds-row nav">
            <c:horizontalNav></c:horizontalNav>
        </div>
        <div class="slds-row content">
            {!v.body}
        </div>
    </div>
</aura:component>

 
VinayVinay (Salesforce Developers) 
Hi Rita,

Check below references and if the apps are not present in the App Menu setup you will need to open a case with Salesforce Support to enable the Experience Site Apps in the App Launcher.

https://help.salesforce.com/articleView?id=000349456&language=en_US&mode=1&type=1
https://help.salesforce.com/articleView?id=sf.community_builder_enable_app_launcher.htm&type=5

Please mark as Best Answer if above information was helpful so that it can help others in the future.

Thanks,
Rita Leverett 2Rita Leverett 2
Thank you, Vinay. The problem is not that apps are missing from the App Launcher. The problem is that there is no App Launcher on the Experience Cloud site.
VinayVinay (Salesforce Developers) 
Can you try enabling App launcher?  Also it is available in Enterprise, Performance, Unlimited, and Developer Editions.

https://help.salesforce.com/articleView?id=sf.community_builder_enable_app_launcher.htm&type=5

Thanks,
Rita Leverett 2Rita Leverett 2
There is no navigation component. The navigation menu is part of the custom theme. If I drag the navigation component to an empty area, it says "This component has not properties." There is nothing to select.User-added image