Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Topic started by: Dzonny on January 30, 2009, 12:40:34 PM

Title: Share this topic SMF Mod
Post by: Dzonny on January 30, 2009, 12:40:34 PM
Share this topic v1.3 - SMF Mod


Support topic (http://www.simplemachines.org/community/index.php?topic=289384.0) | Link to Mod (http://custom.simplemachines.org/mods/index.php?mod=1608)



Author(s):
- ravac

Languages:
- English
- Serbian (Thanks to AlenNS (http://www.simplemachines.org/community/index.php?action=profile;u=96104))
- Turkish (Thanks to [istay10.com] (http://www.simplemachines.org/community/index.php?action=profile;u=113042))
- Swedish (Thanks to Nas (http://www.simplemachines.org/community/index.php?action=profile;u=143954))
- Spanish (Thanks to 4kstore (http://www.simplemachines.org/community/index.php?action=profile;u=134279))
- Greek (Thanks to JohnKaL- (http://www.simplemachines.org/community/index.php?action=profile;u=108257))
- Brazilian-Portuguese (Thanks to gremiopoker (http://www.simplemachines.org/community/index.php?action=profile;u=194365))
- French

Compatibility:
- 1.1.x
- 2.x

Demo:
- www.ravac.comze.com

Note:
Turn on/of this mod in: ACP ~ Features and Options ~ Enable Share this topic




Translate will be appreciated, so if you want translate the mod, these are the strings:
languages/Modifications.language.php
// Share this topic SMF Mod - Translate by [name]
$txt['share_this_topic'] = 'Enable Share This Topic';
$txt['stt_1'] = 'Share this topic...';
$txt['stt_2'] = '<b>In a forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>In a site/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Click here to copy this code, then paste it in a forum';
$txt['stt_t_2'] = 'Click here to copy this code, then paste it in a Web';





Changelogs:

Version 1.0 Jan 28, 2009
~ Modification Release
Version 1.1 Feb 06, 2009
~ New Languages Support: Serbian :: Turkish :: Swedish :: Spanish
~ New look of mod: Thanks to SunKing (http://www.simplemachines.org/community/index.php?action=profile;u=82405)
Version 1.2 Feb 19, 2009
~ Added support for babylon theme
~ Mod box moved between quick moderation and quick reply
~ New Languages Support: Greek :: Brazilian-Portuguese
Version 1.3 Feb 23, 2009
~ Added collapse-expand option for default theme
~ New Language Support: French
Title: Re: Share this topic SMF Mod
Post by: Marcus Forsberg on January 30, 2009, 12:43:12 PM
Swedish translation:

$txt['share_This_topic'] = 'Tillåt andra att dela detta ämne';
$txt['stt_1'] = 'Dela detta ämne...';
$txt['stt_2'] = 'I ett forum (BBKod)';
$txt['stt_3'] = 'På en hemsida/blogg (HTML)';
$txt['stt_t_1'] = 'Klicka här för att kopiera denna kod. Klistra sedan in den i ett forum.';
$txt['stt_t_2'] = 'Klicka här för att kopiera denna kod. Klistra sedan in den i en webbsida.';
Title: Re: Share this topic SMF Mod
Post by: Sudhakar Arjunan on January 30, 2009, 01:06:18 PM
Really a nice idea RavacDS.

Will this mod have any issues with the mod which are using [url] links.
Title: Re: Share this topic SMF Mod
Post by: TheDisturbedOne on January 30, 2009, 02:01:33 PM
An idea for a future version of this MOD, have an option for it to be noncollapsed or the way it is now.

Looks great though!
Title: Re: Share this topic SMF Mod
Post by: Ravac on January 30, 2009, 02:21:13 PM
@Nas - Thanks

@A.SK - No

@TheDisturbedOne - We will see something about that...

In future version will be option for selecting which board to show, will that be usefull?
Title: Re: Share this topic SMF Mod
Post by: TheDisturbedOne on January 30, 2009, 02:32:15 PM
I think that would be a nice addition!
Title: Re: Share this topic SMF Mod
Post by: 4Kstore on January 30, 2009, 04:06:27 PM
Nice mod!! thanks!

Spanish Traslation

$txt['share_This_topic'] = 'Permitir Share this topic';
$txt['stt_1'] = 'Compartir este Tema...';
$txt['stt_2'] = 'Para Foros (BBCode)';
$txt['stt_3'] = 'Para Sitios/Blogs (HTML)';
$txt['stt_t_1'] = 'Click acá para copiar el código, luego pegue esto en un foro';
$txt['stt_t_2'] = 'Click acá para copiar el código, luego pegue esto en una web';
Title: Re: Share this topic SMF Mod
Post by: [unplugged] on January 31, 2009, 12:43:46 AM
Very nice mod!

I prettied it up a bit by placing it in a "window" and rearranged the textual layout. You can see it here (http://www.empireofthesun.net/forum/index.php?topic=3400.0#bottom).

I have included the code below for anyone interested.

Code (Display.template.php) Select
/*Share This Topic - SMF Mod by ravac*/
$share_This_topic = 1;
if (isset($modSettings['share_This_topic']) && $modSettings['share_This_topic'] == 1)

  echo'  <div class="tborder" style="margin-top: 0;">
  <div class="catbg" style="padding: 7px;">',$txt['stt_1'],'</div>
    <table class="bordercolor windowbg2" width="100%">
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_2'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_1'] ,'">
[url=' . $scripturl . '?topic=' . $context['current_topic'] .'.0]', $context['subject'], '[/url]
          </textarea></td>
      </tr>
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_3'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_2'] ,'">
<a href="' . $scripturl . '?topic=' . $context['current_topic'] .'.0">', $context['subject'], '</a>
            </textarea></td>';

  echo'      </tr>
    </table>
  </div>
  <br />';


Code (Modifications.english.php) Select
$txt['share_This_topic'] = 'Enable Share This Topic';
$txt['stt_1'] = 'Share this topic...';
$txt['stt_2'] = '<b>In a forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>In a site/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Click here to copy this code, then paste it in a forum';
$txt['stt_t_2'] = 'Click here to copy this code, then paste it in a Web';
Title: Re: Share this topic SMF Mod
Post by: Ravac on January 31, 2009, 06:29:42 AM
Very nice SunKing, thanks
Title: Re: Share this topic SMF Mod
Post by: 4Kstore on January 31, 2009, 01:47:58 PM
Quote from: SunKing on January 31, 2009, 12:43:46 AM
Very nice mod!

I prettied it up a bit by placing it in a "window" and rearranged the textual layout. You can see it here (http://www.empireofthesun.net/forum/index.php?topic=3400.0#bottom).

I have included the code below for anyone interested.

Code (Display.template.php) Select
/*Share This Topic - SMF Mod by ravac*/
$share_This_topic = 1;
if (isset($modSettings['share_This_topic']) && $modSettings['share_This_topic'] == 1)

  echo'  <div class="tborder" style="margin-top: 0;">
  <div class="catbg" style="padding: 7px;">',$txt['stt_1'],'</div>
    <table class="bordercolor windowbg2" width="100%">
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_2'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_1'] ,'">
[url=' . $scripturl . '?topic=' . $context['current_topic'] .'.0]', $context['subject'], '[/url]
          </textarea></td>
      </tr>
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_3'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_2'] ,'">
<a href="' . $scripturl . '?topic=' . $context['current_topic'] .'.0">', $context['subject'], '</a>
            </textarea></td>';

  echo'      </tr>
    </table>
  </div>
  <br />';


Code (Modifications.english.php) Select
$txt['share_This_topic'] = 'Enable Share This Topic';
$txt['stt_1'] = 'Share this topic...';
$txt['stt_2'] = '<b>In a forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>In a site/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Click here to copy this code, then paste it in a forum';
$txt['stt_t_2'] = 'Click here to copy this code, then paste it in a Web';


Thanks !! now is perfect this mod ^^!!
Title: Re: Share this topic SMF Mod
Post by: Mick. on February 01, 2009, 02:37:24 PM
Very cool thanx!
Title: Re: Share this topic SMF Mod
Post by: AlenNS on February 01, 2009, 09:51:14 PM
Српски ћирилица

$txt['share_This_topic'] = 'Омогући Подели ову тему са другима модификацију';
$txt['stt_1'] = 'Подели ову тему са другима...';
$txt['stt_2'] = 'За форуме (BBКод)';
$txt['stt_3'] = 'За сајт/блог (HTML)';
$txt['stt_t_1'] = 'Кликни овде да копираш овај код, а онда га залепи на форум';
$txt['stt_t_2'] = 'Кликни овде да копираш овај код, а онда га залепи на сајт/блог';

Srpski latinica

$txt['share_This_topic'] = 'Omogući Podeli ovu temu sa drugima modifikaciju';
$txt['stt_1'] = 'Podeli ovu temu sa drugima...';
$txt['stt_2'] = 'Za forume (BBKod)';
$txt['stt_3'] = 'Za sajt/blog (HTML)';
$txt['stt_t_1'] = 'Klikni ovde da kopiraš ovaj kod, a onda ga zalepi na forum';
$txt['stt_t_2'] = 'Klikni ovde da kopiraš ovaj kod, a onda ga zalepi na sajt/blog';
Title: Re: Share this topic SMF Mod
Post by: [istay10.com] on February 03, 2009, 09:30:17 AM
Turkish translation


$txt['share_This_topic'] = 'Konuyu Paylaş Aktif Et';
$txt['stt_1'] = 'Konuyu Paylaş...';
$txt['stt_2'] = 'Forumunda Yayınla (BBCode)';
$txt['stt_3'] = 'Blog / Sitende Yayınla (HTML)';
$txt['stt_t_1'] = 'Forumda Yayınlamak için Kodu Kopyalayınız';
$txt['stt_t_2'] = 'Blog / Sitenizde Yayınlamak için Kodu Kopyalayınız';
Title: Re: Share this topic SMF Mod
Post by: JohnKaL- on February 06, 2009, 11:38:57 PM
Greek Translation

$txt['share_This_topic'] = 'Ενεργοποίηση μοιράσματος των θεμάτων';
$txt['stt_1'] = 'Μοίραστε αυτό το θέμα...';
$txt['stt_2'] = '<b>σε ένα forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>σε ένα site/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Πατήστε εδώ για να αντιγραφεί ο κώδικας, μετά κάντε επικόλληση στο forum';
$txt['stt_t_2'] = 'Πατήστε εδώ για να αντιγραφεί ο κώδικας, μετά κάντε επικόλληση στο Web';

@RavacDS Nice mod thanks  ;)
Title: Re: Share this topic SMF Mod
Post by: gremiopoker on February 08, 2009, 05:43:16 AM
dont work to me....

SMF 2.0 RC1 theme babylon

I Enable Share This Topic on admin

see image:
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg4.imageshack.us%2Fimg4%2F4559%2Fsharemodrt2.th.jpg&hash=70555a338136842b58d82095c3146c7673b4958e) (http://img4.imageshack.us/my.php?image=sharemodrt2.jpg)

Brazilian Portuguese translation:

$txt['share_This_topic'] = 'Permitir Share this topic';
$txt['stt_1'] = 'Compartir este Tópico...';
$txt['stt_2'] = 'Para Forum (BBCode)';
$txt['stt_3'] = 'Para Sites/Blogs (HTML)';
$txt['stt_t_1'] = 'Click aqui para copiar esse código, após cole em um forum';
$txt['stt_t_2'] = 'Click aqui para copiar esse código, após cole em um website';
Title: Re: Share this topic SMF Mod
Post by: gremiopoker on February 08, 2009, 06:58:36 AM
working now

in Display.template.php i cant find this line to add before

$mod_buttons = array(

But I find this line...I add before this line and work

$moderationButtons = array();

theme babylon
Title: Re: Share this topic SMF Mod
Post by: Ravac on February 08, 2009, 09:19:52 AM
I changed Display.template.php just for default, not for babylon, that was the problem ;) will update it later.

Tnx for translation...
Title: Re: Share this topic SMF Mod
Post by: chrisb on February 13, 2009, 11:13:59 PM
i have installed and works a treat for me thanks
Title: Re: Share this topic SMF Mod
Post by: Kimmie on February 18, 2009, 10:18:58 PM
any screenshots or a demo that we dont have to register on the site just to see it?
Title: Re: Share this topic SMF Mod
Post by: [unplugged] on February 18, 2009, 10:23:22 PM
You can see it in action here (http://www.empireofthesun.net/forum/index.php?topic=3400.0) (no login required).
Title: Re: Share this topic SMF Mod
Post by: Kimmie on February 18, 2009, 11:42:03 PM
Thank you for that. This mod probably wouldnt be of any use if you have it turned off to guests. They cant see it unless they register. Although ... it could be an incentive for new members :)
Title: Re: Share this topic SMF Mod
Post by: [unplugged] on February 18, 2009, 11:58:19 PM
It would probably be pretty easy to allow guests to see.
Title: Re: Share this topic SMF Mod
Post by: Kimmie on February 19, 2009, 05:13:52 PM
I'm sure it would be however, if I did that I would have to turn my forum on to guests and Im not going to do that.
Title: Re: Share this topic SMF Mod
Post by: jayman2 on February 23, 2009, 04:31:53 PM
Nice mod.  I just installed it on my smf 2.0 RC1, without any errors.  When I tested it, I found that the bbc part works great, but... when tried the html part, I copied the code and pasted it into a comment on my smf blog, but all that shows up in the blog comment is the name of the topic.  It's not a live link.  Then if I click on "edit", all that's left is the title of the post in the text input window.  The code is all removed.  Has anyone else seen this?
Title: Re: Share this topic SMF Mod
Post by: Ravac on February 26, 2009, 01:17:28 PM
Quote from: jayman2 on February 23, 2009, 04:31:53 PM
Nice mod.  I just installed it on my smf 2.0 RC1, without any errors.  When I tested it, I found that the bbc part works great, but... when tried the html part, I copied the code and pasted it into a comment on my smf blog, but all that shows up in the blog comment is the name of the topic.  It's not a live link.  Then if I click on "edit", all that's left is the title of the post in the text input window.  The code is all removed.  Has anyone else seen this?

"Job" of this mod is, that he give you a bbc and html links of some topic
eg.

[url=link_to_topic]Topic name[/url]

<a href="link_to_topic">Topic name</a>

So, that has nothing to do with this mod and smf blog
Title: Re: Share this topic SMF Mod
Post by: Impsat-1 on April 10, 2009, 03:43:10 AM
Mmm... hey Guys, can say me how I can do for centered box in display template? some like this? or well..., please tell me how can do thats... thanks for ask :)

// Share this topic SMF Mod - Translate by [name]
$txt['share_this_topic'] = '<center>Enable Share This Topic</center>';
$txt['stt_1'] = '<center>Share this topic...</center>';
$txt['stt_2'] = '<center><b>In a forum</b><br /><small>(BBCode)</small></center>';
$txt['stt_3'] = '<center><b>In a site/blog</b><br /><small>(HTML)</small></center>';
$txt['stt_t_1'] = '<center>Click here to copy this code, then paste it in a forum</center>';
$txt['stt_t_2'] = '<center>Click here to copy this code, then paste it in a Web</center>';


Now is in "left" but I want if can in center tell my how

Regards & Thanks for This Great MOD!!! 8).-

Note: Sorry for my english but I'm from Argentina :).-
Title: Re: Share this topic SMF Mod
Post by: Ravac on April 11, 2009, 09:54:48 AM
@Nahuel-1

Which SMF version you are using?
Title: Re: Share this topic SMF Mod
Post by: Impsat-1 on April 11, 2009, 08:46:38 PM
Uhhh... thanks Ravac for interested, mi SMF is 1.1.8... theme Default, see the image

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg4.imageshack.us%2Fimg4%2F7302%2Fsharethistopicpfssmf.jpg&hash=c31555d22c99d76a2078d0ca9121aaf0aad979e6) (http://img4.imageshack.us/img4/7302/sharethistopicpfssmf.jpg)

is in left corner and I want in center or centered... Thanks again :)
Regards 8).-
Title: Re: Share this topic SMF Mod
Post by: Impsat-1 on April 14, 2009, 03:11:32 AM
Mmm... hey Guys, any suggestions???... thank's for ask :)

Regards 8).-
Title: Re: Share this topic SMF Mod
Post by: Ravac on April 14, 2009, 08:51:00 AM
ohh i'm so sorry i totaly forgot about this :d

Try this code below...

Code (Find) Select
// Share this topic - SMF Mod
$share_this_topic = 1;
if (isset($modSettings['share_this_topic']) && $modSettings['share_this_topic'] == 1)

  echo'
  <br /><div class="tborder" style="margin-top: 0;">
  <div class="catbg" style="padding: 6px; vertical-align: middle; text-align: left; ">
  <a href="#" onclick="shrinkHeaderIC(!current_header_ic); return false;"><img id="upshrink_ic" src="', $settings['images_url'], '/', empty($options['collapse_header_ic']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" style="margin-right: 2ex;" align="right" /></a>
  ',$txt['stt_1'],'
  </div>
  <div id="upshrinkHeaderIC"', empty($options['collapse_header_ic']) ? '' : ' style="display: none;"', '>
    <table class="windowbg2" width="100%">
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_2'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_1'] ,'">
[url=' . $scripturl . '?topic=' . $context['current_topic'] .'.0]', $context['subject'], '[/url]
          </textarea></td>
      </tr>
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_3'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_2'] ,'">
<a href="' . $scripturl . '?topic=' . $context['current_topic'] .'.0">', $context['subject'], '</a>
            </textarea></td>
</tr>
    </table>
  </div>
   </div>';



Code (Replace with) Select
// Share this topic - SMF Mod
$share_this_topic = 1;
if (isset($modSettings['share_this_topic']) && $modSettings['share_this_topic'] == 1)

  echo'
  <br /><div class="tborder" style="margin-top: 0;">
  <div class="catbg" style="padding: 6px; vertical-align: middle; text-align: left; ">
  <a href="#" onclick="shrinkHeaderIC(!current_header_ic); return false;"><img id="upshrink_ic" src="', $settings['images_url'], '/', empty($options['collapse_header_ic']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" style="margin-right: 2ex;" align="right" /></a>
  <center>',$txt['stt_1'],'</center>
  </div>
  <div id="upshrinkHeaderIC"', empty($options['collapse_header_ic']) ? '' : ' style="display: none;"', '>
    <table class="windowbg2" width="100%">
      <tr>
        <td width="30%" style="padding: 5px;" align="right">', $txt['stt_2'] ,'</td>
        <td width="50%"><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_1'] ,'">
[url=' . $scripturl . '?topic=' . $context['current_topic'] .'.0]', $context['subject'], '[/url]
          </textarea></td>
      </tr>
      <tr>
        <td width="30%" style="padding: 5px;" align="right">', $txt['stt_3'] ,'</td>
        <td width="50%"><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_2'] ,'">
<a href="' . $scripturl . '?topic=' . $context['current_topic'] .'.0">', $context['subject'], '</a>
            </textarea></td>
</tr>
    </table>
  </div>
   </div>';
Title: Re: Share this topic SMF Mod
Post by: Impsat-1 on April 17, 2009, 03:08:41 PM
Wow... Ravac is PERFECT!!! thanks, THANKS Master...

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fimg48.imageshack.us%2Fimg48%2F4174%2Fubicacionsharethistopic.jpg&hash=146ea95d5ce5a745e2581a589601ff5284d662df) (http://img48.imageshack.us/img48/4174/ubicacionsharethistopic.jpg)

Regards... 8)

GREAT MOD... THANK YOU!!! for you support.-
Title: Re: Share this topic SMF Mod
Post by: IvoLeite on May 05, 2009, 05:23:07 PM
Hello.

Is there a way to turn this (great) mod visible to guests?
Tks.
Title: Re: Share this topic SMF Mod
Post by: Ravac on May 05, 2009, 07:10:51 PM
Quote from: IvoLeite on May 05, 2009, 05:23:07 PM
Hello.

Is there a way to turn this (great) mod visible to guests?
Tks.

He is visible for guests.. :)
Title: Re: Share this topic SMF Mod
Post by: MaXiForum.cz on June 11, 2009, 07:35:19 AM
Nice mod!

Czech (http://www.simplemachines.org/community/index.php?topic=301494.msg2104363#msg2104363) translate ;)
Title: Re: Share this topic SMF Mod
Post by: islam2hamy on July 11, 2009, 03:36:11 AM
nice mod

Arabic-utf8 translation :

// Share this topic SMF Mod - Translate by [islam2hamy]
$txt['share_this_topic'] = 'Enable Share This Topic';
$txt['stt_1'] = 'مشاركة هذا الموضوع ....';
$txt['stt_2'] = '<b>فى منتدى</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>فى موقع/مدونة</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'إضغط هنا لنسخ الكود, ثم بعد ذلك قم بوضعه فى أى منتدى';
$txt['stt_t_2'] = 'إضغط هنا لنسخ الكود, ثم بعد ذلك قم بوضعه فى أى موقع/مدونة';


please before put the translation in the file be sure that the file encode is UTF-8
Title: Re: Share this topic SMF Mod
Post by: Naveeddil on August 18, 2009, 12:37:58 AM
hey dears
when i activate the Mod
the windos shows up on Header of the page as in Screenshot
which area i suppose to edit in Template please
Title: Re: Share this topic SMF Mod
Post by: sAce on August 18, 2009, 01:08:26 AM
you have to edit the display.template.php of your theme
Title: Re: Share this topic SMF Mod
Post by: Naveeddil on August 18, 2009, 11:27:28 PM
Quote from: S-Ace on August 18, 2009, 01:08:26 AM
you have to edit the display.template.php of your theme
i know i have to edit the display.remplate but what part to copy paste somewhere else????
Title: Re: Share this topic SMF Mod
Post by: sAce on August 18, 2009, 11:41:25 PM
./Themes/default/Display.template.php

find


// Share this topic - SMF Mod
$share_this_topic = 1;
if (isset($modSettings['share_this_topic']) && $modSettings['share_this_topic'] == 1)

  echo'
  <br /><div class="tborder" style="margin-top: 0;">
  <div class="catbg" style="padding: 6px; vertical-align: middle; text-align: left; ">
  <a href="#" onclick="shrinkHeaderIC(!current_header_ic); return false;"><img id="upshrink_ic" src="', $settings['images_url'], '/', empty($options['collapse_header_ic']) ? 'collapse.gif' : 'expand.gif', '" alt="*" title="', $txt['upshrink_description'], '" style="margin-right: 2ex;" align="right" /></a>
  ',$txt['stt_1'],'
  </div>
  <div id="upshrinkHeaderIC"', empty($options['collapse_header_ic']) ? '' : ' style="display: none;"', '>
    <table class="windowbg2" width="100%">
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_2'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_1'] ,'">
[url=' . $scripturl . '?topic=' . $context['current_topic'] .'.0]', $context['subject'], '[/url]
          </textarea></td>
      </tr>
      <tr>
        <td width="13%" style="padding:5px;">', $txt['stt_3'] ,'</td>
        <td><textarea style="overflow:hidden;padding:0;margin:0;" readonly="readonly" rows="2" cols="50" onclick="this.select();" title="', $txt['stt_t_2'] ,'">
<a href="' . $scripturl . '?topic=' . $context['current_topic'] .'.0">', $context['subject'], '</a>
            </textarea></td>
</tr>
    </table>
  </div>
   </div>';



add before this
echo '<br />';

if ($context['can_reply'] && !empty($options['display_quick_reply']))
Title: Re: Share this topic SMF Mod
Post by: Naveeddil on August 19, 2009, 03:13:26 AM
Nothing Happened Dear
Title: Re: Share this topic SMF Mod
Post by: sAce on August 19, 2009, 04:14:47 AM
please attach your display template and , post ur forum url
Title: Re: Share this topic SMF Mod
Post by: DirtRider on November 20, 2009, 07:30:00 AM
Will we see a version for RC2 soon
Title: Re: Share this topic SMF Mod
Post by: ChaosEnergy on December 27, 2009, 07:15:36 AM
any news on this last question???
Title: Re: Share this topic SMF Mod
Post by: Dzonny on December 27, 2009, 09:45:53 AM
Hello there.
Sorry for late response.

Mod should work with RC2 fine:
http://custom.simplemachines.org/mods/index.php?action=parse;mod=1608;attach=87916;smf_version=2.0_RC2

However, im working on new version of mod.

Regards.
Title: Re: Share this topic SMF Mod
Post by: tiger4020 on January 29, 2010, 05:04:58 PM
Hi,
i have installed this mod that is share topic on my forum as well as my test forum. it works fine on the test forum but on my main forum it gives a problem in sharing.
eg. index.php/topic,9.0.html
it shares as listed above instead it had to share as
eg. index.php%3Ftopic%3D16.0

Hope i am clear in saying wat prob i am facing.

it just wont share the topic when i click on facebook or others.
Title: Re: Share this topic SMF Mod
Post by: Dzonny on January 30, 2010, 04:37:45 AM
Hello there tiger4920.
Which forum version are you using?
Please attach your Display.template.php from your themes directory.
Title: Re: Share this topic SMF Mod
Post by: GiorgioB on March 02, 2010, 08:00:00 AM
Italian Translation

// Share this topic SMF Mod - Translate by [GiorgioB]
$txt['share_this_topic'] = 'Attiva Condividi il Topic';
$txt['stt_1'] = 'Condividi il Topic...';
$txt['stt_2'] = '<b>In un forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>In un sito/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Clicca qui per copiare il codice, poi incollalo nel Forum';
$txt['stt_t_2'] = 'Clicca qui per copiare il codice, poi incollalo sul Web';
Title: Re: Share this topic SMF Mod
Post by: KensonPlays on March 02, 2010, 11:25:07 AM
GiorgioB sounds like he/she used a translator, no code to turn into the italian characters...
Title: Re: Share this topic SMF Mod
Post by: asheashe on December 03, 2010, 11:34:35 AM
Hi,

I have installed this and its semi-working. When we share the topic it shows up on facebook as just the forum index rather than the particular topic or post??

URL of forum: haxed dot co dot uk

Code of index.tempate.php

<?php
// Version: 1.1; index

/* This template is, perhaps, the most important template in the theme.  It
contains the main template layer that displays the header and footer of
the forum, namely with main_above and main_below.  It also contains the
menu sub template, which appropriately displays the menu; the init sub
template, which is there to set the theme up; (init can be missing.) and
the linktree sub template, which sorts out the link tree.

The init sub template should load any data and set any hardcoded options.

The main_above sub template is what is shown above the main content, and
should contain anything that should be shown up there.

The main_below sub template, conversely, is shown after the main content.
It should probably contain the copyright statement and some other things.

The linktree sub template should display the link tree, using the data
in the $context['linktree'] variable.

The menu sub template should display all the relevant buttons the user
wants and or needs.

For more information on the templating system, please see the site at:
http://www.simplemachines.org/
*/

// Initialize the template... mainly little settings.
function template_init()
{
global $context$settings$options$txt;

/* Use images from default theme when using templates from the default theme?
if this is 'always', images from the default theme will be used.
if this is 'defaults', images from the default theme will only be used with default templates.
if this is 'never' or isn't set at all, images from the default theme will not be used. */
$settings['use_default_images'] = 'never';

/* What document type definition is being used? (for font size and other issues.)
'xhtml' for an XHTML 1.0 document type definition.
'html' for an HTML 4.01 document type definition. */
$settings['doctype'] = 'xhtml';

/* The version this template/theme is for.
This should probably be the version of SMF it was created for. */
$settings['theme_version'] = '1.1';

/* Set a setting that tells the theme that it can render the tabs. */
$settings['use_tabs'] = false;

/* Use plain buttons - as oppossed to text buttons? */
$settings['use_buttons'] = false;

/* Show sticky and lock status seperate from topic icons? */
$settings['seperate_sticky_lock'] = false;
}

// The main sub template above the content.
function template_main_above()
{
global $context$settings$options$scripturl$txt$modSettings;

// Show right to left and the character set for ease of translating.
echo '<!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"'
$context['right_to_left'] ? ' dir="rtl"' '''><head>';

// facebook needs this... Share This Topic mod
global $context$modSettings$scripturl;
    
echo  '<meta property="og:title" content="', !empty($context['page_title']) ? $context['page_title'] : '''"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="'
, !empty($modSettings['share_likebutton_image']) ?  $modSettings['share_likebutton_image'] : '''"/>
<meta property="og:site_name" content="'
, !empty($context['forum_name']) ? $context['forum_name'] : '''"/>
    <meta property="og:url" content="'
$scripturl '"/>
    <meta property="fb:app_id" content="'
, !empty($modSettings['share_likebutton_appid']) ? $modSettings['share_likebutton_appid'] : '''"/>
 <meta name="description" content="Haxed>
<meta http-equiv="Content-Language" content="en" />
<meta name="description" content="Teesside based forum covering nights out, gigs, standup, events and more happening in Middlesbrough, Stockton, Darlington Hartlepool and beyond." />
<meta name="keywords" content="Middlesbrough forum, Teesside forum, Rock music middlesbrough, Music forum Middlesbrough, Discussion forum middlesbrough, Teesside discussion forum, Gigs middlesbrough, comedy middlesbrough, comedy teesside, ten feet tall teesside, the crown middlesbrough, the empire middlesbrough, things to do in middlesbrough, nightclubs in middlesbrough, middlesbrough blog, Middlesbrough, weather in middlesbrough, middlesbrough jobs, live music middlesbrough, middlesbrough town hall, boro FC, tees valley airport, teeside uni, teesside university, redcar and cleveland, events in middlesbrough, middlesbrough bands, teesside bands, venues in middlesbrough, venues in teesside, middlesbrough football club, darlington football club, teesside community, alternative music middlesbrough, the arena, evening gazette middlesbrough, cineworld middlesbrough, teesside park middlesbrough, the middlesbrough arena, overdrive promotions" />
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "'
$settings['theme_url'], '";
var smf_images_url = "'
$settings['images_url'], '";
var smf_scripturl = "'
$scripturl'";
var smf_iso_case_folding = '
$context['server']['iso_case_folding'] ? 'true' 'false'';
var smf_charset = "'
$context['character_set'], '";
// ]]></script>

<!-- Include YUI Core -->
<script language="JavaScript" type="text/javascript" src="http://haxed.mlark.haxed.co.uk/forum/Themes/default/yui/build/yahoo/yahoo-min.js"></script> 
<script language="JavaScript" type="text/javascript" src="http://haxed.mlark.haxed.co.uk/forum/Themes/default/yui/build/dom/dom-min.js"></script> 
<script language="JavaScript" type="text/javascript" src="http://haxed.mlark.haxed.co.uk/forum/Themes/default/yui/build/event/event-min.js"></script> 
<script language="JavaScript" type="text/javascript" src="http://haxed.mlark.haxed.co.uk/forum/Themes/default/yui/build/animation/animation-min.js"></script>

<!-- End of YUI Insert -->

<!-- Fancy Spoiler Tags -->
<script language="JavaScript" type="text/javascript" src="http://haxed.mlark.haxed.co.uk/forum/Themes/default/spoilers.js"></script>
<link rel="stylesheet" type="text/css" href="http://haxed.mlark.haxed.co.uk/forum/Themes/default/spoilers.css"/>
<!-- End of Fancy Spoiler Insert -->

<title>'
$context['page_title'], '</title>';

// The ?fin11 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/style.css?fin11" />
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/print.css?fin11" media="print" />';

/* Internet Explorer 4/5 and Opera 6 just don't do font sizes properly. (they are big...)
Thus, in Internet Explorer 4, 5, and Opera 6 this will show fonts one size smaller than usual.
Note that this is affected by whether IE 6 is in standards compliance mode.. if not, it will also be big.
Standards compliance mode happens when you use xhtml... */
if ($context['browser']['needs_size_fix'])
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/fonts-compat.css" />';

// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="help" href="'
$scripturl'?action=help" target="_blank" />
<link rel="search" href="' 
$scripturl '?action=search" />
<link rel="contents" href="'
$scripturl'" />';

// If RSS feeds are enabled, advertise the presence of one.
if (!empty($modSettings['xmlnews_enable']))
echo '
<link rel="alternate" type="application/rss+xml" title="'
$context['forum_name'], ' - RSS" href="'$scripturl'?type=rss;action=.xml" />';

// If we're viewing a topic, these should be the previous and next topics, respectively.
if (!empty($context['current_topic']))
echo '
<link rel="prev" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=prev" />
<link rel="next" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=next" />';

// If we're in a board, or a topic for that matter, the index will be the board's index.
if (!empty($context['current_board']))
echo '
<link rel="index" href="' 
$scripturl '?board=' $context['current_board'] . '.0" />';

// We'll have to use the cookie to remember the header...
if ($context['user']['is_guest'])
$options['collapse_header'] = !empty($_COOKIE['upshrink']);

// Output any remaining HTML headers. (from mods, maybe?)
echo $context['html_headers'], '

<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var current_header = '
, empty($options['collapse_header']) ? 'false' 'true'';

function shrinkHeader(mode)
{'
;

// Guests don't have theme options!!
if ($context['user']['is_guest'])
echo '
document.cookie = "upshrink=" + (mode ? 1 : 0);'
;
else
echo '
smf_setThemeOption("collapse_header", mode ? 1 : 0, null, "'
$context['session_id'], '");';

echo '
document.getElementById("upshrink").src = smf_images_url + (mode ? "/upshrink2.gif" : "/upshrink.gif");

document.getElementById("upshrinkHeader").style.display = mode ? "none" : "";

current_header = mode;
}
// ]]></script>
</head>
<body>'
;
if ($context['penguinOn'] && $context['user']['is_logged'] &&
isset($context['penguin']['current']) && strcmp (isset($_REQUEST['action']) ? $_REQUEST['action']:'''penguin')) {
if (!(mt_rand(0,1))) {
$redir_js "window.location='" $scripturl "?action=penguin;penguin="$context['penguin']['current'] ."'";
                echo 
'<div id="penguin" onClick="'$redir_js'"></div>';
                echo 
'<script type="text/javascript">penguinType = "'$context['penguin']['image'], '";';
                echo 
'penguinWidth='$context['penguin']['width'],';';
                echo 
'penguinHeight='$context['penguin']['height'],';';
           
echo 'penguinFormat="'$context['penguin']['fileType'],'";';
                echo 
'</script>';
echo '<script type="text/javascript" src="'$settings['default_theme_url'], '/penguin.js"></script>';
}
}

// Because of the way width/padding are calculated, we have to tell Internet Explorer 4 and 5 that the content should be 100% wide. (or else it will assume about 108%!)
echo '
<div id="headerarea" style="padding: 12px 30px 4px 30px;'
$context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' width: 100%;' '''">';

// The logo and the three info boxes.
echo '
<table cellspacing="0" cellpadding="0" border="0" width="100%" style="position: relative;">
<tr>
<td colspan="2" valign="bottom" style="padding: 5px; white-space: nowrap;">'
;

// This part is the logo and forum name.  You should be able to change this to whatever you want...
echo '
<img src="'
$settings['images_url'], '/smflogo.gif" style="width: 250px; float: ', !$context['right_to_left'] ? 'right' 'left'';" alt="" />';
if (empty($settings['header_logo_url']))
echo '
<span style="font-family: Georgia, sans-serif; font-size: xx-large;">'
$context['forum_name'], '</span>';
else
echo '
<img src="'
$settings['header_logo_url'], '" alt="'$context['forum_name'], '" border="0" />';

echo ' <a href="http://haxed.tumblr.com/">Click Here for the Haxed Tumblr page</a>
</td>
</tr>
<tr id="upshrinkHeader"'
, empty($options['collapse_header']) ? '' ' style="display: none;"''>
<td valign="top">
<div class="headertitles" style="margin-right: 5px; position: relative;"><img src="'
$settings['images_url'], '/blank.gif" height="12" alt="" /></div>
<div class="headerbodies" style="position: relative; margin-right: 5px; background-image: url('
$settings['images_url'], '/box_bg.gif);">
<img src="'
$settings['images_url'], '/'$context['user']['language'], '/userinfo.gif" style="position: absolute; left: '$context['browser']['is_ie5'] || $context['browser']['is_ie4'] ? '0' '-1px''; top: -16px; clear: both;" alt="" />
<table width="99%" cellpadding="0" cellspacing="5" border="0"><tr>'
;

if (!empty($context['user']['avatar']))
echo '<td valign="middle">'$context['user']['avatar']['image'], '</td>';

echo '<td valign="top" class="smalltext" style="width: 100%; font-family: verdana, arial, sans-serif;">';

// If the user is logged in, display stuff like their name, new messages, etc.
if ($context['user']['is_logged'])
{
echo '
'
$txt['hello_member'], ' <b>'$context['user']['name'], '</b>';

// Only tell them about their messages if they can read their messages!
if ($context['allow_pm'])
echo ', '$txt[152], ' <a href="'$scripturl'?action=pm">'$context['user']['messages'], ' '$context['user']['messages'] != $txt[153] : $txt[471], '</a>'$txt['newmessages4'], ' '$context['user']['unread_messages'], ' '$context['user']['unread_messages'] == $txt['newmessages0'] : $txt['newmessages1'];
echo '.<br />';

// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<b>'
$txt[616], '</b><br />';

// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
'
$context['unapproved_members'] == $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="'$scripturl'?action=viewmembers;sa=browse;type=approve">'$context['unapproved_members'] == $txt['approve_member'] : $context['unapproved_members'] . ' ' $txt['approve_members'], '</a> '$txt['approve_members_waiting'], '<br />';

// Show the total time logged in?
if (!empty($context['user']['total_time_logged_in']))
{
echo '
'
$txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '<br />';
}

echo '
<a href="'
$scripturl'?action=unread">'$txt['unread_since_visit'], '</a><br />
<a href="'
$scripturl'?action=unreadreplies">'$txt['show_unread_replies'], '</a><br />
'
$context['current_time'];
}
// Otherwise they're a guest - so politely ask them to register or login.
else
{
echo '
'
$txt['welcome_guest'], '<br />
'
$context['current_time'], '<br />

<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/sha1.js"></script>

<form action="'
$scripturl'?action=login2" method="post" accept-charset="'$context['character_set'], '" style="margin: 3px 1ex 1px 0;"', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' $context['session_id'] . '\');"' '''>
<div style="text-align: right;">
<input type="text" name="user" size="10" /> <input type="password" name="passwrd" size="10" />
<select name="cookielength">
<option value="60">'
$txt['smf53'], '</option>
<option value="1440">'
$txt['smf47'], '</option>
<option value="10080">'
$txt['smf48'], '</option>
<option value="43200">'
$txt['smf49'], '</option>
<option value="-1" selected="selected">'
$txt['smf50'], '</option>
</select>
<input type="submit" value="'
$txt[34], '" /><br />
'
$txt['smf52'], '
<input type="hidden" name="hash_passwrd" value="" />
</div>
</form>'
;
}

echo '
</td></tr></table>
</div>

<form action="'
$scripturl'?action=search2" method="post" accept-charset="'$context['character_set'], '" style="margin: 0;">
<div style="margin-top: 7px;">
<b>'
$txt[182], ': </b><input type="text" name="search" value="" style="width: 190px;" />&nbsp;
<input type="submit" name="submit" value="'
$txt[182], '" style="width: 8ex;" />&nbsp;
<a href="'
$scripturl'?action=search;advanced">'$txt['smf298'], '</a>
<input type="hidden" name="advanced" value="0" />'
;

// Search within current topic?
if (!empty($context['current_topic']))
echo '
<input type="hidden" name="topic" value="'
$context['current_topic'], '" />';

// If we're on a certain board, limit it to this board ;).
elseif (!empty($context['current_board']))
echo '
<input type="hidden" name="brd['
$context['current_board'], ']" value="'$context['current_board'], '" />';

echo '
</div>
</form>

</td>
<td style="width: 262px; '
, !$context['right_to_left'] ? 'padding-left' 'padding-right'': 6px;" valign="top">';

// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<div class="headertitles" style="width: 260px;"><img src="'
$settings['images_url'], '/blank.gif" height="12" alt="" /></div>
<div class="headerbodies" style="width: 260px; position: relative; background-image: url('
$settings['images_url'], '/box_bg.gif); margin-bottom: 8px;">
<img src="'
$settings['images_url'], '/'$context['user']['language'], '/newsbox.gif" style="position: absolute; left: -1px; top: -16px;" alt="" />
<div style="height: 50px; overflow: auto; padding: 5px;" class="smalltext">'
$context['random_news_line'], '</div>
</div>'
;

// The "key stats" box.
echo '
<div class="headertitles" style="width: 260px;"><img src="'
$settings['images_url'], '/blank.gif" height="12" alt="" /></div>
<div class="headerbodies" style="width: 260px; position: relative; background-image: url('
$settings['images_url'], '/box_bg.gif);">
<img src="'
$settings['images_url'], '/'$context['user']['language'], '/keystats.gif" style="position: absolute; left: -1px; top: -16px;" alt="" />
<div style="'
, !$context['browser']['is_ie'] ? 'min-height: 35px;' 'height: 4em;'' padding: 5px;" class="smalltext">
<b>'
$context['common_stats']['total_posts'], '</b> '$txt[95], ' '$txt['smf88'], ' <b>'$context['common_stats']['total_topics'], '</b> '$txt[64], ' '$txt[525], ' <span style="white-space: nowrap;"><b>'$context['common_stats']['total_members'], '</b> '$txt[19], '</span><br />
'
$txt[656], ': <b> '$context['common_stats']['latest_member']['link'], '</b>
</div>
</div>'
;

echo '
</td>
</tr>
</table>

<a href="javascript:void(0);" onclick="shrinkHeader(!current_header); return false;"><img id="upshrink" src="'
$settings['images_url'], '/', empty($options['collapse_header']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" style="margin: 2px 2ex 2px 0;" border="0" /></a>';
// Share this topic mod
if (!empty($modSettings['share_likebutton_enable']))
    {
echo 
'<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({appId: \''
, !empty($modSettings['share_likebutton_appid']) ? $modSettings['share_likebutton_appid'] : '''\', status: true, cookie: true,
             xfbml: true});
  };
  (function() {
    var e = document.createElement(\'script\'); e.async = true;
    e.src = document.location.protocol +
      \'//connect.facebook.net/'
, !empty($modSettings['share_likebutton_lang']) ? $modSettings['share_likebutton_lang'] : 'en_US''/all.js\';
    document.getElementById(\'fb-root\').appendChild(e);
  }());
</script>'
;
}
// Share this topic mod end
// Show the menu here, according to the menu sub template.
template_menu();

echo '
</div>'
;

// The main content should go here.  A table is used because IE 6 just can't handle a div.
echo '
<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr>
<td id="bodyarea" style="padding: 1ex 20px 2ex 20px;">'
;
}

function 
template_main_below()
{
global $context$settings$options$scripturl$txt;

echo '</td>
</tr></table>'
;

// Show the "Powered by" and "Valid" logos, as well as the copyright.  Remember, the copyright must be somewhere!
echo '

<div id="footerarea" style="text-align: center; padding-bottom: 1ex;'
$context['browser']['needs_size_fix'] && !$context['browser']['is_ie6'] ? ' width: 100%;' '''">
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
function smfFooterHighlight(element, value)
{
element.src = smf_images_url + "/" + (value ? "h_" : "") + element.id + ".gif";
}
// ]]></script>
<table cellspacing="0" cellpadding="3" border="0" width="100%">
<tr>
<td width="28%" valign="middle" align="'
, !$context['right_to_left'] ? 'right' 'left''">
<a href="http://www.mysql.com/" target="_blank"><img id="powered-mysql" src="'
$settings['images_url'], '/powered-mysql.gif" alt="'$txt['powered_by_mysql'], '" width="54" height="20" style="margin: 5px 16px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://www.php.net/" target="_blank"><img id="powered-php" src="'
$settings['images_url'], '/powered-php.gif" alt="'$txt['powered_by_php'], '" width="54" height="20" style="margin: 5px 16px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
</td>
<td valign="middle" align="center" style="white-space: nowrap;">
'
theme_copyright(), '
</td>
<td width="28%" valign="middle" align="'
, !$context['right_to_left'] ? 'left' 'right''">
<a href="http://validator.w3.org/check/referer" target="_blank"><img id="valid-xhtml10" src="'
$settings['images_url'], '/valid-xhtml10.gif" alt="'$txt['valid_xhtml'], '" width="54" height="20" style="margin: 5px 16px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank"><img id="valid-css" src="'
$settings['images_url'], '/valid-css.gif" alt="'$txt['valid_css'], '" width="54" height="20" style="margin: 5px 16px;" border="0" onmouseover="smfFooterHighlight(this, true);" onmouseout="smfFooterHighlight(this, false);" /></a>
</td>
</tr>
</table>'
;

// Show the load time?
if ($context['show_load_time'])
echo '
<span class="smalltext">'
$txt['smf301'], $context['load_time'], $txt['smf302'], $context['load_queries'], $txt['smf302b'], '</span>';

echo '
</div>'
;

// This is an interesting bug in Internet Explorer AND Safari.  Rather annoying, it makes overflows just not tall enough.
if (($context['browser']['is_ie'] && !$context['browser']['is_ie4']) || $context['browser']['is_mac_ie'] || $context['browser']['is_safari'] || $context['browser']['is_firefox'])
{
// The purpose of this code is to fix the height of overflow: auto div blocks, because IE can't figure it out for itself.
echo '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA['
;

// Unfortunately, Safari does not have a "getComputedStyle" implementation yet, so we have to just do it to code...
if ($context['browser']['is_safari'])
echo '
window.addEventListener("load", smf_codeFix, false);

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = 0; i < codeFix.length; i++)
{
if ((codeFix[i].className == "code" || codeFix[i].className == "post" || codeFix[i].className == "signature") && codeFix[i].offsetHeight < 20)
codeFix[i].style.height = (codeFix[i].offsetHeight + 20) + "px";
}
}'
;
elseif ($context['browser']['is_firefox'])
echo '
window.addEventListener("load", smf_codeFix, false);
function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = 0; i < codeFix.length; i++)
{
if (codeFix[i].className == "code" && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0))
codeFix[i].style.overflow = "scroll";
}
}'
;
else
{
echo '
var window_oldOnload = window.onload;
window.onload = smf_codeFix;

function smf_codeFix()
{
var codeFix = document.getElementsByTagName ? document.getElementsByTagName("div") : document.all.tags("div");

for (var i = codeFix.length - 1; i > 0; i--)
{
if (codeFix[i].currentStyle.overflow == "auto" && (codeFix[i].currentStyle.height == "" || codeFix[i].currentStyle.height == "auto") && (codeFix[i].scrollWidth > codeFix[i].clientWidth || codeFix[i].clientWidth == 0) && (codeFix[i].offsetHeight != 0 || codeFix[i].className == "code"))
codeFix[i].style.height = (codeFix[i].offsetHeight + 36) + "px";
}

if (window_oldOnload)
{
window_oldOnload();
window_oldOnload = null;
}
}'
;
}

