Securing Your Knowledge Base in the Help Center

Securing Your Knowledge Base in the Help Center

Hello Everyone!
Welcome to this week's edition on customizing the Knowledge Base in the Help Center. As the core of self-service for customers, the Knowledge Base is essential, but some organizations, like ZylkerShop, choose to restrict access to registered users only.
Here are the codes to hide the Follow option and Social Sharing option in the Knowledge Base.
Steps to add the CSS code
i. Navigate Setup (S) >> Channels >> Help Center >> Select the Help Center portal >> Select Customization. Click Customize on the theme you want to change.
ii. On the left panel, under Customize, click on CSS and paste the code. On the top right of the screen, click Preview to view the changes, and then click Publish to see the live changes.





Hide the Follow option in the Knowledge Base
When users follow every article they read, they might become overwhelmed with notifications during updates and maintenance in the Knowledge Base. To manage their content and prevent information overload, ZylkerShop decided to hide the Follow option in its Knowledge Base.


  1. /*Elegant Theme*/
  2. .articleDetail .KBArticleRightContainer__userFollowOption,
  3. .articleList .KBArticleRightContainer__userFollowOption,
  4. .article_subcategory .KBArticleRightContainer__userFollowOption,
  5. .articleDetail .KBArticleRightContainer__followerCount,
  6. .article_subcategory .KBArticleRightContainer__followerCount,
  7. .articleList .KBArticleRightContainer__followerCount,
  8. .ContentList__subCategory .ListHeader__dottedPopup,
  9. .KbCategory__box .KbCategory__dottedPopup,
  10. .KbDetailRtContainer__widgetRight .KbDetailRtContainer__widgetSection:nth-child(1),
  11. .articleList .ArticleListRightContainer__widgetRight .ArticleListRightContainer__widgetSection:nth-child(1) .ArticleListRightContainer__followOption,
  12. .articleList .ArticleListRightContainer__widgetRight .ArticleListRightContainer__widgetSection:nth-child(1) .ArticleListRightContainer__subscribeDescription{
  13.     display:none;
  14.  }

  15. /*Materialized Theme*/
  16.  .articleDetail .KBArticleRightContainer__userFollowOption,
  17. .articleList .KBArticleRightContainer__userFollowOption,
  18. .article_subcategory .KBArticleRightContainer__userFollowOption,
  19. .articleDetail .KBArticleRightContainer__followerCount,
  20. .article_subcategory .KBArticleRightContainer__followerCount,
  21. .articleList .KBArticleRightContainer__followerCount,
  22. .ContentList__subCategory .ListHeader__dottedPopup,
  23. .KbCategory__box .KbCategory__dottedPopup,
  24. .KbDetailRtContainer__widgetRight .KbDetailRtContainer__widgetSection:nth-child(1),
  25. .articleList .ArticleListRightContainer__widgetRight .ArticleListRightContainer__widgetSection:nth-child(1) .ArticleListRightContainer__followOption,
  26. .articleList .ArticleListRightContainer__widgetRight .ArticleListRightContainer__widgetSection:nth-child(1) .ArticleListRightContainer__subscribeDescription{
  27.     display:none;
  28.  }
  29.  
  30. /*Flat Theme*/
  31. .article_subcategory .KBProductHeader__button,
  32. .article_subcategory .CategoryList__titlePart .CategoryList__dottedPopup,
  33. .articleList .KBListContainer__info,
  34. .articleDetail .KBDetailsContainer__info{
  35.  display:none; 
  36. }

  37. /*Classic Theme*/
  38.  .article_subcategory .SubscribeDepart__subs .SubscribeDepart__followContent,
  39. .articleList .SubscribeDepart__subs .SubscribeDepart__followContent,
  40. .articleDetail .ArticleDetailRightContainer__followContentLow{
  41.     display:none;
  42.  }


Hide the Social sharing option in the Knowledge Base
Accidental information sharing through social media could lead to a data breach, compromising the organization’s privacy. Therefore, ZylkerShop chose to refrain from providing options to share Knowledge Base information on social media.


  1. /*Elegant Theme*/
  2. .KbDetailLtContainer__userSocialIcon{
  3. display: none
  4. }

  5. /*Materialized Theme*/
  6.  .Feed__footerCol .ActionBar__actionBarActionssecondary { display: none; }

  7. /*Flat Theme*/
  8.  .KBDetailsContainer__info + .KBDetailsContainer__info{
  9. display:none;
  10. }

  11. /*Classic Theme*/
  12. .ArticleCmd__articleLike>div:last-child 
  13. {
  14. display:none;
  15. }


Stay tuned for a few more customization options for your Knowledge Base in your Help Center.
Until Next week, GoodBye. 
Regards,
Lydia Kiruba | Zoho Desk