• [MOD] Tag cloud ( keyword & cat cloud in web2.0 style) 5 0 5 1
Currently:  

Poll

What do you think of this mod?

Excellent
Good
Fair
Poor
Bad

Author Topic: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)  (Read 228516 times)

0 Members and 1 Guest are viewing this topic.

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #75 on: December 11, 2007, 02:08:52 PM »
@osnapicture
... dann hast du offensichtlich nicht richtig probiert ... denn es hilft doch ... ;)
... du wünscht für alle Tags ein helles Grau ... z.B. ... HTML : C2C2C2 ... entspricht RGB : 0,0,194 ...
... dann müsste deine Codezeile so aussehen ...
Code: [Select]
color:rgb('.mt_rand(0, 0).', '.mt_rand(0, 0).', '.mt_rand(194, 194).');
... oder gleich einfacher, da du keine Zufallsfarben mehr wünscht ...
Code: [Select]
color:rgb(0, 0, 194);
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline osnapicture

  • Full Member
  • ***
  • Posts: 152
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #76 on: December 11, 2007, 02:34:32 PM »
oh danke, das hilft  :)

jojomart

  • Guest
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #77 on: December 12, 2007, 04:32:48 PM »
I love this mod - it's so pretty  :mrgreen:

Joanne

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #78 on: December 13, 2007, 07:50:48 AM »
Hi,

great mode but I have one small problem... in my tags you can find so many insult words :)

Do you know how can I censored them?

Am I the only one with this problem?

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #79 on: December 13, 2007, 10:42:26 PM »
Hi Lucifix,

... not tested, but try this ...

1. in ACP -> General -> Comment settings ... edit your badword list with the "insult words" ...

2. in ACP -> General -> Comment settings -> Characters to replace badwords ... delete " * " ... so there is nothing in this field ...

3. in includes/functions.php find ...
Code: [Select]
      $keywords .= (($keywords != "" ) ? ", " : "")."<a href=\"".$site_sess->url(ROOT_PATH."search.php?search_keywords=".urlencode($val))."\">".format_text($val, 2)."</a>";
... and replace by ...
Code: [Select]
      $keywords .= (($keywords != "" ) ? ", " : "")."<a href=\"".$site_sess->url(ROOT_PATH."search.php?search_keywords=".urlencode($val))."\">".format_text($val, 1, 0, 1)."</a>";
... so the "insult words" as keywords and in the description will not shown on your details pages ...

3. in [MOD] Tag cloud code find ...
Code: [Select]
foreach ($tags as $key => $value) {
... and replace by ...
Code: [Select]
$tags = format_text($tags, 1, 0, 1);
foreach ($tags as $key => $value) {

... I hope this will work ... ;)
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #80 on: December 14, 2007, 07:48:57 AM »
Sadly it doesn't, looks like there is a problem with code (below) because of it doesn't show anything:

Code: [Select]
$tags = format_text($tags, 1, 0, 1);
foreach ($tags as $key => $value) {

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #81 on: December 14, 2007, 08:09:55 AM »
I don't know but doesn't this solve the problem:

after:
Code: [Select]
foreach ($tags as $key => $value) {
add:
Code: [Select]
$key2 = replace_badwords($key);
and within $output replace
Code: [Select]
'.$key.'
with
Code: [Select]
'.$key2.'
 :roll:

skiemor

  • Guest
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #82 on: January 11, 2008, 07:29:46 AM »
very nice MOD, thank you!! ;-)

In action: http://www.birdgallery.eu/statistics.php

But how to get it in english, if user choose english language on home.html.
I can put an extra {lang_select} in statistics.html, but must be work without this too?

Or: How to translate German: "Statistik" to English: "Statistics" in user_logininfo and in user loginform?

Chris.
« Last Edit: January 11, 2008, 08:00:29 AM by skiemor »

Offline www.katzen.ag

  • Jr. Member
  • **
  • Posts: 75
  • KatzenAG - das grosse Katzenportal im Internet
    • View Profile
    • KatzenAG - das grosse Katzenportal im Internet
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #83 on: January 27, 2008, 10:59:48 PM »
Suuuper!!! Einfach und gut!
KatzenAG - das grosse Katzenportal im Internet

Offline ProDez

  • Pre-Newbie
  • Posts: 9
    • View Profile
    • MultiMedia Center
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #84 on: March 12, 2008, 12:00:20 PM »
Very GREAT MOD !!!
Thank you very much !!!

ProDez
Glauben ist nicht "Wissen". Aber, ich glaube das weiss jeder.

Offline maylord

  • Jr. Member
  • **
  • Posts: 50
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #85 on: March 16, 2008, 08:41:38 AM »
Hallo,

der Einbau klappte perfekt, aber immer wenn ich irgendwas über die search.php öffne, zeigt er mir eine komische Fehlermeldung. Kann mir da einer helfen?!

Notice: Undefined index: tagged_with in /var/www/xxxxxxxx/bilder/includes/functions.php on line 1776

EDIT: Hab es hinbekommen. hatte das Sprachpaket nicht komplett!!! *schäm*

Habe aber ne andere Frage: Wie schaffe ich es, auf einer neuen Seite ALLE Tags anzeigen zu lassen? Also auch in versch. Grössen und Farben; aber eben ALLE Tags der Galerie...
« Last Edit: March 16, 2008, 06:28:43 PM by maylord »

Offline Yux

  • Newbie
  • *
  • Posts: 28
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #86 on: April 18, 2008, 06:49:14 PM »
I did everything of the first post but don't show the tags
Don't show anything
Can you help me

Offline k1lljoy

  • Jr. Member
  • **
  • Posts: 79
    • View Profile
    • Razruha.Ru
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #87 on: June 09, 2008, 01:49:14 PM »
I`ve noticed only these cyrillic symbols are replaced by those annoying "ae", "oe", "ue":

In my case these are Russian: ц, д, ч, ь, Ъ, ы, я.

Maybe someone have any ideas?  :cry:

A year passed - maybe any solution appeared?
I cant believe nobody using russian language uses this MOD so far...  :(


Offline Daniel

  • Full Member
  • ***
  • Posts: 183
  • php rockt
    • View Profile
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #88 on: July 11, 2008, 08:26:13 AM »
Läuft Prpblemlos unter 1.7.6.
Nice and Thanks! Great MOD
4images in Benutzung/use seit/since 2002 / Version 1.7.6

Offline Ahm@d

  • Newbie
  • *
  • Posts: 14
  • KiNG Ro7ee - ملك روحي
    • View Profile
    • توبيكات
Re: [MOD] Tag cloud ( keyword & cat cloud in web2.0 style)
« Reply #89 on: July 23, 2008, 06:57:15 AM »
i have a problem with this mod on some Arabic letters

can anyone help me ?  :(
www.king-ro7ee.com
For webdesign
.. [ :) ] ..