Advertisement:

Author Topic: Tagging System For Topics (2.4.3 Released)  (Read 228077 times)

Offline TGB

  • Jr. Member
  • **
  • Posts: 103
    • DC-Haven
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #840 on: April 20, 2011, 09:29:54 PM »
having a problem with permissions, anyone allowed to manage tags is only allowed to delete them, they can not add tags.
they can however put in the url /index.php?action=tags;sa=addtag;topic=1 and it will let them, but the [add tag] button does not show.
this happens on all themes.
www.dreamcasthaven.com <----- Running SMF 1.1.16 & heavily modified
www.psxhaven.com <----- Running SMF 1.1.16 & heavily modified
www.romhaven.info <----- Running SMF 1.1.16 & heavily modified
www.bthaven.com <----- Running TT 2.06

Offline TGB

  • Jr. Member
  • **
  • Posts: 103
    • DC-Haven
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #841 on: April 20, 2011, 09:47:25 PM »
Ok fixed my problem.
change original
Code: ($themedir/Display.template.php) [Select]
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

}

global $topic;
if(!$context['user']['is_guest'] && allowedTo('smftags_add'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>
to
Code: ($themedir/Display.template.php) [Select]
if(!$context['user']['is_guest'] && allowedTo('smftags_manage'))
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';
}
global $topic;
if(!$context['user']['is_guest'] && allowedTo('smftags_manage'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>

  • does not look like there is a smftags_add permission setting
  • why on earth let the guest view the del button??  (even tho they may not be able to) best to just hide that anyway.
www.dreamcasthaven.com <----- Running SMF 1.1.16 & heavily modified
www.psxhaven.com <----- Running SMF 1.1.16 & heavily modified
www.romhaven.info <----- Running SMF 1.1.16 & heavily modified
www.bthaven.com <----- Running TT 2.06

Offline TGB

  • Jr. Member
  • **
  • Posts: 103
    • DC-Haven
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #842 on: April 21, 2011, 02:41:02 AM »
Happy to share a modification to this mod (used on 1.1.13, I might provide the changes for 2.0 later). I was upset with the permission system being if it is ON then you can delete and add, so I setup another permission where the original is changed to delete, and my new one is add only. you must have both on to do both.

Code: (Find in the included $sourcedir/Tags.php) [Select]
function AddTag()
{
global $context, $txt, $mbname, $db_prefix, $ID_MEMBER;

// Get the Topic
$topic = (int) $_REQUEST['topic'];

if (empty($topic))
fatal_error($txt['smftags_err_notopic'],false);

// Check permission
$a_manage = allowedTo('smftags_manage');

Code: (replace with) [Select]
function AddTag()
{
global $context, $txt, $mbname, $db_prefix, $ID_MEMBER;

// Get the Topic
$topic = (int) $_REQUEST['topic'];

if (empty($topic))
fatal_error($txt['smftags_err_notopic'],false);

// Check permission
$a_manage = allowedTo('smftags_manage_add');

Code: (find in $languagedir/Modifications.english.php) [Select]
$txt['permissionname_smftags_manage'] = 'Manage Tags';
$txt['permissionhelp_smftags_manage'] = 'Users can modify the tag settings and add and remove tags';
$txt['cannot_smftags_manage'] = 'You are not allowed to manage tags.';
Code: (replace with) [Select]
$txt['permissionname_smftags_manage'] = 'Manage Tags';
$txt['permissionhelp_smftags_manage'] = 'Users can modify the tag settings and add and remove tags';
$txt['cannot_smftags_manage'] = 'You are not allowed to manage tags.';
$txt['permissionname_smftags_manage_add'] = 'Add Tags';
$txt['permissionhelp_smftags_manage_add'] = 'Users can add tags';
$txt['cannot_smftags_manage_add'] = 'You are not allowed to add tags.';
do the above with utf8 if you must.

Code: (find in $sourcedir/ManagePermissions.php) [Select]
'smftags_manage' => false
Code: (replace with) [Select]
'smftags_manage' => false
'smftags_manage_add' => false

Code: (find in $themedir/Display.template.php) [Select]
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

}

global $topic;
if(!$context['user']['is_guest'] && allowedTo('smftags_add'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>
Code: ( replace with) [Select]
if(!$context['user']['is_guest'] && allowedTo('smftags_manage'))
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;tagid=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';
}
global $topic;
if(!$context['user']['is_guest'] && allowedTo('smftags_manage_add'))
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$topic, '">' . $txt['smftags_addtag'] . '</a>

most importantly this does not allow the creation of tags on new topics, unless with permission:
Code: (find in $themedir/Post.template.php) [Select]
//Tagging system Mod
if(!isset($context['num_replies']))
Code: (replace with) [Select]
//Tagging system Mod
if(!isset($context['num_replies']))
if(!$context['user']['is_guest'] && allowedTo('smftags_manage_add'))
www.dreamcasthaven.com <----- Running SMF 1.1.16 & heavily modified
www.psxhaven.com <----- Running SMF 1.1.16 & heavily modified
www.romhaven.info <----- Running SMF 1.1.16 & heavily modified
www.bthaven.com <----- Running TT 2.06

Offline mabley

  • Jr. Member
  • **
  • Posts: 108
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #843 on: April 26, 2011, 11:24:38 AM »
+ You can only add one tag at a time in the [Add Tag] button in thread view.  We'd like to be able to add many, just like in post view.

I'm able to add multiples, are you separating by commas?

D'oh!  Thanks for the bonk.  It works after all!

Offline vbgamer45

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 15,389
    • smfhacks on Facebook
    • @createaforum on Twitter
    • SMF For Free
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #844 on: April 26, 2011, 12:54:29 PM »
Glad you got it figured out.
SMF For Free -Free SMF Forum hosting.
SMFHacks.com -  Paid Modifications for SMF

Latest Mod:
EzPortal - A Portal System for SMF
Community Suite
Newsletter Pro SMF Gallery Pro SMF Classifieds SMF Store

Offline MasterWind

  • Semi-Newbie
  • *
  • Posts: 11
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #845 on: April 26, 2011, 01:08:03 PM »
Hey guys.
Well this is my problem:

http://img121.imageshack.us/img121/8673/problemanl.jpg [nofollow]

shouldnt be like this:

http://custom.simplemachines.org/mods/index.php?action=download;mod=579;id=22935;image

Where is the problem?
help :$

Offline MasterWind

  • Semi-Newbie
  • *
  • Posts: 11
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #846 on: April 27, 2011, 12:22:52 PM »
help!!! :S

Offline MasterWind

  • Semi-Newbie
  • *
  • Posts: 11
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #847 on: April 27, 2011, 02:27:51 PM »
Not needed. I fixed it : D

Offline vbgamer45

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 15,389
    • smfhacks on Facebook
    • @createaforum on Twitter
    • SMF For Free
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #848 on: April 27, 2011, 05:00:38 PM »
Glad you got it working
SMF For Free -Free SMF Forum hosting.
SMFHacks.com -  Paid Modifications for SMF

Latest Mod:
EzPortal - A Portal System for SMF
Community Suite
Newsletter Pro SMF Gallery Pro SMF Classifieds SMF Store

Offline manyon

  • Newbie
  • *
  • Posts: 4
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #849 on: May 18, 2011, 01:41:33 AM »

Excellent mod.

For moderated users, though, it seems that tags for unapproved posts still show up in the tag cloud.  Can this be confirmed/fixed?

Thanks!

Offline Kimmie

  • Sophist Member
  • *****
  • Posts: 1,257
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #850 on: May 19, 2011, 08:10:15 PM »
using v 2.2.1 of this mod. All of a sudden it stopped recognizing captial letters. ANy idea why?

Also, since you have another version of the mod out did you include an upgrade feature with it or do we have to completely uninstall the entire thing from all the themes and then reinstall it to all of them again? If a full uninstall is required, will that cause all tags to be lost from the database or will it remember what tags are on each thread? I ask this because I have over 50,000 threads that have 1 (or more) tags on them.

And lastly, since there is no changelog on the mod page, is there one inside the mod so that I can see what changes were made?

thanks

Offline vbgamer45

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 15,389
    • smfhacks on Facebook
    • @createaforum on Twitter
    • SMF For Free
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #851 on: May 19, 2011, 08:50:06 PM »
full uninstall will not remove the database.

We made all the keywords lowercase when inputed so no longer case sensitive.
SMF For Free -Free SMF Forum hosting.
SMFHacks.com -  Paid Modifications for SMF

Latest Mod:
EzPortal - A Portal System for SMF
Community Suite
Newsletter Pro SMF Gallery Pro SMF Classifieds SMF Store

Offline PLAYBOY

  • SMF Hero
  • ******
  • Posts: 1,903
  • Livephotoshop.com & Lullabyabc.com
    • Lullabies and Us
Re: Tagging System For Topics (2.4.1 Released For SMF 2.0 RC3)
« Reply #852 on: June 08, 2011, 07:44:37 PM »
Has anybody translate it to turkish?
I can, if needed.

Does it give out any problems with Turkish characters?
1.1.13

Update:

Actually here is the Turkish Translation:

//Begin Tagging System Text Strings
$txt['smftags_menu'] = 'Etiketler';
$txt['smftags_admin'] = 'Etiket Ayarlari';

$txt['smftags_addtag'] = '[etiket ekle]';
$txt['smftags_seperate'] = 'Etiketleri Virgul ile Ayiriniz';

$txt['smftags_topic'] = 'Etiketler: ';
$txt['permissiongroup_smftags'] = 'SMF Etiketler';
$txt['permissionname_smftags_suggest'] = 'Etiket Oner';
$txt['permissionhelp_smftags_suggest'] = 'Kullanicilar Etiket Onerebilir';
$txt['cannot_smftags_suggest'] = 'Etiket Onermeye Izniniz Yok.';

$txt['permissionname_smftags_manage'] = 'Etiketleri Yonet';
$txt['permissionhelp_smftags_manage'] = 'Kullanicilar etiket ayarlarini degistirebilir, etiket ekleyebilir ve etiketleri silebilirler';
$txt['cannot_smftags_manage'] = 'Etiketleri yonetmeye izniniz yok.';
//END  Tagging System Strings

Do you think you can just add it to the installation?
« Last Edit: June 08, 2011, 07:53:15 PM by PLAYBOY »

Offline ngoclanbaby86

  • Jr. Member
  • **
  • Posts: 104
  • Gender: Male
  • Chưa có pạn gái
    • Cộng đồng Driver của người Việt
Re: Tagging System For Topics (2.4.1 Released)
« Reply #853 on: June 22, 2011, 01:01:58 AM »
How to integrate with Pretty URL mod? i think it will useful. U can upgrade new to new version?
Thanks and nice day.

Offline JoeNewYork

  • Newbie
  • *
  • Posts: 1
Re: Tagging System For Topics (2.4.1 Released)
« Reply #854 on: June 27, 2011, 12:37:59 AM »
Thanks for the wonderful MOD.

One problem though, when I try to nake tags with Hebrew letters, its not getting created. just ignored, nothing happens.
I changed the table encoding to UTF 8, but it didnt help.
I manually inserted in the table a new tag in hebrew, it displayed fine in phpmyadmin, but it appeard on the site as "question marks".

any help would be greatly appreciated.

+++++

Some people asked for a way to edit existing tags, it can easily be done in phpmyadmin.

Offline live627

  • SMF Hero
  • ******
  • Posts: 3,320
  • Gender: Male
  • A light for our dream which is worth everything we could envision today and more tomorrow
    • live627 on Facebook
    • @live627 on Twitter
    • livemods
Re: Tagging System For Topics (2.4.1 Released)
« Reply #855 on: June 27, 2011, 01:01:12 AM »
Ooh encoding problems.
See a list of my mods

I don't accept support PMs. Ever! Your query will be answered much quicker in the public boards. Why don't I want any PMs asking for support?

Offline phantomm

  • Sr. Member
  • ****
  • Posts: 883
  • Gender: Male
    • pages/smfpl/171860759503032 on Facebook
Re: Tagging System For Topics (2.4.1 Released)
« Reply #856 on: July 03, 2011, 12:08:46 PM »
Polish translation:

Tags.polish-utf8.php
Code: [Select]
<?php
/*
Tagging System
Version 1.0
by:vbgamer45
http://www.smfhacks.com
*/

//Tags text strings
$txt['smftags_tags'] = 'Tagi';
$txt['smftags_tagtosuggest'] = 'Sugerowane tagi:';
$txt['smftags_popular'] = 'Popularne tagi';
$txt['smftags_latest'] = 'Najnowsze tagi';
$txt['smftags_resultsfor'] = 'Wyniki dla ';

$txt['smftags_suggest'] = 'Zaproponuj tag';

$txt['smftags_addtag'] = '[Dodaj tag]';
$txt['smftags_deletetag'] = '[Usuń tag]';

$txt['smftags_addtag2'] = 'Dodaj tag';
$txt['smftags_tagtoadd'] = 'Tag do dodania';


//Tags Admin Settings
$txt['smftags_set_mintaglength'] = 'Minimalna długość tagu';
$txt['smftags_set_maxtaglength'] = 'Maksymalna długość tagu';
$txt['smftags_set_maxtags'] = 'Maksymalna ilość tagów dla wątku';


$txt['smftags_tagcloud_settings'] = 'Ustawienia chmury tagów';
$txt['smftags_set_cloud_tags_to_show'] = 'Liczba tagów do pokazania w chmurze';
$txt['smftags_set_cloud_tags_per_row'] = 'Ilość tagów na wiersz';
$txt['smftags_set_cloud_max_font_size_precent'] = 'Maksymalny rozmiar czcionki (w procentach)';
$txt['smftags_set_cloud_min_font_size_precent'] = 'Minimalny rozmiar czcionki (w procentach)';



$txt['smftags_err_deletetag'] = 'Nie posiadasz uprawnień do usuwania tagów.';
$txt['smftags_err_notopic'] = 'Nie wybrano wątku.';
$txt['smftags_err_notag'] = 'Musisz wpisać tag.';

$txt['smftags_err_mintag'] = 'Podany tag jest za krótki';
$txt['smftags_err_maxtag'] = 'Podany tag jest za długi';
$txt['smftags_err_toomaxtag'] = 'Limit tagów osiągnięty.';
$txt['smftags_err_permaddtags'] = 'Nie posiadasz uprawnień do dodawania tagów w tym wątku.';
$txt['smftags_err_alreadyexists'] = 'Taki tag już istnieje.';

$txt['smftags_settings'] = 'Ustawienia tagów';
$txt['smftags_pages'] = 'Strony: ';

$txt['smftags_savesettings'] = 'Zapisz ustawienia';

///Results Display
$txt['smftags_subject'] = 'Temat';
$txt['smftags_startedby'] = 'Zaczęty przez';
$txt['smftags_replies'] = 'Odpowiedzi';
$txt['smftags_views'] = 'Wyświetleń';
$txt['smftags_guest'] = 'Gość';

$txt['smftags_topictag'] = 'Tag';
?>


Tags.polish.php
Code: [Select]
<?php
/*
Tagging System
Version 1.0
by:vbgamer45
http://www.smfhacks.com
*/

//Tags text strings
$txt['smftags_tags'] = 'Tagi';
$txt['smftags_tagtosuggest'] = 'Sugerowane tagi:';
$txt['smftags_popular'] = 'Popularne tagi';
$txt['smftags_latest'] = 'Najnowsze tagi';
$txt['smftags_resultsfor'] = 'Wyniki dla ';

$txt['smftags_suggest'] = 'Zaproponuj tag';

$txt['smftags_addtag'] = '[Dodaj tag]';
$txt['smftags_deletetag'] = '[Usuń tag]';

$txt['smftags_addtag2'] = 'Dodaj tag';
$txt['smftags_tagtoadd'] = 'Tag do dodania';


//Tags Admin Settings
$txt['smftags_set_mintaglength'] = 'Minimalna długo¶ć tagu';
$txt['smftags_set_maxtaglength'] = 'Maksymalna długo¶ć tagu';
$txt['smftags_set_maxtags'] = 'Maksymalna ilo¶ć tagów dla w±tku';


$txt['smftags_tagcloud_settings'] = 'Ustawienia chmury tagów';
$txt['smftags_set_cloud_tags_to_show'] = 'Liczba tagów do pokazania w chmurze';
$txt['smftags_set_cloud_tags_per_row'] = 'Ilo¶ć tagów na wiersz';
$txt['smftags_set_cloud_max_font_size_precent'] = 'Maksymalny rozmiar czcionki (w 
procentach)'
;
$txt['smftags_set_cloud_min_font_size_precent'] = 'Minimalny rozmiar czcionki (w 
procentach)'
;



$txt['smftags_err_deletetag'] = 'Nie posiadasz uprawnień do usuwania tagów.';
$txt['smftags_err_notopic'] = 'Nie wybrano w±tku.';
$txt['smftags_err_notag'] = 'Musisz wpisać tag.';

$txt['smftags_err_mintag'] = 'Podany tag jest za krótki';
$txt['smftags_err_maxtag'] = 'Podany tag jest za długi';
$txt['smftags_err_toomaxtag'] = 'Limit tagów osi±gnięty.';
$txt['smftags_err_permaddtags'] = 'Nie posiadasz uprawnień do dodawania tagów w tym 
w±tku.'
;
$txt['smftags_err_alreadyexists'] = 'Taki tag już istnieje.';

$txt['smftags_settings'] = 'Ustawienia tagów';
$txt['smftags_pages'] = 'Strony: ';

$txt['smftags_savesettings'] = 'Zapisz ustawienia';

///Results Display
$txt['smftags_subject'] = 'Temat';
$txt['smftags_startedby'] = 'Zaczęty przez';
$txt['smftags_replies'] = 'Odpowiedzi';
$txt['smftags_views'] = 'Wy¶wietleń';
$txt['smftags_guest'] = 'Go¶ć';

$txt['smftags_topictag'] = 'Tag';
?>



Modifications.polish-utf8.php
Code: [Select]
//Begin Tagging System Text Strings
$txt['smftags_menu'] = 'Tagi';
$txt['smftags_admin'] = 'Konfiguracja tagów';
$txt['smftags_settings'] = 'Ustawienia';

$txt['smftags_addtag'] = '[Dodaj tag]';
$txt['smftags_addtag2'] = 'Dodaj tag';
$txt['smftags_seperate'] = 'Oddziel każdy tag przecinkiem';

$txt['smftags_topic'] = 'Tagi wątku: ';
$txt['permissiongroup_smftags'] = 'SMF Tags';
$txt['permissiongroup_simple_smftags'] = 'SMF Tags';
$txt['permissionname_smftags_suggest'] = 'Proponowanie tagów';
$txt['permissionhelp_smftags_suggest'] = 'Użytkownicy mogą proponować tagi do dodania';
$txt['cannot_smftags_suggest'] = 'Nie posiadasz uprawnień do proponowania tagów.';

$txt['permissionname_smftags_add'] = 'Dodawanie tagów do własnych wątków';
$txt['permissionhelp_smftags_add'] = 'Użytkownicy mogą dodawać tagi do własnych wątków';
$txt['cannot_smftags_add'] = 'Nie posiadasz uprawnień do dodawania tagów do wątków';

$txt['permissionname_smftags_del'] = 'Usuwanie tagów z własnych wątków';
$txt['permissionhelp_smftags_del'] = 'Użytkownicy mogą usuwać tagi z własnych wątków';
$txt['cannot_smftags_del'] = 'Nie posiadasz uprawnień do usuwania tagów';

$txt['permissionname_smftags_manage'] = 'Zarządzanie tagami';
$txt['permissionhelp_smftags_manage'] = 'Użytkownicy mogą zmieniać ustawienia tagów, dodawać nowe oraz usuwać istniejące tagi. Te uprawnienia mają zazwyczaj tylko administratorzy forum!';
$txt['cannot_smftags_manage'] = 'Nie posiadasz uprawnień do zarządzania tagami.';
//END  Tagging System Strings

Modifications.polish.php
Code: [Select]
//Begin Tagging System Text Strings
$txt['smftags_menu'] = 'Tagi';
$txt['smftags_admin'] = 'Konfiguracja tagów';
$txt['smftags_settings'] = 'Ustawienia';

$txt['smftags_addtag'] = '[Dodaj tag]';
$txt['smftags_addtag2'] = 'Dodaj tag';
$txt['smftags_seperate'] = 'Oddziel każdy tag przecinkiem';

$txt['smftags_topic'] = 'Tagi w±tku: ';
$txt['permissiongroup_smftags'] = 'SMF Tags';
$txt['permissiongroup_simple_smftags'] = 'SMF Tags';
$txt['permissionname_smftags_suggest'] = 'Proponowanie tagów';
$txt['permissionhelp_smftags_suggest'] = 'Użytkownicy mog± proponować tagi do dodania';
$txt['cannot_smftags_suggest'] = 'Nie posiadasz uprawnień do proponowania tagów.';

$txt['permissionname_smftags_add'] = 'Dodawanie tagów do własnych w±tków';
$txt['permissionhelp_smftags_add'] = 'Użytkownicy mog± dodawać tagi do własnych w±tków';
$txt['cannot_smftags_add'] = 'Nie posiadasz uprawnień do dodawania tagów do w±tków';

$txt['permissionname_smftags_del'] = 'Usuwanie tagów z własnych w±tków';
$txt['permissionhelp_smftags_del'] = 'Użytkownicy mog± usuwać tagi z własnych w±tków';
$txt['cannot_smftags_del'] = 'Nie posiadasz uprawnień do usuwania tagów';

$txt['permissionname_smftags_manage'] = 'Zarz±dzanie tagami';
$txt['permissionhelp_smftags_manage'] = 'Użytkownicy mog± zmieniać ustawienia tagów,
dodawać nowe oraz usuwać istniej±ce tagi. Te uprawnienia maj± zazwyczaj tylko
administratorzy forum!';
$txt['cannot_smftags_manage'] = 'Nie posiadasz uprawnień do zarz±dzania tagami.';
//END  Tagging System Strings

Polskie wsparcie SMF na simplemachines.org

My mods

Offline vbgamer45

  • SMF Friend
  • SMF Super Hero
  • *
  • Posts: 15,389
    • smfhacks on Facebook
    • @createaforum on Twitter
    • SMF For Free
Re: Tagging System For Topics (2.4.1 Released)
« Reply #857 on: July 03, 2011, 02:19:56 PM »
Thanks for the translation!
SMF For Free -Free SMF Forum hosting.
SMFHacks.com -  Paid Modifications for SMF

Latest Mod:
EzPortal - A Portal System for SMF
Community Suite
Newsletter Pro SMF Gallery Pro SMF Classifieds SMF Store

Offline phantomm

  • Sr. Member
  • ****
  • Posts: 883
  • Gender: Male
    • pages/smfpl/171860759503032 on Facebook
Re: Tagging System For Topics (2.4.1 Released)
« Reply #858 on: July 06, 2011, 12:55:02 PM »
What code I need to use to show 'tag cloud' in board index? (I want to show it in Info Center as last table)
Polskie wsparcie SMF na simplemachines.org

My mods

Offline fals

  • Jr. Member
  • **
  • Posts: 292
  • Gender: Male
  • bouncing through codes...
    • Large Scale Forum Denmark
Re: Tagging System For Topics (2.4.1 Released)
« Reply #859 on: July 06, 2011, 01:57:45 PM »
I would like to show topic tags on message.index.php



Anybody done this succesfully?
500fan.dk - SMF 2.0 ~ custom theme
ls-forum.dk - SMF 2.0.2 ~ custom theme and custom iPhone theme