SMFHacks.com
** Home Forum Index Hacks Products Login Register Search
Welcome, Guest. Please login or register.
February 10, 2012, 08:03:04 pm

Login with username, password and session length
Members
Total Members: 9904
Latest: toytoy5555
Stats
Total Posts: 27798
Total Topics: 4859
Online Today: 79
Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Users: 0
Guests: 69
Total: 69
+ 
|-+ 
| |-+ 
| | |-+ 
| | | |-+ 
| | | | |-+ 
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: 1 2 [3] 4 5 ... 7 Go Down Print
Author Topic: [Mod] Tagging System  (Read 65482 times)
dsanchez
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #30 on: March 28, 2007, 01:57:03 pm »

How can I show, let's say, the 100 tags MOST popular of all the time?. Actually it's showing the  most popular from the "X" recent tags.

Also, I'd love to show the tag cloud not centered, but justify. However I can't because it break-line automatically after (in my case) 12 items:

http://www.curefans.com/index.php?action=tags

Thanks

David.
Logged
majo
Newbie
*
Offline Offline

Posts: 3


View Profile
« Reply #31 on: March 28, 2007, 03:35:45 pm »

Good Question if you get an answer yould you let me know?
Logged
glennk
Newbie
*
Offline Offline

Posts: 4


View Profile
« Reply #32 on: April 16, 2007, 06:04:34 am »

Hi Ive installed this. Seems ok and could be quite useful but in the tag list a lot of the tags appear to be missing especially tags that are most popular. They initially appear but when a tag gets real popular it disaapears.

What's gone wrong please ??

Cheers - Glenn
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9399


View Profile
« Reply #33 on: April 16, 2007, 07:20:43 am »

Currently lists only the latest most popular tags.
Logged
merosler
Newbie
*
Offline Offline

Posts: 12


View Profile
« Reply #34 on: May 02, 2007, 05:40:22 pm »

i downloaded the tags mod, however because i have a custom theme, i can not see the tag fields incorporated in my posts.  Can anyone give me any guidance on how to make this work for custom themes?
Logged
starenka
Newbie
*
Offline Offline

Posts: 2


View Profile
« Reply #35 on: May 15, 2007, 06:30:12 am »

there's an ugly bug i guess. from what i see my tags which has higher freauency than 10 are not shown in the tag cloud. if i click on the tag within the topic, it's okay.. am i doing something wrong?

#edit: tried looking into the source, but can't find something wrong. unfortunately can't debug on server.. well maybe one more thing, why don't usel logarythms while generating the tags? and why not an ajax suggest, while adding new ones. this forced me to write my own tagmanager to merge & rename malformed tags from the users... thanx for answering sta
« Last Edit: May 15, 2007, 06:44:16 am by starenka » Logged
starenka
Newbie
*
Offline Offline

Posts: 2


View Profile
« Reply #36 on: May 15, 2007, 03:14:25 pm »

oh now i see what's the problem. the sql select is limited to 50tags LAST ADDED tags but it is not aware of the quantity... Wink

okay here is a fixed file (warning no SQL limits!!, alphabetic sorting) and tags sizes are rather counted with logarythms (imho better - a bit helps with extreme values...)

source:
Code:
http://crap.starenka.net/Tags.php.txt

original size calculation:


fixed size calculation:
« Last Edit: May 15, 2007, 04:25:34 pm by starenka » Logged
NickInTheNorth
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #37 on: June 19, 2007, 04:33:55 am »

Love this mod, when I've seen it in use, but I'm having problems. It installs without problem, but when I try adding tags I get:

An Error Has Occurred!
No topic selected.


...update - it would appear to be a compatibility problem between the Tagging system and pretty urls

Anyone have these two working together?

I just tried getting them both working on a clean install of smf 1.1.2 with no other mods. The tagging works fine without pretty urls, but not with it.
« Last Edit: June 19, 2007, 04:55:44 am by NickInTheNorth » Logged
bathgate
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #38 on: July 01, 2007, 03:04:18 pm »

hey vbgamer do you have  a code to add a tag cloud to the index page or to the side using tinyportal thanks
Logged
digit
Newbie
*
Offline Offline

Posts: 3


View Profile
« Reply #39 on: July 12, 2007, 02:25:21 pm »

