Used this:
$Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule''CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule', ');
Now I get this:-
Parse error: syntax error, unexpected ''CategoriesModule'' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in /homepages/34/d260127691/htdocs/forum/conf/config.php on line 61
Thanks, I've put the new discussion button directly below the tag cloud so users will hopefully look for an existing discussion before starting another.
Answers
also I would put the GuestModule as the first entry so it is up at the top. (it is the signin box).
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
// Modules $Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule','TagModule', 'CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule');
actually it would look better with tagmodule at the end.
// Modules $Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule''CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule', ');
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Used this:
$Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule''CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule', ');
Now I get this:-
Parse error: syntax error, unexpected ''CategoriesModule'' (T_CONSTANT_ENCAPSED_STRING), expecting ')' in /homepages/34/d260127691/htdocs/forum/conf/config.php on line 61
$Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule','CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule');
I left out the comma between MessageModule and CategoriesModule - sorry- above should work.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
I think theres a comma missing?
yes
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
$Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule','CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule');
final correction.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
HaHa! that was a test
There were extra commas at the end too. Should have read:-
// Modules
$Configuration['Modules']['Vanilla']['Panel'] = array('GuestModule','MessageModule', 'CategoriesModule', 'WhosOnlineModule', 'BookmarkedModule', 'TagModule');
good work!
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
What is the "start new discussion" button module called as that is now at the bottom.
NewDiscussionModule I believe
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Thanks, I've put the new discussion button directly below the tag cloud so users will hopefully look for an existing discussion before starting another.