Can you make edits for adding facebook comment system to highslide MOD like here :
http://www.roadrash.no/hs-support/capti ... ents1.html
I think it requires facebook appID.
Facebook comment in highslide MOD
- jabhi
- BBCoder II
- Posts: 69
- Joined: 16 Mar 2012, 09:13
- BBCodes: 3
- Favourite BBCode: pdf
- Favourite MOD: pretty photo
Facebook comment in highslide MOD
Go phpBB go... Respected : Developers, Supporters.
- jabhi
- BBCoder II
- Posts: 69
- Joined: 16 Mar 2012, 09:13
- BBCodes: 3
- Favourite BBCode: pdf
- Favourite MOD: pretty photo
Facebook comment in highslide MOD
I asked them and they said like this :
I am unable to understand that advice since I don't know coding, that's why I asked your help.I can’t give you a guide for how to add the Facebook comment system to Highslide since we don’t have any official solution for this.
We do have this demo page: http://www.roadrash.no/hs-support/capti ... ents1.html This demo page is based on a solution added to the forum by another Highslide user some time ago.
You need to study the source code to see how it works. Be aware that this solution requires a small piece of custom CSS, a highslide caption div with a custom wrapper, and custom coding in the Highslide settings and in the onclick event. You also need a Facebook appID.
Go phpBB go... Respected : Developers, Supporters.
- jabhi
- BBCoder II
- Posts: 69
- Joined: 16 Mar 2012, 09:13
- BBCodes: 3
- Favourite BBCode: pdf
- Favourite MOD: pretty photo
Facebook comment in highslide MOD
They gave me below code :
overall_header
Head section,
and
In body part,
and
I think body part need some modification and where should I place this ?
overall_header
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#" lang="en" xml:lang="en">
Code: Select all
<script type="text/javascript" src="highslide/highslide-full.js"></script>
<link rel="stylesheet" type="text/css" href="highslide/highslide.css" />
Code: Select all
hs.graphicsDir = 'highslide/graphics/';
hs.align = 'center';
hs.transitions = ['expand', 'crossfade'];
hs.outlineType = 'rounded-white';
hs.fadeInOut = true;
hs.dimmingOpacity = 0.75;
hs.captionOverlay.position = 'rightpanel';
hs.captionOverlay.width = '400px';
hs.preserveContent = false;
// use the highslide-heading as caption below the images
hs.headingOverlay.position = 'below';
hs.numberPosition = 'heading';
Code: Select all
hs.Expander.prototype.onAfterGetCaption = function(sender) {
sender.caption.innerHTML = document.getElementById(sender.custom.fbid).innerHTML;
};
Code: Select all
<div id="fb-root"></div>
<script type="text/javascript">
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/nb_NO/all.js#xfbml=1&appId=XXXXXXXXXXXXXXX";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
Code: Select all
<a href="images/gallery1.jpg" class="highslide" onclick="return hs.expand(this, null, {fbid: 'img101'})">
<img src="images/gallery1.thumb.jpg" alt="Caption for first image" /></a>
<div class="highslide-caption"></div>
<div class="highslide-caption-fix" id="img101"><fb:comments href="http://www.roadrash.no/hs-support/images/gallery1.jpg" num_posts="5" width="365" publish_feed="false" xid="id1"></fb:comments></div>
I think body part need some modification and where should I place this ?
Go phpBB go... Respected : Developers, Supporters.