3.2 & 3.3 Extensions Database 3.2 / 3.3 ⇒ Youtube Videos Gallery
-
- Donator
- Posts: 30
- Joined: 19 Oct 2017, 05:10
Re: Youtube Videos Gallery
Oh one more, a user brought this up - it would be nice if we could assign different colours to different categories (border colour would be nice since you seem to be using borders anyway :))
-
- Donator
- Posts: 30
- Joined: 19 Oct 2017, 05:10
Re: Youtube Videos Gallery
Back yet monsieur? 😇
-
- VIP
- Posts: 1157
- Joined: 14 Oct 2014, 19:01
Re: Youtube Videos Gallery
There is no border on the listed videos. It uses box-shadow. (My border-radius is unique, ignore that part.)nou nou wrote: 17 Mar 2025, 19:04 Oh one more, a user brought this up - it would be nice if we could assign different colours to different categories (border colour would be nice since you seem to be using borders anyway :))
Code: Select all
#videolists {
box-shadow: 0 0 8px #ffca4f;
border-radius: 15% 0 15% 0;
}
Code: Select all
<a href="{{ video.U_VIEW_VIDEO }}" title="{{ video.VIDEO_TITLE }}"><img id="videolists" src="{{ video.VIDEO_THUMBNAIL }}" alt="{{ video.VIDEO_TITLE }}" /></a>
Then you can add the category names in the template to that class like this.
Code: Select all
<a href="{{ video.U_VIEW_VIDEO }}" title="{{ video.VIDEO_TITLE }}"><img class="videolists {{ video.VIDEO_CAT_TITLE }}" src="{{ video.VIDEO_THUMBNAIL }}" alt="{{ video.VIDEO_TITLE }}" /></a>
Then you can add all of your different category classes in that css file like this. (I'm just showing one added here.)
Code: Select all
.videolists {
box-shadow: 0 0 8px #ffca4f;
border-radius: 15% 0 15% 0;
}
.videolists.Tutorial {
box-shadow: 0 0 8px #aa0000;
}
Code: Select all
.videolists.Music {
box-shadow: 0 0 8px #00aa00;
}
-
- New user
- Posts: 2
- Joined: 04 Mar 2025, 13:58
Re: Youtube Videos Gallery
Hello everyone
I didn't find anything while searching but maybe I missed it, then I apologize
YouTube Gallery 1.1.1 & phpbb3 3.3.1.4
The YouTube Gallery is available on the index page, with the latest videos.
Could categories be selected to be displayed in the index? Perhaps Category 1, then Category 4 one week to boost the rankings, and then display all the latest videos again a week later?
No automation, but you can change them manually.
We'd like to give our guild-internal videos a little push.
Thank you for Your support
I didn't find anything while searching but maybe I missed it, then I apologize
YouTube Gallery 1.1.1 & phpbb3 3.3.1.4
The YouTube Gallery is available on the index page, with the latest videos.
Could categories be selected to be displayed in the index? Perhaps Category 1, then Category 4 one week to boost the rankings, and then display all the latest videos again a week later?
No automation, but you can change them manually.
We'd like to give our guild-internal videos a little push.
Thank you for Your support
Last edited by flumsi on 01 Jun 2025, 09:22, edited 1 time in total.
-
- Users
- Posts: 15
- Joined: 19 Apr 2020, 00:51
Re: Youtube Videos Gallery
d3ath2435 wrote: 16 Mar 2025, 15:47 Thanks for the EXT, but I've some issues with it
is not showing the stats from youtube
Also I cannot edit Titles, descriptions etc?
Also when I push the button Resync
![]()
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
-
- Users
- Posts: 15
- Joined: 19 Apr 2020, 00:51
Re: Youtube Videos Gallery
I saw that, but why can't edit any of those? How to edit the title?