Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to ask how to add facebook share button on Joomla website in ads? My site where I want to add button

And I use module extension:

mod_facebookshare.xml

<?xml version="1.0" encoding="utf-8"?>
<install type="module" version="1.5.0">
    <name>Facebook Share</name>
    <author>UnDesign</author>
    <creationDate>2008</creationDate>
    <copyright>Copyright (C) 2005 - 2008 undesign.com.au</copyright>
    <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
    <authorEmail>matt@undesign.com.au</authorEmail>
    <authorUrl>www.undesign.com.au</authorUrl>
    <version>1.0.1</version>
    <description>
    <![CDATA[
        <h1>This module shows a facebook share link.</h1>
        <p>It uses the facebook sharer api.</p>
    ]]>
     </description>
    <files>
        <filename module="mod_facebookshare">mod_facebookshare.php</filename>
    </files>
    <params>

    <param name="linkTxt" type="text" default="Share on facebook" label="Link text to display." description="Link text to display for the module." />
    <param name="linkColor" type="text" default="3b5998" label="Colour of link text." description="Colour of link text as a hex value." />
    <param name="linkHColor" type="text" default="e5791e" label="Hover colour of link text." description="Hover colour of link text as a hex value." />
    <param name="theUrl" type="radio" default="1" label="Link" description="Choose either to link to the main website url, or the exact page url.">
            <option value="0">Main Site URL</option>
            <option value="1">Current Page URL</option>
        </param>
    </params>
</install>

mod_facebookshare.php

<?php
//Facebook Share //
defined('_JEXEC') or die('Restricted access');
$linkTxt = $params->get( 'linkTxt', '' );
$linkColor = $params->get( 'linkColor', '' );
$linkHColor = $params->get( 'linkHColor', '' );
$theUrl = $params->get( 'theUrl', '1' );
$wholeUrl = "location.href.substring(0,location.href.lastIndexOf('/'))";
$currentUrl = "location.href";
?>
<script>function fbs_click() {u=<?php if($params->get('theUrl', 1))
        {
        echo $currentUrl;
        }
        else{
        echo $wholeUrl;
        } ?>;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><style> html .fb_share_button { display: -moz-inline-block; display:inline-block; padding:1px 1px 1px 20px; height:17px; color:#<?php echo $linkColor ?>; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat left; } html .fb_share_button:hover { color:#<?php echo $linkHColor ?>; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat left; text-decoration:none; } </style> <a rel="nofollow" href="http://www.facebook.com/share.php?u=<url>" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;"><?php echo $linkTxt; ?></a>

I can add in Left position, like is now and It shares current page url (this is good), but I dont know how to add this button not in main page, but only in ads section, to share members ads.

Thank you for answers.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.