echo '
// ]]></script>'
;
}

// Piwik Integration
// Array of valid action
$actionArray = array(
'activate' => array('Register.php''Activate'),
'admin' => array('Admin.php''Admin'),
'announce' => array('Post.php''AnnounceTopic'),
'ban' => array('ManageBans.php''Ban'),
'boardrecount' => array('Admin.php''AdminBoardRecount'),
'buddy' => array('Subs-Members.php''BuddyListToggle'),
'calendar' => array('Calendar.php''CalendarMain'),
'cleanperms' => array('Admin.php''CleanupPermissions'),
'collapse' => array('Subs-Boards.php''CollapseCategory'),
'convertentities' => array('Admin.php''ConvertEntities'),
'convertutf8' => array('Admin.php''ConvertUtf8'),
'coppa' => array('Register.php''CoppaForm'),
'deletemsg' => array('RemoveTopic.php''DeleteMessage'),
'detailedversion' => array('Admin.php''VersionDetail'),
'display' => array('Display.php''Display'),
'dlattach' => array('Display.php''Download'),
'dumpdb' => array('DumpDatabase.php''DumpDatabase2'),
'editpoll' => array('Poll.php''EditPoll'),
'editpoll2' => array('Poll.php''EditPoll2'),
'featuresettings' => array('ModSettings.php''ModifyFeatureSettings'),
'featuresettings2' => array('ModSettings.php''ModifyFeatureSettings2'),
'findmember' => array('Subs-Auth.php''JSMembers'),
'help' => array('Help.php''ShowHelp'),
'helpadmin' => array('Help.php''ShowAdminHelp'),
'im' => array('PersonalMessage.php''MessageMain'),
'jsoption' => array('Themes.php''SetJavaScript'),
'jsmodify' => array('Post.php''JavaScriptModify'),
'lock' => array('LockTopic.php''LockTopic'),
'lockVoting' => array('Poll.php''LockVoting'),
'login' => array('LogInOut.php''Login'),
'login2' => array('LogInOut.php''Login2'),
'logout' => array('LogInOut.php''Logout'),
'maintain' => array('Admin.php''Maintenance'),
'manageattachments' => array('ManageAttachments.php''ManageAttachments'),
'manageboards' => array('ManageBoards.php''ManageBoards'),
'managecalendar' => array('ManageCalendar.php''ManageCalendar'),
'managesearch' => array('ManageSearch.php''ManageSearch'),
'markasread' => array('Subs-Boards.php''MarkRead'),
'membergroups' => array('ManageMembergroups.php''ModifyMembergroups'),
'mergetopics' => array('SplitTopics.php''MergeTopics'),
'mlist' => array('Memberlist.php''Memberlist'),
'modifycat' => array('ManageBoards.php''ModifyCat'),
'modifykarma' => array('Karma.php''ModifyKarma'),
'modlog' => array('Modlog.php''ViewModlog'),
'movetopic' => array('MoveTopic.php''MoveTopic'),
'movetopic2' => array('MoveTopic.php''MoveTopic2'),
'news' => array('ManageNews.php''ManageNews'),
'notify' => array('Notify.php''Notify'),
'notifyboard' => array('Notify.php''BoardNotify'),
'optimizetables' => array('Admin.php''OptimizeTables'),
'packageget' => array('PackageGet.php''PackageGet'),
'packages' => array('Packages.php''Packages'),

'penguin' => array('Penguin.php''penguinClicked'),
'penguinlog' => array('Penguin.php''penguinLog'),
'permissions' => array('ManagePermissions.php''ModifyPermissions'),
'pgdownload' => array('PackageGet.php''PackageGet'),
'pm' => array('PersonalMessage.php''MessageMain'),
'post' => array('Post.php''Post'),
'post2' => array('Post.php''Post2'),
'postsettings' => array('ManagePosts.php''ManagePostSettings'),
'printpage' => array('Printpage.php''PrintTopic'),
'profile' => array('Profile.php''ModifyProfile'),
'profile2' => array('Profile.php''ModifyProfile2'),
'quotefast' => array('Post.php''QuoteFast'),
'quickmod' => array('Subs-Boards.php''QuickModeration'),
'quickmod2' => array('Subs-Boards.php''QuickModeration2'),
'recent' => array('Recent.php''RecentPosts'),
'regcenter' => array('ManageRegistration.php''RegCenter'),
'register' => array('Register.php''Register'),
'register2' => array('Register.php''Register2'),
'reminder' => array('Reminder.php''RemindMe'),
'removetopic2' => array('RemoveTopic.php''RemoveTopic2'),
'removeoldtopics2' => array('RemoveTopic.php''RemoveOldTopics2'),
'removepoll' => array('Poll.php''RemovePoll'),
'repairboards' => array('RepairBoards.php''RepairBoards'),
'reporttm' => array('SendTopic.php''ReportToModerator'),
'reports' => array('Reports.php''ReportsMain'),
'requestmembers' => array('Subs-Auth.php''RequestMembers'),
'search' => array('Search.php''PlushSearch1'),
'search2' => array('Search.php''PlushSearch2'),
'sendtopic' => array('SendTopic.php''SendTopic'),
'serversettings' => array('ManageServer.php''ModifySettings'),
'serversettings2' => array('ManageServer.php''ModifySettings2'),
'smileys' => array('ManageSmileys.php''ManageSmileys'),
'smstats' => array('Stats.php''SMStats'),
'spellcheck' => array('Subs-Post.php''SpellCheck'),
'splittopics' => array('SplitTopics.php''SplitTopics'),
'stats' => array('Stats.php''DisplayStats'),
'sticky' => array('LockTopic.php''Sticky'),
'theme' => array('Themes.php''ThemesMain'),
'trackip' => array('Profile.php''trackIP'),
'about:mozilla' => array('Karma.php''BookOfUnknown'),
'about:unknown' => array('Karma.php''BookOfUnknown'),
'unread' => array('Recent.php''UnreadTopics'),
'unreadreplies' => array('Recent.php''UnreadTopics'),
'viewErrorLog' => array('ManageErrors.php''ViewErrorLog'),
'viewmembers' => array('ManageMembers.php''ViewMembers'),
'viewprofile' => array('Profile.php''ModifyProfile'),
'verificationcode' => array('Register.php''VerificationCode'),
'vote' => array('Poll.php''Vote'),
'viewquery' => array('ViewQuery.php''ViewQuery'),
'who' => array('Who.php''Who'),
'.xml' => array('News.php''ShowXmlFeed'),
);
if (
$context['current_action'] == '') {
$curAction "View Message or Index";
} else if (isset(
$actionArray[$context['current_action']])) {
$curAction $context['current_action'];
} else {
$curAction "unknown";
}

