Quote:
Originally Posted by Eryeal
I have a very odd problem .. The twitter icon doesn't show up in 2 of my forums on any threads .. there is absolutely no difference in these forums in the Forum Manager, or Forum Permissions. They are set up the exact same way - the only difference is the name of the forum that I can tell. The icon just doesn't show up at all. Any ideas?
|
If you look at the code you use there's this line:
Code:
<if condition="!in_array($GLOBALS[forumid], array(X, Y, Z))">
You need to replace X, Y, and Z with forumid numbers of forums in which you don't want to show the tweet button, like for example:
Code:
<if condition="!in_array($GLOBALS[forumid], array(11, 12, 20, 58))">
or if just 1 forum to not display the button in, for example:
Code:
<if condition="!in_array($GLOBALS[forumid], array(6))">
My guess is the forum's it's not showing for are listed in your IF statement...
If you don't have any forums in which you don't want to display the tweet button I give yo the two lines to remove in the instructions.