/* tag cloud how-to
--------------------------------------------- */
Generated by TagCrowd.com
Feel free to modify as long as you keep this notice.

This code and its rendered image are released under the Creative Commons Attribution-Noncommercial 3.0 Unported License.
http://creativecommons.org/licenses/by-nc/3.0/

For commercial use licensing, visit http://tagcrowd.com/licensing.html
--------------------------------------------- */

1) go to page: http://tagcrowd.com/ 

2) Enter the URL of your forum 

3) bottom of the page set options 
	Recommended settings: 
- Language of text: "French" 
- Maximum number of words to show? "50" 
- Minimum frequency? "2" - Show frequencies? "No." 
- Ignore words from a custom STOPLIST: "2009 Web prefixes" 
(we will come back probably after the results obtained with "You can also create or edit a STOPLIST.")
- Group similar words? "yes"

4) Build the cloud by pressing the button "Visualize!" 

5) look at the result, if you see garbled words, the "a" and "or" l "etc., we must return to point 3 and create a list of words to stop (often necessary) 

6) Finally you have your list of words and especially the code to insert into your page. 

7) select the text and copy / paste it into a piece of text. 

8) in the sheet select the section that starts with: 
<div id="htmltagcloud"> and finally: </ div> 

9) paste this part into the file overall_footer.html instead of one up for the demo. 

10) You can replace some words by other words you think appropriate to your content, the theme of your forum and not necessarily occurred in the generation of the cloud.
 
11) final stage, the most tedious. 
To begin, we must understand what is the code word in the cloud is represented by a line of code in the overall_footer.html y
ou can see that in your new code is a line like this: 
<span id="0" class="tagcloud1"> <a href="#tagcloud"> help </ a> </ span> 
- Class = "tagcloud1" is the css class that defines the size, color etc. of the word compared to its popularity, the generator has already calculated it for you. 
- "Help" is the word that appears in the cloud 
- id = "0" is false and you do not validate xhtml strict code, 
we can erase the line of code that gives us: 
<span class="tagcloud1"> <a href="#tagcloud"> help </ a> </ span> 

what we really interresse is this part: 
href = "# tagcloud" 
we need to point to the phpbb search utility to give this tag cloud, that's what to put in place: 
href="search.php?keywords=help&amp;terms=all&amp;author=&amp;sc=1&amp;sf=all&amp;sr=posts&amp;sk=t&amp;sd=d&amp;st=0&amp;ch=300&amp;t=0&amp;submit=Search"
note that: 
search.php?keywords =help
 is the word shown to the line is: 
help </ a> </ span> 

line code for a single word then became: 
<span class="tagcloud1"> <a href="search.php?keywords=help&amp;terms=all&amp;author=&amp;sc=1&amp;sf=all&amp;sr=posts&amp;sk=t&amp;sd=d&amp;st=0&amp;ch=300&amp;t=0&amp;submit=Search"> help </ a> </ span> 

for the second word ( "mods") line of code should be: 
<span class="tagcloud5"> <a href="search.php?keywords=mods&amp;terms=all&amp;author=&amp;sc=1&amp;sf=all&amp;sr=posts&amp;sk=t&amp;sd=d&amp;st=0&amp;ch=300&amp;t=0&amp;submit=Search"> mods </ a> </ span> 
(the class "tagcloud5" is taken as an example but you have to use that set in your original code) 
one change is to be compared to the first line: 
search.php? keywords = mods 
for 
mods </ a> </ span> 
and so on for all the words in the list....

/ * social bookmarks how-to
--------------------------------------------- * /
ties are oriented on the home pages of sites, you must specify your own url of your profile that members can benefit.
to remove a link, open overall_footer.html and delete the complete line of code (for del.icious here):
<li class="sexy-delicious"><a class="external" href="http://del.icio.us/" title="Share this on del.icio.us">Share this on del.icio.us</a></li> 

It is unnecessary to keep the icons you do not have a profile.