echo '<!-- Piwik -->
<a href="http://piwik.org" title="Free web statistics" onclick="window.open(this.href);return(false);">
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://mlark.haxed.co.uk/piwik/" : "http://mlark.haxed.co.uk/piwik/");
document.write(unescape("%3Cscript src=\'" + pkBaseURL + "piwik.js\' type=\'text/javascript\'%3E%3C/script%3E"));
</script><script type="text/javascript">
piwik_action_name = \''
$curAction'\';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
</script>
<object><noscript><p>Free web statistics <img src="http://mlark.haxed.co.uk/piwik/piwik.php?idsite=1" style="border:0" alt=""/></p></noscript></object></a>
<!-- End Piwik Tag -->'
;
// The following will be used to let the user know that some AJAX process is running
echo '
<div id="ajax_in_progress" style="display: none;'
$context['browser']['is_ie'] && !$context['browser']['is_ie7'] ? 'position: absolute;' '''">'$txt['ajax_in_progress'], '</div>
</body>
</html>'
;
}

// Show a linktree.  This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree()
{
global $context$settings$options;

// Folder style or inline?  Inline has a smaller font.
echo '<span class="nav"'$settings['linktree_inline'] ? ' style="font-size: smaller;"' '''>';

// Each tree item has a URL and name.  Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
// Show the | | |-[] Folders.
if (!$settings['linktree_inline'])
{
if ($link_num 0)
echo str_repeat('<img src="' $settings['images_url'] . '/icons/linktree_main.gif" alt="| " border="0" />'$link_num 1), '<img src="' $settings['images_url'] . '/icons/linktree_side.gif" alt="|-" border="0" />';
echo '<img src="' $settings['images_url'] . '/icons/folder_open.gif" alt="+" border="0" />&nbsp; ';
}

// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo '<b>'$settings['linktree_link'] && isset($tree['url']) ? '<a href="' $tree['url'] . '" class="nav">' $tree['name'] . '</a>' $tree['name'], '</b>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
echo $settings['linktree_inline'] ? ' &nbsp;|&nbsp; ' '<br />';
}

echo '</span>';
}

// Show the menu up top.  Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context$settings$options$scripturl$txt;

// Show the [home] and [help] buttons.
echo '
<a href="'
$scripturl'">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/home.gif" alt="' $txt[103] . '" style="margin: 2px 0;" border="0" />' $txt[103]), '</a>'$context['menu_separator'], '
<a href="'
$scripturl'?action=help">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/help.gif" alt="' $txt[119] . '" style="margin: 2px 0;" border="0" />' $txt[119]), '</a>'$context['menu_separator'];

// How about the [search] button?
if ($context['allow_search'])
echo '
<a href="'
$scripturl'?action=search">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/search.gif" alt="' $txt[182] . '" style="margin: 2px 0;" border="0" />' $txt[182]), '</a>'$context['menu_separator'];

// Is the user allowed to administrate at all? ([admin])
if ($context['allow_admin'])
echo '
<a href="'
$scripturl'?action=admin">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/admin.gif" alt="' $txt[2] . '" style="margin: 2px 0;" border="0" />' $txt[2]), '</a>'$context['menu_separator'];

// Edit Profile... [profile]
if ($context['allow_edit_profile'])
echo '
<a href="'
$scripturl'?action=profile">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/profile.gif" alt="' $txt[79] . '" style="margin: 2px 0;" border="0" />' $txt[467]), '</a>'$context['menu_separator'];

// The [calendar]!
if ($context['allow_calendar'])
echo '
<a href="'
$scripturl'?action=calendar">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/calendar.gif" alt="' $txt['calendar24'] . '" style="margin: 2px 0;" border="0" />' $txt['calendar24']), '</a>'$context['menu_separator'];

// If the user is a guest, show [login] and [register] buttons.
if ($context['user']['is_guest'])
{
echo '
<a href="'
$scripturl'?action=login">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/login.gif" alt="' $txt[34] . '" style="margin: 2px 0;" border="0" />' $txt[34]), '</a>'$context['menu_separator'], '
<a href="'
$scripturl'?action=register">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/register.gif" alt="' $txt[97] . '" style="margin: 2px 0;" border="0" />' $txt[97]), '</a>';
}
// Otherwise, they might want to [logout]...
else
echo '
<a href="'
$scripturl'?action=logout;sesc='$context['session_id'], '">', ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' $context['user']['language'] . '/logout.gif" alt="' $txt[108] . '" style="margin: 2px 0;" border="0" />' $txt[108]), '</a>';
}