I just installed this mod, and I LOVE IT!  (I also just sent you guys a paypal payment!)

I would like the keywords (you call them tags) to appear in the meta keywords tag... in  index.template.php...

could you please help with that?

Thanks!!!!

digit
Logged
digit
Newbie
*
Offline Offline

Posts: 3


View Profile
« Reply #40 on: July 12, 2007, 02:34:40 pm »

I did find one small problem with this mod.....

you have....   for Display.template.php....

Code:

//Tagging System
echo '<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="windowbg">
<b>', $txt['smftags_topic'], '</b>';



foreach ($context['topic_tags'] as $i => $tag)
{
echo '<a href="' . $scripturl . '?action=tags;id=' . $tag['ID_TAG']  . '">' . $tag['tag'] . '</a>&nbsp;';
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;id=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

}

if(!$context['user']['is_guest'])
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$context['current_topic'], '">' . $txt['smftags_addtag'] . '</a>

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

//End Tagging System


It should be...

Code:

//Tagging System
echo '<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="windowbg">
<b>', $txt['smftags_topic'], '</b>';



foreach ($context['topic_tags'] as $i => $tag)
{
echo '<a href="' . $scripturl . '?action=tags;id=' . $tag['ID_TAG']  . '">' . $tag['tag'] . '</a>&nbsp;';
if(!$context['user']['is_guest'])
echo '<a href="' . $scripturl . '?action=tags;sa=deletetag;id=' . $tag['ID']  . '"><font color="#FF0000">[X]</font></a>&nbsp;';

}

if(!$context['user']['is_guest'])
echo '
&nbsp;<a href="' . $scripturl . '?action=tags;sa=addtag;topic=',$context['current_topic'], '">' . $txt['smftags_addtag'] . '</a>';

echo '

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

//End Tagging System


It does not close the table properly otherwise, for guests!

digit

p.s, since I sent you a paypal payment, can I remove the link?
Logged
digit
Newbie
*
Offline Offline

Posts: 3


View Profile
« Reply #41 on: July 12, 2007, 02:44:35 pm »

I just deleted a keyword, but it still appears under "Popular Keywords"

Any idea where it is failing?

The post with the deleted keyword no longer shows up though...

thanks in advance.

Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9399


View Profile
« Reply #42 on: July 12, 2007, 06:21:06 pm »

Currently keywords are not deleted if the topic is deleted.
Logged
digit2
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #43 on: July 12, 2007, 10:28:16 pm »

This is still digit...  I lost my password and re-registered.... couldn't even retreive it.

What about the other comment...

... I sent you a paypal payment, may I remove the smf hacks link?

...  I also was able to have the new keywords appear in the metal keywords tag, thank to Harro at simplemachines.org...

http://www.simplemachines.org/community/index.php?topic=181779.msg1159726#msg1159726

This might be a nice option for your mod.

digit
Logged
digit3
Newbie
*
Offline Offline

Posts: 1


View Profile
« Reply #44 on: July 16, 2007, 07:22:42 am »

This is so weird....  I keep losing my log in info for this site!  Sorry about that!

This is still digit.

I would like my moderator to be able to add tags to existing posts...  instead of just the admin...

How would I do that?

Thanks in advance!

digit
Logged
Pages: 1 2 [3] 4 5 ... 7 Go Up Print 
« previous next »
Jump to:  

Recent
[Today at 03:36:31 pm]

[Today at 02:42:09 pm]

[Today at 02:23:51 pm]

[Today at 10:26:45 am]

[February 09, 2012, 05:30:55 pm]

by exit
[February 09, 2012, 04:47:13 pm]

[February 08, 2012, 09:09:16 pm]

[February 08, 2012, 09:11:02 am]

[February 08, 2012, 09:07:32 am]

[February 08, 2012, 03:46:49 am]
Random Picture
Donate to SMFHacks.com
Help Support the SMFHacks.com mod making.
Powered by SMF 1.1.16 | SMF © 2006-2011, Simple Machines LLC
TinyPortal v0.9.7 © Bloc
SMF and SimpleMachines are registered trademarks of Simple Machines. SMFHacks.com is not affiliated with nor endorsed by Simple Machines.
Page created in 5.004 seconds with 21 queries.