Plugin Support
Ramouz
(@ramouz)
Hi @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
/* 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
(@ramouz)
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:
/* 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!