// Generate a strip of buttons, out of buttons.
function template_button_strip($button_strip$direction 'top'$force_reset false$custom_td '')
{
global $settings$buttons$context$txt$scripturl;

if (empty($button_strip))
return '';

// Create the buttons...
foreach ($button_strip as $key => $value)
{
if (isset($value['test']) && empty($context[$value['test']]))
{
unset($button_strip[$key]);
continue;
}
elseif (!isset($buttons[$key]) || $force_reset)
$buttons[$key] = '<a href="' $value['url'] . '" ' .( isset($value['custom']) ? $value['custom'] : '') . '>' . ($settings['use_image_buttons'] ? '<img src="' $settings['images_url'] . '/' . ($value['lang'] ? $context['user']['language'] . '/' '') . $value['image'] . '" alt="' $txt[$value['text']] . '" border="0" />' $txt[$value['text']]) . '</a>';

$button_strip[$key] = $buttons[$key];
}

echo '
<td '
$custom_td'>'implode($context['menu_separator'], $button_strip) , '</td>';
}

?>



Title: Re: Share this topic SMF Mod
Post by: Dzonny on December 03, 2010, 02:40:18 PM
Hello there.
I dont know which mod have u installed, but i guess that u've posted in wrong support topic.
This mod is not fb related and has no facebook posting feature, so please chek it out.

