Title: Remove the voting icon
Last modified: April 3, 2025

---

# Remove the voting icon

 *  [alexvustin2024](https://wordpress.org/support/users/alexvustin2024/)
 * (@alexvustin2024)
 * [1 year ago](https://wordpress.org/support/topic/remove-the-voting-icon/)
 * Hi! How can I remove the voting icon from other galleries? I need one gallery
   with voting, not all on the site pages.

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Support [Ramouz](https://wordpress.org/support/users/ramouz/)
 * (@ramouz)
 * [1 year ago](https://wordpress.org/support/topic/remove-the-voting-icon/#post-18399804)
 * Hi [@alexvustin2024](https://wordpress.org/support/users/alexvustin2024/) – We
   do not currently have that feature.
 * However, you can do that by using CSS. To achieve that, you can hide voting from
   every gallery, and then show it on the gallery you want. You need to find the
   gallery ID using your Internet browser’s developer console like this: [https://ibb.co/rnWd1F3](https://ibb.co/rnWd1F3)
 *     ```wp-block-code
       /* Hide voting from every gallery */.gallery-item > p {display: none;}/* show voting on gallery 1 only */ gallery-1 .gallery-item > p {display: block;}
       ```
   
 *  Plugin Support [Ramouz](https://wordpress.org/support/users/ramouz/)
 * (@ramouz)
 * [12 months ago](https://wordpress.org/support/topic/remove-the-voting-icon/#post-18428045)
 * Sorry, the previous code was given incorrectly or maybe the text editor here 
   removed it the first time I entered it since it’s code. The gallery-1 should 
   be #gallery-1 since it’s an “id”.
 * Here is the revised CSS code:
 *     ```wp-block-code
       /* Hide voting from every gallery */.gallery-item > p {display: none;}/* Show voting on gallery 1 only */#gallery-1 .gallery-item > p {display: block;}
       ```
   
 * Also, thank you for the 5-star rating!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove the voting icon’ is closed to new replies.

 * ![](https://ps.w.org/gallery-voting/assets/icon-256x256.png?rev=1187459)
 * [Tribulant Gallery Voting](https://wordpress.org/plugins/gallery-voting/)
 * [Support Threads](https://wordpress.org/support/plugin/gallery-voting/)
 * [Active Topics](https://wordpress.org/support/plugin/gallery-voting/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gallery-voting/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gallery-voting/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Ramouz](https://wordpress.org/support/users/ramouz/)
 * Last activity: [12 months ago](https://wordpress.org/support/topic/remove-the-voting-icon/#post-18428045)