MyBB Community Forums

Full Version: How to install install Simple TagCloud 0.9 on mybb 1.6
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Sorry for my bad english! Blush This tutorial is more interest for encrease seo.

Download and install SimpleTagCloud


Convert the plugin from 1.4 to 1.6 (link)


If dont appear, after the title the tag string

[Image: 2yxqec6.jpg]

Edit NewThread Template go to AdminCP->Themes&Template->Template-->YourTemplate-->NewThreadTemplate-->NewThread

Search {$posticons} and before it copy & paste this code and save.

Quote:<script type="text/javascript">
function getXMLHTTPRequest() {
req = false;
try {
req = new XMLHttpRequest();
} catch(err1) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch (err2) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch (err3) {
req = false;
}
}
}
return req;
}


var http = getXMLHTTPRequest();

function change_tag() {

var myTextField = document.getElementById("subject");
if(!myTextField.value == ""){
myRand = parseInt(Math.random()*9996999999121299999);
http.open("GET", "tags.php" + "?thread=" + myTextField.value + "&rand=" + myRand);
http.onreadystatechange = function (){
if(http.readyState == 4 && http.status == 200){
document.getElementById("tag").value = http.responseText;
document.getElementById("tagloading").innerHTML = "";
}else{
document.getElementById("tagloading").innerHTML = '<img src="images/spinner.gif" alt="Loading" />';
}
}
http.send(null);
}
}</script><!-- start: stcp-new-edit-thread -->


<tr>
<td class="trow2" width="20%" ><div style="font-weight: bolder;">Tags:</div></td>
<td class="trow2"><input type="text" class="textbox" id="tag" name="tag" size="40" value="" tabindex="1" /><div id="tagloading">[Don't use 'regional' characters]</div></td>
</tr>
<!-- end: stcp-new-edit-thread -->

Now you see tag string when you open new 3d.