Link to mod:
http://custom.simplemachines.org/mods/index.php?mod=1608
Title: Re: Share this topic SMF Mod
Post by: asheashe on December 03, 2010, 05:29:41 PM
Hi,

The mod I have installed is Share on Facebook from the URL you have posted. I've disabled it atm due to the issues as didnt want to confuse users. as the code above shows;

// facebook needs this... Share This Topic mod
global $context, $modSettings, $scripturl;
    echo  '<meta property="og:title" content="', !empty($context['page_title']) ? $context['page_title'] : '', '"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="', !empty($modSettings['share_likebutton_image']) ? $modSettings['share_likebutton_image'] : '', '"/>
<meta property="og:site_name" content="', !empty($context['forum_name']) ? $context['forum_name'] : '', '"/>
    <meta property="og:url" content="', $scripturl , '"/>
    <meta property="fb:app_id" content="', !empty($modSettings['share_likebutton_appid']) ? $modSettings['share_likebutton_appid'] : '', '"/>
<meta name="description" content="Haxed>
<meta http-equiv="Content-Language" content="en" />
<meta name="description" content="Teesside based forum covering nights out, gigs, standup, events and more happening in Middlesbrough, Stockton, Darlington Hartlepool and beyond." />
<meta name="keywords" content="Middlesbrough forum, Teesside forum, Rock music middlesbrough, Music forum Middlesbrough, Discussion forum middlesbrough, Teesside discussion forum, Gigs middlesbrough, comedy middlesbrough, comedy teesside, ten feet tall teesside, the crown middlesbrough, the empire middlesbrough, things to do in middlesbrough, nightclubs in middlesbrough, middlesbrough blog, Middlesbrough, weather in middlesbrough, middlesbrough jobs, live music middlesbrough, middlesbrough town hall, boro FC, tees valley airport, teeside uni, teesside university, redcar and cleveland, events in middlesbrough, middlesbrough bands, teesside bands, venues in middlesbrough, venues in teesside, middlesbrough football club, darlington football club, teesside community, alternative music middlesbrough, the arena, evening gazette middlesbrough, cineworld middlesbrough, teesside park middlesbrough, the middlesbrough arena, overdrive promotions" />
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "', $settings['theme_url'], '";
var smf_images_url = "', $settings['images_url'], '";
var smf_scripturl = "', $scripturl, '";
var smf_iso_case_folding = ', $context['server']['iso_case_folding'] ? 'true' : 'false', ';
var smf_charset = "', $context['character_set'], '";
// ]]></script>
Title: Re: Share this topic SMF Mod
Post by: Dzonny on December 04, 2010, 10:48:56 AM
Oh dear.
You installed this mod:
http://custom.simplemachines.org/mods/index.php?mod=2111
And this is their support topic:
http://www.simplemachines.org/community/index.php?topic=334955.0

You should post your question there though.

Regards.
Title: Re: Share this topic SMF Mod
Post by: asheashe on December 04, 2010, 11:21:29 AM
oops! thanks.
Title: Re: Share this topic SMF Mod
Post by: psixanwmalos on January 03, 2011, 11:57:50 AM
i tried to uninstal and got this error. please help!



Strict Standards: require_once() [function.require-once]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CST/-6.0/no DST' instead in /home/rakos/public_html/forum/index.php on line 68

