Simple Machines Community Forum

Customizing SMF => Modifications and Packages => Mod Requests => Aiheen aloitti: Ertado - helmikuu 07, 2008, 11:21:30 IP

Otsikko: Add Digg widget to only specified board
Kirjoitti: Ertado - helmikuu 07, 2008, 11:21:30 IP
Any way to do this?
Otsikko: Re: Add Digg widget to only specified board
Kirjoitti: Ertado - helmikuu 17, 2008, 06:26:33 AP
Please?
Otsikko: Re: Add Digg widget to only specified board
Kirjoitti: karlbenson - helmikuu 22, 2008, 09:07:49 IP
Are you referring to
http://custom.simplemachines.org/mods/index.php?mod=591

If so
In Themes/default/Display.template.php

FIND
// Get the body for the first message
    $diggFirstMSG = getPost($context['topic_first_message']);


ADD BEFORE (AND change 0,1,2,3 to the board ids you wish to enable the mod for)
    global $board;
    if(!empty($board) && in_array($board, array(0,1,2,3)))
    {


FIND
    <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></div>', theme_linktree(), '</div>';

ADD AFTER
   }