Forum Activity for @michaelcawood

michaelcawood
@michaelcawood
12/11/15 12:12:59AM
77 posts

Removing Black Bars from Youtube Thumbnails


Design and Skin Customization

Thanks Michael... videos borders fixed.
michaelcawood
@michaelcawood
12/08/15 01:50:26AM
77 posts

Grid of Videos


Design and Skin Customization

Yes... is there a way to work around that, fixing Youtube but not changing Vimeo links?
michaelcawood
@michaelcawood
12/08/15 01:09:14AM
77 posts

Grid of Videos


Design and Skin Customization

"Regrettably it didn't seem to work." means "It didn't work"... but you know that already. You gave me a modified fix, and it's now working (aside form some missing thumbnails for Vimeo videos). Thank you.

So YouTube and local Videos - Thumbs up...
Vimeo - Thumbs down... for now.

The debugging continues... :)
michaelcawood
@michaelcawood
12/08/15 12:43:20AM
77 posts

Removing Black Bars from Youtube Thumbnails


Design and Skin Customization

Thank you. That worked. I guess I use the same deductive reasoning to fix the Vimeo thumbnails that now seem to be broken.
michaelcawood
@michaelcawood
12/07/15 11:56:48PM
77 posts

Grid of Videos


Design and Skin Customization

Thanks for pointing out the borders fix Michael. Regrettably it didn't seem to work.

I have the local "video" movies working now. I had the Combined Video module installed but not active because until recently I didn't have the Seamless module that it required. Once I activated the Combined Video module the links seemed to work.

Any thoughts on how to get rid of the extra controls at the bottom of the page here?
http://animatedfilmmakers.com/devilsangelsanddating/videos
michaelcawood
@michaelcawood
12/07/15 11:49:45PM
77 posts

Removing Black Bars from Youtube Thumbnails


Design and Skin Customization

Perhaps I'm missing something, but I tried that on my site and it didn't work.
http://animatedfilmmakers.com/devilsangelsanddating/videos

Any thoughts?
michaelcawood
@michaelcawood
12/07/15 02:16:46PM
77 posts

Grid of Videos


Design and Skin Customization

Indeed. Yes. When I tried your version of the code with the URL fix I got a Syntax Error.
michaelcawood
@michaelcawood
12/07/15 01:45:45PM
77 posts

Grid of Videos


Design and Skin Customization

Here's the latest version of the code I'm trying. It still has a few issues though:

1) Most videos seem to be adding borders where they aren't required and squashing the vertical.
2) The local "video" movies aren't working. http://animatedfilmmakers.com/devilsangelsanddating/videos/p=50
3) There's an extra set of controls at the bottom of the widget. Any idea how to remove them?

<div id="vidwrap">
{capture name="template" assign="tpl"}
{literal}
    <div class="container">
        {foreach $_items as $item}
        {if $item@first || ($item@iteration % 3) == 1}
        <div class="row">
            {/if}
            <div class="col4">
                <div class="img-profile">
                    {if $item.seamless_module_name == "jrYouTube"}
                    <a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.video_title_url}">
                        <img src="{$item.youtube_artwork_url}" class="rank_image" width=330 height=186/></a>                  
                    {elseif $item.seamless_module_name == "jrVideo"}
                            <a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="large" alt=$item.video_title title=
$item.video_title class="top_rank" width=330 height=186}</a>
                    {elseif $item.seamless_module_name == "jrVimeo"}
                        <a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">
                             <img src="{$item.vimeo_artwork_url}" class="rank_image" width=330 height=186/></a>                  
                        </a>
                    {/if}
                        </div>
                
                <div class="center mb10">
                   {if $item.seamless_module_name == "jrYouTube"}
                        <a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.youtube_title_url}">{$item.youtube_title|truncate:50}</a>                   
                    {elseif $item.seamless_module_name == "jrVideo"}   
                        <a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{$item.video_title|truncate:50}</a>
                    {elseif $item.seamless_module_name == "jrVimeo"}
                        <a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">{$item.vimeo_title|truncate:50}</a>                   
                    {/if}
                        <br>                      
                </div>
            </div>
            {if $item@last || ($item@iteration % 3) == 0}
        </div>
        {/if}
        {/foreach}
    </div>
{/literal}
{/capture}
  {jrSeamless_list modules="jrVideo,jrYouTube,jrVimeo" order_by="_created numerical_desc"  pagebreak=30 page=$_post.p pager=true template=$tpl}</div>
michaelcawood
@michaelcawood
12/07/15 12:54:07PM
77 posts

Grid of Videos


Design and Skin Customization

The "video" links aren't working yet.
michaelcawood
@michaelcawood
12/07/15 12:51:18PM
77 posts

Grid of Videos


Design and Skin Customization

Thanks Paul. I tired that but it came up with a syntax error. So I'm currently trying this:

<div id="vidwrap">
{capture name="template" assign="tpl"}
{literal}
    <div class="container">
        {foreach $_items as $item}
        {if $item@first || ($item@iteration % 3) == 1}
        <div class="row">
            {/if}
            <div class="col4">
                <div class="img-profile">
                    {if $item.seamless_module_name == "jrYouTube"}
                    <a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.video_title_url}">
                        <img src="{$item.youtube_artwork_url}" class="rank_image" width=320 height=180/></a>                  
                    {elseif $item.seamless_module_name == "jrVideo"}
                            <a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="large" alt=$item.video_title title=
$item.video_title class="top_rank" width=320 height=180}</a>
                    {elseif $item.seamless_module_name == "jrVimeo"}
                        <a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">
                             <img src="{$item.vimeo_artwork_url}" class="rank_image" width=320 height=180/></a>                  
                        </a>
                    {/if}
                        </div>
                
                <div class="center mb10">
                   {if $item.seamless_module_name == "jrYouTube"}
                        <a href="{$jamroom_url}/{$item.profile_url}/youtube/{$item._item_id}/{$item.youtube_title_url}">{$item.youtube_title|truncate:24}</a>                   
                    {elseif $item.seamless_module_name == "jrVideo"}   
                        <a href="{$jamroom_url}/{$item.profile_url}/video/{$item._item_id}/{$item.video_title_url}">{$item.video_title|truncate:24}</a>
                    {elseif $item.seamless_module_name == "jrVimeo"}
                        <a href="{$jamroom_url}/{$item.profile_url}/vimeo/{$item._item_id}/{$item.vimeo_title_url}">{$item.vimeo_title|truncate:24}</a>                   
                    {/if}
                        <br>                      
                </div>
            </div>
            {if $item@last || ($item@iteration % 3) == 0}
        </div>
        {/if}
        {/foreach}
    </div>
{/literal}
{/capture}
  {jrSeamless_list modules="jrVideo,jrYouTube,jrVimeo" order_by="_created numerical_desc"  pagebreak=30 page=$_post.p pager=true template=$tpl}</div>
  6