Vimeo - remove title/avatar/byline

daveloder / 2013-11-20 10:13:56   

I have embedded a vimeo video using the plugin, but want to removed the default vimeo title/avatar/byline from it. Usually this is done by using the following;

How can I insert the relevant parts of the code into Indexhibit?

arsondpi / 2013-11-20 11:27:01   

Hello!

Can you post a url with an example and be a bit more descriptive in what you're after?

daveloder / 2013-11-20 11:40:32   

Whoops, the code seems to drop off my first comment. Here it is again, without the arrow thingies....

iframe src="//player.vimeo.com/video/68333662?title=0&byline=0&portrait=0

I want to try to insert title=0&byline=0&portrait=0 after the vimeo video ref, whereever that may be stored, unless there is another workaround?

daveloder / 2013-11-20 11:45:06   

Heres a link to my website.....

daveloder.com/index.php/apparatus/entropy-the-future-that-is-to-come/

I want to remove the title and avatar/logo from the video that is added by default, the code I have posted above will allow this.

Vaska A / 2013-11-20 12:29:47   

Hmmm, I wasn't aware you could do that.

You would need to edit these additional parameters into the Vimeo plugin that is responsible for outputting this stuff. It's the Vimeo plugin directly or it could be the Vimeo function found in /ndxzsite/plugin/plugin.format.php. I would try the Vimeo plugin itself first...

daveloder / 2013-11-20 13:01:09   

OK, got it.....

I edited the plugin.formats.php (I did this offline and uploaded the modified file, as when I did it online via the Assets bar, it just gave me a totally blank screen).

At the bottom in the Vimeo section, I added ?title=0&byline=0&portrait=0 after player.vimeo.com/video/…, making sure it is inside the colons.

Voila!!

daveloder / 2013-11-20 13:04:44   

So it looks like this....

iframe src='player.vimeo.com/video/…' width='{$width}' height='{$height}' frameborder='0'

daveloder / 2013-11-20 13:06:02   

Grrr, I mean.....

iframe src='[]player.vimeo.com/video/…' width='{$width}' height='{$height}' frameborder='0'

Without the [ and ] around http!!

daveloder / 2013-11-20 13:07:10   

Last try......

[player.vimeo.com/video/…]

Between the colons.

daveloder / 2013-11-20 13:07:20   

Bugger it.

daveloder / 2013-11-20 13:08:17   

Add

?title=0&byline=0&portrait=0

after

$file

arsondpi / 2013-11-20 13:29:30   

* use code tags with a return space before and after them to include code - example

text

<code>code goes here</code>

more text here

This thread has been closed, thank you.