Warning: require_once(/home/rakos/public_html/forum/Sources/ShareThis.php) [function.require-once]: failed to open stream: No such file or directory in /home/rakos/public_html/forum/index.php on line 68

Strict Standards: require_once() [function.require-once]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CST/-6.0/no DST' instead in /home/rakos/public_html/forum/index.php on line 68

Fatal error: require_once() [function.require]: Failed opening required '/home/rakos/public_html/forum/Sources/ShareThis.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/rakos/public_html/forum/index.php on line 68
Title: Re: Share this topic SMF Mod
Post by: rohu on January 17, 2013, 07:31:23 AM
German translation

// Share this topic SMF Mod - Translated by [rohu]
$txt['share_this_topic'] = 'Aktiviere das Teilen von Themen (Share This Topic)';
$txt['stt_1'] = 'Teile dieses Thema mit anderen ...';
$txt['stt_2'] = '<b>in einem Forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>auf einer Website/in einem Blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Hier klicken, um diesen Code zu kopieren, dann in einem Forum einfügen';
$txt['stt_t_2'] = 'Hier klicken, um diesen Code zu kopieren, dann in eine Website/in einen Blog einfügen';
Title: Re: Share this topic SMF Mod
Post by: Alek_it on May 02, 2013, 06:45:21 PM
Italian Translation (if you don't like giorgio's translation )

// Share this topic SMF Mod - Translate by Alek - aklab.org
$txt['share_this_topic'] = 'Abilita Condivisione Topic (aka Share This Topic)';
$txt['stt_1'] = 'Condividi questo topic...';
$txt['stt_2'] = '<b>...In un altro forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>...In un sito/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Clicca qui per copiare il link: potrai incollarlo in un altro forum';
$txt['stt_t_2'] = 'Clicca qui per copiare il link: potrai incollarlo in un altro sito/blog';

Title: Re: Share this topic SMF Mod
Post by: Kimmie on August 28, 2014, 03:05:05 PM
Getting an error any time someone visits the "credits" page. Has this mod been dumped or can someone help me fix this :)

action=credits
8: Undefined index: subjectcopy
File: /home/****/public_html/Sources/Who.php
Line: 803

Also getting it when I go into the Admin area.
Title: Re: Share this topic SMF Mod
Post by: Branko. on August 28, 2014, 07:38:47 PM
This modification works fine. This error is not related to this modification because the modification does not make any change in Who.php
Title: Re: Share this topic SMF Mod
Post by: Kimmie on August 28, 2014, 07:59:58 PM
When I open who.php and do a search for subjectcopy this is what is there.This is the only place that word is found. There is no option to share anything in the shop mod, this is the only mod I have that has any sort of sharing option.


(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FoxK9xy5.png&hash=916c727d72011e90854df3a18f0f77f57f37c565)
Title: Re: Share this topic SMF Mod
Post by: Arantor on August 28, 2014, 08:12:25 PM
I don't think it's this mod.

What other mods do you have?
Title: Re: Share this topic SMF Mod
Post by: Branko. on August 29, 2014, 04:49:24 AM
Sharethis::ShareThisWho(), is part of Share This by Suki...  :)
<file name="$sourcedir/Who.php">
<operation>
<search position="replace"><![CDATA[ 'mods' => array(]]></search>
<add><![CDATA[ 'mods' => array(
Sharethis::ShareThisWho(),]]></add>
</operation>
</file>


$txt['subjectcopy'] is part of ChangeAllSubjects by runic
/file>
<file name="$sourcedir/Who.php">
<operation>
<search position="replace" whitespace="loose"><![CDATA[ 'mods' => array(]]></search>
<add><![CDATA[ 'mods' => array( $txt['subjectcopy'],]]></add>
</operation>
</file>


All is related with copyright
Title: Re: Share this topic SMF Mod
Post by: Arantor on August 29, 2014, 09:36:44 AM
That's where I was going :P I just didn't recognise which mod had subjectcopy in it...
Title: Re: Share this topic SMF Mod
Post by: Kimmie on August 31, 2014, 01:28:39 PM
Ok so the error is coming from the Change All Subjects mod? I had that one, and decided to uninstall it and go with the "Edit All Message Titles" mod. It looks like the uninstall left this code even though I didn't get any test fails when I uninstalled it. I should just be able to remove this line right?

$txt['subjectcopy']


Asking before hand as I don't want to mess anything up. This is the parse code for it. I need to also remove the , at the end right?

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2Fzq4gAmk.png&hash=7b03a7b1f7a57249f8f25e09586bd7a9aa0c1b4b)
Title: Re: Share this topic SMF Mod
Post by: Branko. on August 31, 2014, 05:25:18 PM
The reverse action
Find
'mods' => array( $txt['subjectcopy'],

replace with
'mods' => array(
Title: Re: Share this topic SMF Mod
Post by: Kimmie on August 31, 2014, 09:12:35 PM
Quote from: Branko. on August 31, 2014, 05:25:18 PM
The reverse action
Find
'mods' => array( $txt['subjectcopy'],

replace with
'mods' => array(


That doesn't work anymore because there are two other mod codes in between that. I just wasn't sure about the comma at the end


*/
'mods' => array(
SaShop_Who(),
Sharethis::ShareThisWho(), $txt['subjectcopy'],
),
Title: Re: Share this topic SMF Mod
Post by: Arantor on August 31, 2014, 09:20:58 PM
The comma at the end is fine, you just need to ensure you don't have extra commas with nothing in them.

This would be bad:
*/
'mods' => array(
SaShop_Who(),
Sharethis::ShareThisWho(), ,
),


But if you're removing the mod, this would be correct:
*/
'mods' => array(
SaShop_Who(),
Sharethis::ShareThisWho(),
),
Title: Re: Share this topic SMF Mod
Post by: Kimmie on September 01, 2014, 01:07:35 PM
Thanks Arantor. That is what I needed to know :)
Title: Re: Share this topic SMF Mod
Post by: aaronhall on May 01, 2021, 08:33:43 AM
Quote from: Dzonny on January 30, 2009, 12:40:34 PM
Share this topic v1.3 - SMF Mod


Support topic (http://www.simplemachines.org/community/index.php?topic=289384.0) | Link to Mod (http://custom.simplemachines.org/mods/index.php?mod=1608)



Author(s):
- ravac

Languages:
- English
- Serbian (Thanks to AlenNS (http://www.simplemachines.org/community/index.php?action=profile;u=96104))
- Turkish (Thanks to [istay10.com] (http://www.simplemachines.org/community/index.php?action=profile;u=113042))
- Swedish (Thanks to Nas (http://www.simplemachines.org/community/index.php?action=profile;u=143954))
- Spanish (Thanks to 4kstore (http://www.simplemachines.org/community/index.php?action=profile;u=134279))
- Greek (Thanks to JohnKaL- (http://www.simplemachines.org/community/index.php?action=profile;u=108257))
- Brazilian-Portuguese (Thanks to gremiopoker (http://www.simplemachines.org/community/index.php?action=profile;u=194365))
- French

Compatibility:
- 1.1.x
- 2.x

Demo:
- www.ravac.comze.com

Note:
Turn on/of this mod in: ACP ~ Features and Options ~ Enable Share this topic




Translate will be appreciated, so if you want translate the mod, these are the strings:
languages/Modifications.language.php
// Share this topic SMF Mod - Translate by [name]
$txt['share_this_topic'] = 'Enable Share This Topic';
$txt['stt_1'] = 'Share this topic...';
$txt['stt_2'] = '<b>In a forum</b><br /><small>(BBCode)</small>';
$txt['stt_3'] = '<b>In a site/blog</b><br /><small>(HTML)</small>';
$txt['stt_t_1'] = 'Click here to copy this code, then paste it in a forum';
$txt['stt_t_2'] = 'Click here to copy this code, then paste it in a Web';





Changelogs:

Version 1.0 Jan 28, 2009
~ Modification Release
Version 1.1 Feb 06, 2009
~ New Languages Support: Serbian :: Turkish :: Swedish :: Spanish
~ New look of mod: Thanks to SunKing (http://www.simplemachines.org/community/index.php?action=profile;u=82405)
Version 1.2 Feb 19, 2009
~ Added support for babylon theme
~ Mod box moved between quick moderation and quick reply
~ New Languages Support: Greek :: Brazilian-Portuguese
Version 1.3 Feb 23, 2009
~ Added collapse-expand option for default theme
~ New Language Support: French

Mine does not show up to enable under Features and Options.
It was under Configuration but when I enable it...nothing happens still.
Title: Re: Share this topic SMF Mod
Post by: shadav on May 01, 2021, 10:45:34 AM
Quote from: aaronhall on May 01, 2021, 08:33:43 AM
Mine does not show up to enable under Features and Options.
It was under Configuration but when I enable it...nothing happens still.

a few questions that might help you to get your answer

what version of smf are you using? Any other mods installed? What theme are you using?
When you installed it, did you press the boxes to install it on to all themes?
Does it work with the default theme?
Were there any errors when you installed it?