Well i agree that it is a vbulletin problem,
AND i think it is NOT irritating Because I have a homepage..!!!! thats where it links to..
if you do NOT have a homepage.. and you want it to link back to forums, you can set in vbulletin (not gallery) setting your homeurl to the same as your forums url.. thats where it links to..!!!
As you did it.. thats the correct way...
Goto ACP ->Vbulletin settings -> Site Name / URL / Contact Details -> Homepage URL
The problem is if you have another check for another option.. it will be called every time you load a gallery page... So I would make it permanent if thats the way you want it..
that call can be easely made by adding 2 lines in gallery_global.php right after the START MAIN SCRIPT:
Code:
Content visible to verified customers only.
I personally think.. adding an extra conditional effects performance..
(not that this would.. only adding up all the if then else does)
(thats why i removed the switch in my install and only use one config)
--------------------------
But as we are in suggestion thread... I would suggest following to be default (it can though be done easely editing templates - but i would suggest it to be default):
- 1. When you click on main logo --> send back to site homepage and not to gallery home (and not to forums like vbulletin forums do..)
- 2. In gallery navbar change the word "Home" to "Gallery Home" as it is confusing for new users. They think they go back to main homepage.
- 3. In breadcrumbs have default: Homepage -> Gallery (definetely not Forums-> Gallery) so admin doesnt have to set it each time he reinstalls..
- 4. Replace the "Gallery" Link in header Vbulletin Navbar from "Gallery" to "Forums" WHEN you are in Gallery. When you are in Forums or somewhere else it should be as it is now : "Gallery". Easy to implement with a simple template conditional.
But it is a question of philosophy.. some consider forums as the core, and gallery as an addon..
But if you have
an image site.. you would consider gallery as the core, and forums as an addon...
Or (like me) you want a
community site.. in that case you have
profiles and
memberlist as core, and 2 or 3 addons.. I have gallery, blogs, and forums.. whereas blogs are more important than forums..
Users only use forums if they have problems uploading pictures. Most of them are happy if they do NOT even have to go there, as forums means trouble *lol*.. (I removed ALL links to the forums from gallery pages except on the upload page .. there it is under: "Help me - I have trouble uploading")
But that is a question of approach.. and depends on the type of site you want..
------------------------------
I for myself have modified the breadcrumbs..
(I will NOT post the hack, as it is configuration dependent and Hardcoded.. - Modified vbulletin global for this and Mastertemplates)
What it does to the breadcrumbs though is following:
if I am in forums:
Homepage -> Forums
-> threadpage
If i am in gallery:
Homepage -> Gallery -> category
-> Image
but if I am in gallery home, its
Homepage
-> Gallery
(the word gallery being on the second line and Not linked..)
If i am in blogs:
Homepage -> Blogs -> Myblog
If i am in profile:
Homepage -> username
Basically i got rid of the Forums..(like gallery does if you config it) but i also added homepage in ALL the breadcrumbs ... Gallery and Forums being on the second line and not linked if you are on the mainpages ...
Gallery was easy because it allready does a replacement.. I removed that though as the replacement are ALL done in vbulletin global now. And there is no point in having 2 series of replacements. Hardest was vbulletin blog.. because for some stupid reason it allways wants to place the forum before it.. (and i didnt want to modify blog files - one file to edit is enough on updates)..
Luc