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
ankur khattriankur khattri 

how to enable knowledge tab in navigational menu.I have check all the boxes that are requires to set true(knowledge).

NagendraNagendra (Salesforce Developers) 
Hi Ankur,

Please refer to the below links for the detailed information.

https://help.salesforce.com/apex/HTViewHelpDoc?id=knowledge_articles.htm&language=en

https://help.salesforce.com/apex/HTViewSolution?id=000005402&language=en_US

https://success.salesforce.com/answers?id=90630000000gwo2AAA

Please mark it as solved if it helps you.

Best Regards,
Nagendra.P
VineetKumarVineetKumar
You need to have Manage Articles permission enable to see the Article Management Tab and a Knowledge User checked on user to have the knowledge tab visible.
Also, make sure the user has visibility over atleast one of the Article Types
ankur khattriankur khattri
it is for Communities Napili..
 
VineetKumarVineetKumar
Did you add the knowledge tab to the communities, also the community user needs to have the above permissions
ankur khattriankur khattri
@VineeKumar can u give me some help in it..how to add knowledge tab in  communitites
VineetKumarVineetKumar
Setup > Customize > Communities > All Communities
Click on Manage before your community name.
Then  go to Administrations > Tabs
Add the knowledge tab in the selected tab 
Save and check.
ankur khattriankur khattri
@VineeKumar done still knowledge not showing in the navigational menu communities
VineetKumarVineetKumar
I'm able to see in on community tabs. Napili Template selected.
Check for Article tab if available
User-added image
ankur khattriankur khattri
@VineetKumar i think in community management it is enabled but in the community builder i wnt that to enable nad use in the navigational menu over there...
VineetKumarVineetKumar
Well usually the topic tab will search for in articles as well. Provided you have enabled the data catagories under the Topics under Communities Management
VineetKumarVineetKumar
Also, I was able to search on articles in the search bar itself. 
The article tab usually does the same, not sure what other feature your looking for to be implemented related to article
ankur khattriankur khattri
@VineetKumar i am trying to make a website via communities for the customer where he can see the knowledge tab in the navigational menu by itself..
VineetKumarVineetKumar
You will not be able to add a tab on the website. All you can do is create topics as per the data category and assign the relevant data category to it. Under topic you will be able to see that.
ankur khattriankur khattri
@VineetKumar i am adding a menu item in it.. Type=Community page   Page=Article Detail and url m not able to understand how to give the URL in it can u help me here......User-added image
ankur khattriankur khattri
https://abc-dev-ed.my.salesforce.com/_ui/knowledge/ui/KnowledgeHome it is the url of the Knowledge tab how can we use it?
VineetKumarVineetKumar
Try this if Knowledge One is enabled = /_ui/knowledge/ui/KnowledgeHome 
or
/knowledge/knowledgeHome.apexp
ankur khattriankur khattri
@VineetKumar no it is not working.. :)
VineetKumarVineetKumar
I was wondering how it would work.. :)
ankur khattriankur khattri
same here it is not working.....  :D
VineetKumarVineetKumar
Ok, I can see only two possible solution for your problem.
1. Create a custom VF page, and try to open the knowledge articles in an iframe.
2. Create a totally custom VF page to show the article search and displaying them. You will have to use KnowledgeArticles VF tags to accomplish that. 
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_knowledge_articleList.htm
 
Goldy Raj 4Goldy Raj 4
Hi,

I created a custom lightning component for vertical navigation but unfortunately i cannot find the header 

here is my code
<aura:component implements="forceCommunity:themeLayout">
    <aura:attribute name="search" type="Aura.Component[]"/>
     <aura:attribute name="header" type="Aura.Component[]"/>
    <aura:attribute name="sidebarFooter" type="Aura.Component[]"/>
    <aura:attribute name="showSearch" type="Boolean" default="true" />
    
    <div class="slds-grid slds-grid--align-center">
        
       
        <div class="slds-col">
            <div class="slds-grid slds-grid--vertical">
                <div class="slds-col">
                    <div class="logoContainer">
                   
                    </div>
                </div>
             <aura:if isTrue="{!v.showSearch}">
                    <div class="centre" >
                           
                    </div>
             </aura:if>
                <div class="slds-col" style="width:200px;">   
                    <c:IL_VerticalNavMenu></c:IL_VerticalNavMenu>                       
                </div>
                <div class="slds-col">
                    <!--    {!v.sidebarFooter} -->
                </div>
            </div>
        </div>
        <div class="slds-col content">
            {!v.body}
        </div>
    </div>
 
</aura:component>



please help me!!!!how can i include the default header