- Posts: 9
- Thank you received: 0
Inserting players into Facebook
- docaberle
- Topic Author
- Offline
- New Member
-
Less
More
14 years 2 months ago #3243
by docaberle
Inserting players into Facebook was created by docaberle
Can you embed the JoomlaRulez videos into a facebook page? I have a commercial license and thought I remembered seeing this was possible. Just not sure how to do it. Any links you can provide?
Please Log in or Create an account to join the conversation.
- docaberle
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
14 years 2 months ago #3244
by docaberle
Replied by docaberle on topic Re: Inserting players into Facebook
It looks like I need to use the iFrame code because the video is now there, but the code also shows in the Facebook post. Is that just how Facebook shows it.
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
14 years 2 months ago #3248
by admin
Replied by admin on topic Re: Inserting players into Facebook
With the display set to botr, the facebook-it plugin will only allow a sharing link, for now to embed video you have to set the display to combine mode or local mode.
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
14 years 1 month ago #3690
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Hi I try to share a video on FB, but with the iframe mode (on the dashboard) or with the link button on the player the video is linked to joomlavideo server, not my website page ...
How can I change this ?
Thanks
How can I change this ?
Thanks
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
14 years 1 month ago #3691
by admin
Replied by admin on topic Re: Inserting players into Facebook
Can you provide a link ?
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
14 years 1 month ago #3692
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
14 years 1 month ago #3693
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
just a precison :
I'm not using Joomla (yet) for this website (just one page) .... so I only use embedded code
I'm not using Joomla (yet) for this website (just one page) .... so I only use embedded code
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
14 years 1 month ago - 14 years 1 month ago #3695
by admin
Replied by admin on topic Re: Inserting players into Facebook
Ok, so as i see you don't use joomla so it's more complicate but still possible, if you don't want the facebook page re direct on the player itself, you will have to do some html code.
A - first you will have to change the sharing link :
1 - In the dashboard interface, click on the tab "players", Edit your player "fanny".
2 - disabled sharing.
3 - click on the tab "integrations".
4 - In the custom properties, add in the field name : sharing.link
5 - In the custom properties, add in the field value : fannyfilipe.biz/
6 - In the custom properties, add in the field name : dock
7 - In the custom properties, add in the field value : true
8 - save the player.
B - now we have to to do some html code.
1 - You have to load the correct metadata in the html head :
some info here :
www.longtailvideo.com/support/addons/sharing-plugin/14048/facebook-video-sharing
2 - then you have to also load the plugin sharing with this code :
some info here :
www.longtailvideo.com/support/bits-on-the-run/15987/add-custom-configuration-options-to-the-player
so in fine here is your html code :
A - first you will have to change the sharing link :
1 - In the dashboard interface, click on the tab "players", Edit your player "fanny".
2 - disabled sharing.
3 - click on the tab "integrations".
4 - In the custom properties, add in the field name : sharing.link
5 - In the custom properties, add in the field value : fannyfilipe.biz/
6 - In the custom properties, add in the field name : dock
7 - In the custom properties, add in the field value : true
8 - save the player.
B - now we have to to do some html code.
1 - You have to load the correct metadata in the html head :
Code:
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="FannyFilipe.biz"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
some info here :
www.longtailvideo.com/support/addons/sharing-plugin/14048/facebook-video-sharing
2 - then you have to also load the plugin sharing with this code :
Code:
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
www.longtailvideo.com/support/bits-on-the-run/15987/add-custom-configuration-options-to-the-player
so in fine here is your html code :
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="All we need is LOVE"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
<style type="text/css">
<!--
body {
background-color: #f9e2ec;
}
-->
</style></head>
<body>
<div style="text-align:center;width:100%;background-color:#f9e2ec;">
<!-- this table will enable you to get a centred area on which you will add your header, main content and footer. -->
<table width="600" cellpadding="0" cellspacing="0" style="background-color:#f9e2ec;text-align:left;margin:auto;" align="center">
<!-- then you can add your header -->
<tr><td>.</td></tr>
<!-- your main area -->
<tr><td>
<script type="text/javascript" src="http://video.joomlarulez.com/players/RZYzVKNT-wFFusCc2.js"></script>
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
</td></tr>
<!-- your footer -->
<tr><td>.</td></tr>
</table>
</div>
</body>
</html>
Last edit: 14 years 1 month ago by admin. Reason: code
Please Log in or Create an account to join the conversation.
- ricopoulos
- Offline
- Senior Member
-
Less
More
- Posts: 40
- Thank you received: 0
14 years 1 month ago #3697
by ricopoulos
Replied by ricopoulos on topic Re: Inserting players into Facebook
Thank you so much for your help.
It's almost done ... when I share it in FB, the link is good now but there is no thumb or video preview like it was with the joomlarulez link.
How can I get it ?
Thanks
It's almost done ... when I share it in FB, the link is good now but there is no thumb or video preview like it was with the joomlarulez link.
How can I get it ?
Thanks
Please Log in or Create an account to join the conversation.
- admin
-
- Offline
- Administrator
-
- Coding is good
14 years 1 month ago #3698
by admin
Replied by admin on topic Re: Inserting players into Facebook
1 - in the custom code you have copy this :
instead this :
anyway i correct this on your account.
2 - there were an error in the code i give you, now it's ok, i had edit it, please update it also.
Code:
fannyfilipe.biz/
instead this :
Code:
http://fannyfilipe.biz/
anyway i correct this on your account.
2 - there were an error in the code i give you, now it's ok, i had edit it, please update it also.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>All we need is LOVE</title>
<meta property="og:description" content=""/>
<meta property="og:image" content="http://video.joomlarulez.com/thumbs/RZYzVKNT-320.jpg"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content="All we need is LOVE"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://FannyFilipe.biz"/>
<meta property="og:video" content="https://content.bitsontherun.com/players/RZYzVKNT-wFFusCc2.swf" />
<meta property="og:video:height" content="700" />
<meta property="og:video:type" content="application/x-shockwave-flash" />
<meta property="og:video:width" content="534" />
<style type="text/css">
<!--
body {
background-color: #f9e2ec;
}
-->
</style></head>
<body>
<div style="text-align:center;width:100%;background-color:#f9e2ec;">
<!-- this table will enable you to get a centred area on which you will add your header, main content and footer. -->
<table width="600" cellpadding="0" cellspacing="0" style="background-color:#f9e2ec;text-align:left;margin:auto;" align="center">
<!-- then you can add your header -->
<tr><td>.</td></tr>
<!-- your main area -->
<tr><td>
<script type="text/javascript" src="http://video.joomlarulez.com/players/RZYzVKNT-wFFusCc2.js"></script>
<script type="text/javascript">
botr_RZYzVKNT_wFFusCc2.addVariable("plugins","sharing-3");
</script>
</td></tr>
<!-- your footer -->
<tr><td>.</td></tr>
</table>
</div>
</body>
</html>
Please Log in or Create an account to join the conversation.
Time to create page: 0.291 seconds
Random
-
Subscription Plan Map
Faq 19.Jul -
AMP Advanced Plugin
Latest 01.Aug -
Bento Advanced Plugin
Latest 26.Dec -
Forum Rules
Forum Faq 08.Mar -
Shopping Page
Uncategorised 17.Apr
Popular
-
JW Player Advanced
15.Apr -
Shopping Page
17.Apr -
-
-
Subscription Plan Map
19.Jul
Recently Updated
-
JW Player Advanced
Latest 15.Apr -
-
Subscription Plan Map
Faq 19.Jul -
-
Bento Advanced Plugin
Latest 26.Dec
Copyright © 2026 Joomla RuleZ. All Rights Reserved.
Joomla! is Free Software released under the GNU General Public License.
Disclaimer
Joomlarulez and this site is not affiliated with or endorsed by The Joomla! Project™. Any products and services provided through this site are not supported or warrantied by The Joomla! Project or Open Source Matters, Inc. Use of the Joomla!® name, symbol, logo and related trademarks is permitted under a limited license granted by Open Source Matters, Inc.

