
Best Answer eric, 12 May 2015 - 03:12 PM
First an update on the <br />. This is indeed a bug, but thankfully the fix is easy. Simply replace your local copy of
<tubepress>/src/add-ons/core/web/themes/youtube.com-clone/templates/single/fragments/dt_dd_pair.html.twig
with these contents, then clear your system cache. The changed file will go out in the next release of TubePress.
Ok thanks Eric and Brandon.
In regards to my first question:
1. With the youtube.com-clone theme it reads the thumbnail title exactly how it displays on youtube. Is there any way I can get it to display the full length of the title eg. "Andromeda Festival : 22nd-23rd November, Brisbane Australia" rather than the "Andromeda Festival : 22nd-23rd Nove ..." it is currently displaying?
I am aware of how to change the length (number of characters displayed in the meta information however I am wanting to change the length of the actual title found directly under the thumbnails. The length of the title seems to be seperate to the length of the meta information. Is there a way to change the title length?
Cheers.
You can absolutely change this. To protect your modifications from TubePress updates you will want to create and activate your own TubePress theme. Here's what I would do:
- After applying the fix above, copy the entire src/add-ons/core/web/themes/youtube.com-clone directory to wp-content/tubepress-content/themes/mytheme. This will get you an exact duplicate of the youtube.com-clone theme.
- Edit the manifest at wp-content/tubepress-content/themes/mytheme/manifest.json, change at least the title so that TubePress can see it as a unique theme.
- Edit wp-content/tubepress-content/themes/mytheme/templates/single/fragments/dt_dd_pair.html.twig. Change line 37 from:
{{- mediaItem.title|length > 35 ? mediaItem.title|slice(0, 35) ~ ' ...' : mediaItem.title -}}
to{{- mediaItem.title -}}
- Rebuild your system cache.
- Activate your new theme from WP Admin > Settings > TubePress > Theme.
That should do it. Give it a try?
Go to the full post