WPIntell

Source evidence

Ability to hide private videos

Video Gallery – YouTube Playlist, Channel Gallery by YotuWP · support · 2024-02-28T02:42:00+00:00

complaintsentiment
highseverity
1.0relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 24 rows with source links

20.8% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

19 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
one3rdnerd unresolved
Private videos show up with a broken thumbnail in the grid. It would be great if these could be hidden via a setting in the plugin. An alternative would be to give these a css class like <li class="private-video"> Then it would be easy to hide then with .private-video {display:none;} Hi.. this was answered in a previous post. I tried it and it worked for me https://wordpress.org/support/topic/is-it-possible-to-hide-private-videos/ Actual response post link: https://wordpress.org/support/topic/is-it-possible-to-hide-private-videos/#post-15348480 not sure if you’re still having this issue but I fixed this by overriding the templates by putting them into my theme in a ‘yotu’ directory (which also ensure they won’t be overwritten when updating the plugin) and then changing: if ( $yotuwp->is_private($video) ) continue; to if ( $video->status->privacyStatus == 'private' ) continue; I prefer to avoid adding foreign files to my theme or child theme because if it’s updated they can be lost. I ended up just removing all private videos or using a playlist without private videos.

Comments

2 shown
the_md 2024-05-11T13:50:00+00:00

Hi.. this was answered in a previous post. I tried it and it worked for me https://wordpress.org/support/topic/is-it-possible-to-hide-private-videos/ Actual response post link: https://wordpress.org/support/topic/is-it-possible-to-hide-private-videos/#post-15348480 not sure if you’re still having this issue but I fixed this by overriding the templates by putting them into my theme in a ‘yotu’ directory (which also ensure they won’t be overwritten when updating the plugin) and then changing: if ( $yotuwp->is_private($video) ) continue; to if ( $video->status->privacyStatus == 'private' ) continue;

one3rdnerd 2024-05-11T15:35:00+00:00

I prefer to avoid adding foreign files to my theme or child theme because if it’s updated they can be lost. I ended up just removing all private videos or using a playlist without private videos.