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

Layout Just Not Working

youtube thumbnails wordpress

  • Please log in to reply
3 replies to this topic

#1 aucp3

aucp3

    Newbie

  • Members
  • Pip
  • 2 posts

Posted 09 February 2013 - 11:46 AM

Hello, I've tried just about everything and I can't get the layout to display properly on this site http://www.issarae.c...lover-friends/.

 

I'm trying to get just the simple rows & columns layout and not all the video thumbnails just running down the side of the page in like a list.



#2 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 09 February 2013 - 07:03 PM

Hi,

 

It looks like you're running an older version of TubePress. Could you try upgrading to the latest version of TubePress first? As of this writing that would be version 3.0.0. Thanks!



#3 aucp3

aucp3

    Newbie

  • Members
  • Pip
  • 2 posts

Posted 09 February 2013 - 10:26 PM

Hi, it says that I'm running 3.0.0.



#4 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 10 February 2013 - 03:56 PM

OK, in that case then it seems that something, probably your WordPress theme, has hardcoded paths to TubePress's static resources. Specifically, you have references in your HTML source to

<link rel='stylesheet' id='tubepress-css'  href='http://www.issarae.com/wp-content/plugins/tubepress/sys/ui/themes/default/style.css?ver=3.5' type='text/css' media='all' />
<script type='text/javascript' src='http://www.issarae.com/wp-content/plugins/tubepress/sys/ui/static/js/tubepress.js?ver=3.5'></script>

 
I would edit your theme's header.php and replace these paths to the correct locations:

<link rel='stylesheet' id='tubepress-css'  href='http://www.issarae.com/wp-content/plugins/tubepress/src/main/web/css/tubepress.css' type='text/css' media='all' />
<script type='text/javascript' src='http://www.issarae.com/wp-content/plugins/tubepress/src/main/web/js/tubepress.js'></script>

Or simply make sure that your theme is correctly calling wp_head().