![]() |
Amy,
Thanks for posting.. Well I am under the assumption that the "categories" are the five "all white" (not gray on the left) forums and then the others are the the level 2 forums.. ? There is also another "test" category at the bottom that I just added. James |
No. Categories won't have the Posts, Threads, Last Posts information. They are a single row all the way across. Look at my board. An example of a category is "Epinions"
You need to set your categories to not act as forums. Amy |
Amy,
YOU ARE A LIFESAVER!!! I spent 3 hours trying different things this morning......... and just from your post I was able to figure it out in 2 minutes! I had no idea that "act as a forum" was even an option in the control panel.. I set it to "no" and the banner shows up! Great! Thanks a LOT! James |
No problem :)
|
Does this hack work with vBulletin version 2.3.0; can someone confirm, please?
|
Quote:
I just got around to making this change. The only problem I'm having is that the text field isn't long enough for the entire URL. |
Yes, I just installed it on vbulletin version 2.3.0 and it works fine! Feel free to give it a try. It works fine.
The hack refers users to specific lines in forum.php to replace information, but the lines do not match the number indicated. Just use your "find" and search for the wording instead of looking for the exact line in the file. Other then that, works like a charm!! Regards, Gabriel |
Error:
Parse error: parse error, unexpected ')' in {edited}admin/forum.php on line 143 Line 143: (NULL,'$styleset','".$title)."','".$description)." ','$isactive','$displayorder', '$parentid', I would guess it doesnt like .$title).'" and $description).'" Is there a work around for this??? Thx Eric |
OK, I understand this and I have installed it and works. Now then how do you get this installed on the forumdisplay.php to work correctly.
I tried replacing the same info like on the index.php page. Well I got a surprise when I refreshed my forums, BIG BLUE SCREEN with little folders, lol Can someone make this happen not on the index page but on the forums CATAGORY areas??? This would be nice if I could get some help on this ... thank you |
Hi I Love this hack, but I am looking for a heads up on how they do the sponsered by at graphic-forums.com. Its a simple
sponsered by: blah - blah- blah (link) i wanted to maybe place a graphical badge there 88*100. I tried doing it in HTML but I ran out of room in the forum descriptions section. I have seen this once before and I would like to use it isolated not with fireflys hack... any leads or help... Thanks, midz |
|
I've already got my main page tables altered. Does anyone know if this hack/template change will work out of the box for me with the way I have the forum at about 80% and on the left side?
www.sportscardforum.com Thanks, BGray |
i have moded forum 2.3 with the store hack in it
so i moded it a little and now i get a database error PHP Code:
|
you are missing a single quote mark off the end of this line
Code:
moderateattach='0', storereply='0', storethread='0 Code:
moderateattach='0', storereply='0', storethread='0' |
Quote:
cause that was it thanx |
i got it to work finally. vb 2.2.8
2 things-the proudly sponsered by text doesnt show up. if the page hesitates to load, you can see the text does show up, but when the image loads it gets placed on top of the text, making it not visable. i dont really care too much about the text though. this is my problem: when i click the banner images, it doesnt take me to the sponser url. it tries to goto http://my board url/sponser url and then redirects to the file not found error page. for example my board is http://www.anabolic-alchemy.com it tries to goto http://www.anabolic-alchemy.com/www.gearboxinc.com gearboxinc is my sponser url how do i make it so that it doesnt add my boards url first? |
Please, somebody make this hack work on VB3... I love it...
|
Has anyone tried this on vb3 Gamma? Sitepoint seems to have licked it. Anyone else?
|
I love the way it looks on sitepoint, and I'm waiting also for a vb3 release of the hack that is stable...
I'm still working on getting my VB set up for the first time, so I have a while to wait until I get my site customized the way I want anyway. :) |
Hi -
Is there away to have two banners from different sponsers side by side. I have tried and gotten really close but no cigar. Thanks, Midz |
It would be nice to get this hack for vb3. Do you will rewrite it for this version?
|
I've requested it in the Vb3 Mod Requests forum. Perhaps anyone else interested can express that there so the coders know there's support.
https://vborg.vbsupport.ru/showthread.php?t=59714 |
[QUOTE}
and forumdisplay_sponsoredby was included in the list of required templates. Finally, I added $sponsoredby to my forumdisplay template. Sorry for the clumsy explanation. It took a bit of putzing around for me to get this to work, but it does. :) Amy[/QUOTE] Finally added $sponsoredby to where in the formdisplay template? |
nevermind.. I got it ..LOL
Quote:
Finally added $sponsoredby to where in the formdisplay template?[/QUOTE] |
you guys are my heros :D
|
ok I will try it out :)
|
The 'sponsory categories' hack can be very simply implemented in vb3 if you do not mind not having fancy GUI options to manage your sponsor options. The way I did it is by using the new vb3template conditionals. Note that I am assuming that you already have the old solution installed, ie your 'forum' table has the 3 additional sponsorimg, sponsorurl and sponsorname columns added to it. If that's the case all you need to do is to edit 1 template:
Add following to your forumhome_forumbit_level1_nopost template: Code:
<if condition="!empty($forum[sponsorimg])"> |
I tried this but it did not work. Nothing is shown.
I would love to have something like Sitepoint have on their site. Any help highly appreciated :) PS I am using VB3.0.3 and only added the template-edit (described in the post above) and the tables to the forum-table. |
Okay, I seem to have it more or less working. I used this code in the template-edit, maybe somebody can use it:
<!-- Begin Hack Sponsor --> <if condition="!empty($forum[sponsorimg])"> <table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center"><tr><td> <table cellpadding="6" cellspacing="1" border="0" width="100%"> <tr><td class="alt2"> <a href="$forum[sponsorurl]"><img src="$stylevar[imgdir_misc]/$forum[sponsorimg]" alt="$forum[sponsorname]" title="Proudly sponsored by $forum[sponsorname]" align="right" /></a> <div style="padding: 6px; text-align: center;">Today's forum discussions are proudly sponsored by <a href="$forum[sponsorurl]">$forum[sponsorname]</a>.</div></td></tr> </table></td></tr></table> </if> <!-- End Hack Sponsor --> |
Norvo - where did you put this in the template?
and using PhpMyAdmin, how exactly do you put your sponsor info into the three new columns created onto the "forum" table? sorry for the stupid questions but I had the old hack installed on V2 with the nice, easy GUI and this method is a little foreign to me. |
I've added the code at the top of the forumhome_forumbit_level1_nopost template. And I've insert the info into the three new columns using PhpMyAdmin by editing the database-records. If anyone where to write a good-looking hack for this so the GUI is nice and embedded into the administration, I would like to hear about that :)
Hope this helps. |
Quote:
thanks! |
i'm stumped on this --- I've made the template changes and then updated the database records but the information being displayed is still from the last time I ran this script on VB2.3.0
I've changed the sponsorurl, sponsorimg and sponsorname columns in the forum table but the information being displayed does not match this information. Anyone have a clue where I messed this up? |
not sure if anyone is even checking this thread, but here's one curious thing that could be leading to my problem.
In the datastore table and the forumcache column, the information seems to be outdated. It contains the exact "old" sponsorurl, sponsorname and sponsorimg references that are showing up on my board despite the changes I made to the forum table. Should the forumcache be updating automatically and is this the source of my display problems? |
All times are GMT. The time now is 04:17 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|