Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 297
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 242
Total: 242

Author Topic: [Mod] Tagging System  (Read 151199 times)

0 Members and 1 Guest are viewing this topic.

Offline dsanchez

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« 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.

Offline majo

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« Reply #31 on: March 28, 2007, 03:35:45 pm »
Good Question if you get an answer yould you let me know?

Offline glennk

  • Member
  • *
  • Posts: 4
    • View Profile
Re: [Mod] Tagging System
« 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

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod] Tagging System
« Reply #33 on: April 16, 2007, 07:20:43 am »
Currently lists only the latest most popular tags.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline merosler

  • Member
  • *
  • Posts: 12
    • View Profile
Re: [Mod] Tagging System
« 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?

Offline starenka

  • Member
  • *
  • Posts: 2
    • View Profile
Re: [Mod] Tagging System
« 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 »

Offline starenka

  • Member
  • *
  • Posts: 2
    • View Profile
Re: [Mod] Tagging System
« 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... ;)

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: [Select]
http://crap.starenka.net/Tags.php.txt
original size calculation:


fixed size calculation:
« Last Edit: May 15, 2007, 04:25:34 pm by starenka »

Offline NickInTheNorth

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« 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 »

Offline bathgate

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« 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

Offline digit

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System
« 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

Offline digit

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System (SMALL BUG)
« 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: [Select]

//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: [Select]

//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?

Offline digit

  • Member
  • *
  • Posts: 3
    • View Profile
Re: [Mod] Tagging System (OH NO)
« 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.


Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: [Mod] Tagging System
« Reply #42 on: July 12, 2007, 06:21:06 pm »
Currently keywords are not deleted if the topic is deleted.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline digit2

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« 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

Offline digit3

  • Member
  • *
  • Posts: 1
    • View Profile
Re: [Mod] Tagging System
« 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

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
3671 Views
Last post July 06, 2007, 09:06:45 pm
by GenoDemoN
5 Replies
6873 Views
Last post November 09, 2007, 06:39:44 pm
by cru
1 Replies
4033 Views
Last post February 04, 2013, 02:06:54 pm
by SMFHacks
7 Replies
9093 Views
Last post December 11, 2013, 01:20:36 am
by Zavoolon
2 Replies
5646 Views
Last post October 21, 2013, 12:05:37 pm
by insider

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal