Page 1 of 1

Auto Video Embed v.0.0.3

PostPosted: 03 Oct 2012, 16:47
by iamthestreets
Why does the video show up as a link in the second+ post? I would like all videos to show as the video not as a link.

youtubelink.png


I understand you can click on the link to watch the video or click on the icon to open a preview but my user will not know that so i would like it to just display the embedded video

Re: Auto Video Embed v.0.0.3

PostPosted: 03 Oct 2012, 17:59
by 4seven
thats a setting in config area of

includes/auto_video_embed_view.php
includes/auto_video_embed_post.php

in this area change this

Code: Select all
// Activate $youtube or $youtube_lnk. Not both!
$youtube      false;
$youtube_lnk  true;
// activate $youtube_new for youtu.be support
$youtube_new  true;
#
// ---------------- CONFIG --------------- 

to this.

Code: Select all
// Activate $youtube or $youtube_lnk. Not both!
$youtube      true;
$youtube_lnk  false;
// activate $youtube_new for youtu.be support
$youtube_new  true;
#
// ---------------- CONFIG --------------- 

thats it..

Re: Auto Video Embed v.0.0.3

PostPosted: 03 Oct 2012, 19:56
by iamthestreets
wow how did i miss that lol. that was easy thanks.