Want to build your own 24/7 FAQ knowledge base?
LibraryH3lp subscriptions include unlimited independent internal or public-facing knowledge bases.


Search the LibraryH3lp Knowledge Base

 

How do I remove voting (likes/dislikes) from my FAQ site?

1272 views   |   Last updated on Jun 30, 2023    FAQ

 

To remove voting from the FAQ, you'll need to edit your question-metadata.html template either via in-place editing or the Faqs tab of the admin site. Either comment out or remove the following lines:
 

<span rel="tooltip" title="{{ question.likes }} people found this useful">{{ question.likes }}</span>

  {% if question.liked %}

    <a href="/questions/{{ question.id }}/like" class="vote-up"><i class="icon-thumbs-up icon-large"></i></a> &nbsp;

  {% else %}

    <a href="/questions/{{ question.id }}/like" class="vote-up"><i class="icon-thumbs-up"></i></a> &nbsp;

  {% endif %}

  <span rel="tooltip" title="{{ question.dislikes }} people did not find this useful">{{ question.dislikes }}</span>

  {% if question.disliked %}

    <a href="/questions/{{ question.id }}/dislike" class="vote-down"><i class="icon-thumbs-down icon-large"></i></a> &nbsp; | &nbsp;

  {% else %}

    <a href="/questions/{{ question.id }}/dislike" class="vote-down"><i class="icon-thumbs-down"></i></a> &nbsp; | &nbsp;

  {% endif %}

FAQ URL:

More Help

Search By Topic

Share this FAQ