Quote:
Originally Posted by MarkFL
If you wish to add some text at that point, created a plugin hooked at "forumhome_complete" with Plugin PHP Code something like:
PHP Code:
$added_text = ', Some Text...'; $totalposts .= $added_text;
|
thanks so this should work just fine the right?
PHP Code:
$added_text = ', Some Text...' . $someVar . '';
$totalposts .= $added_text;