Jump to content


These Forums Are Now Read-Only


For TubePress support, please post a question here or open a support ticket and we will be glad to assist.


Photo

Neither 'title' nor 'description' works with my Vimeo galler


  • Please log in to reply
3 replies to this topic

#1 Nigel Barker

Nigel Barker

    Newbie

  • TubePress Pro
  • Pip
  • 8 posts

Posted 01 February 2012 - 01:45 PM

I already sent an email that despite paying $25 I cannot download the Pro version of the software but here is another problem...

Neither 'title' nor 'description' works with my Vimeo gallery.

This is the code I am using
[tubepress mode="vimeoAlbum" vimeoAlbumValue="1735279" title="true" theme="vimeo" playerLocation="popup" hqThumbs="true" resultCountCap="10"]

Here is a test page
http://abw.alicebark....com/tubepress/

Cheers
Nigel

#2 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 02 February 2012 - 12:01 AM

Hi Nigel,

Did you get my email from this morning? I sent you a reply around 11 a.m. PST, less than an hour after you initially contacted me. Just want to make sure that you're squared away and have full access to the Pro downloads.

As for your title and description not showing up, it seems as though TubePress's CSS has been edited to not show them. Check out http://abw.alicebark...te.../style.css around line 67. You have

dt.tubepress_meta_title, dt.tubepress_meta_runtime, dt.tubepress_meta_url, dt.tubepress_meta_description {
    display: none;
}
Remove that CSS block and your description and title will appear right away. Please let me know how that works for you. Thanks!

#3 Nigel Barker

Nigel Barker

    Newbie

  • TubePress Pro
  • Pip
  • 8 posts

Posted 02 February 2012 - 08:23 AM

Eric, thanks I now have TubePress Pro installed & have nice HQ thumbnails but still the title & description do not appear. I have not edited the CSS file so title, description etc must be disabled by default. In any case it makes no difference whether I edit it out or not.

I am using Thesis as my theme so wondered if was some incompatibility with TubePress so activated the default Twenty Ten theme but titles do not appear then either. However if I activate the Twenty Eleven theme then they do sort of appear but are only the top half of the letters. It looks like it's a problem with ThumbPress formatting the titles so that they are visible. I have left the test site with the Twenty Eleven theme so you can see what I mean. The CSS is as default but if I do remove the portion you indicated then I get Title: prefacing the video title but again with only the upper portion of the characters.

#4 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 03 February 2012 - 12:24 AM

Hi,

OK, cool. We just need to adjust your CSS to get everything to look right. As described in the docs, you'll want to make these changes in a separate CSS file (i.e. your theme's CSS or via a plugin).

Here are the changes I would make. Add

.tubepress_thumb {
    height: 215px;
}
.tubepress_meta_group {
    margin-left: 0;
}
and delete (from http://abw.alicebark...te.../style.css line 852)

.entry-content img, .comment-content img, .widget img {
    max-width: 97.5%;
}
This will result in a look like this: http://i.imgur.com/1QmvU.png. Give it a try?