PDA


View Full Version : moving the copyright


bouncingpeanut
11-23-2005, 03:58 AM
I would like to MOVE (not remove) this text.

Powered by vBadvanced CMPS v2.0.0 (vB 3.5)


All times are GMT. The time now is 07:43 AM.

I'd like somehow to incorporate it within the vb stuff which appears much lower down.

Powered by vBulletin Version 3.5.1
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
mywebsitename.com

I want to be able to have so all the copyright is in place but the same place, i.e. more condensed.
I have considered buying the branding free and then just place a link to vBadvanced as a module to appear on all pages but don't have $40 right now.

Thanks

KW802
11-23-2005, 11:33 AM
BP,

I've done the same with my forums; I think it looks cleaner to have all of the notices & such together in one place. To remove it from CMPS modify the "adv_portal_footer" template. To add it to your normal "footer" template try this bit of code....<if condition="THIS_SCRIPT == 'adv_index'">
<div align="center" class="smallfont"><phrase 1="$vba_options[portal_version]">$vbphrase[powered_by_vbadvanced_cmps]</phrase></div>
</if>

bouncingpeanut
11-23-2005, 12:28 PM
Thanks Kevin. Wasn't sure where to put it in the normal footer, so just stuck your code at the end, I wanted to have it aligned with Vb but wasn't sure how or where I put it for that. Right now it reads VB then my website name then vba I suppose that is ok although I have to look at the css as its pretty dark, though still readable (just). I assume I can control the css just for the footer i.e. its not lumped in with something else on the page. anyhow thanks alot will go play with the links and css :)

KW802
11-23-2005, 01:11 PM
BP, no problem. :)

On my site I stuck that bit of code right above the normal vBulletin code (the section that has "$vbphrase[powered_by_vbulletin]" in it) but based upon each person's style it may fit better at a different spot. If you need/want help with CSS settings let me know and I'll take a look.

e-steki
11-23-2005, 01:44 PM
KW802, how would that be possible with links directory (or gallery...? :nervous: )
I've bought branding free for the cmps but I certainly can't afford (and don't really want to) for the links & gallery.


if($kevin_says=="The gallery is not ours any more") {
echo "Ok, just tell me about the links directory then";
//lol
}

KW802
11-23-2005, 02:14 PM
e-steki.... give me about 10 minutes and I'll post the full conditation I'm using that covers all three products.... :)

e-steki
11-23-2005, 02:28 PM
Thanksssssss :) :)

KW802
11-23-2005, 02:56 PM
OK, for all three products...

The templates involved are adv_portal_footer, adv_gallery_footer, and adv_links_footer.

In the standard "footer" template insert where desired.... <if condition="THIS_SCRIPT == 'adv_index'">
<div align="center" class="smallfont"><phrase 1="$vba_options[portal_version]">$vbphrase[powered_by_vbadvanced_cmps]</phrase></div>
<else />
<if condition="VBA_SCRIPT == 'gallery'">
<div align="center" class="smallfont"><phrase 1="$vba_options[gallery_version]">$vbphrase[powered_by_vbadvanced_gallery]</phrase></div>
<else />
<if condition="VBA_SCRIPT == 'links_directory'">
<div align="center" class="smallfont"><phrase 1="$vba_options[links_version]">$vbphrase[powered_by_vba_links]</phrase></div>
</if>
</if>
</if>

e-steki
11-23-2005, 03:11 PM
Thanks so much!! :* :)

bouncingpeanut
11-23-2005, 03:40 PM
BP, no problem. :)

On my site I stuck that bit of code right above the normal vBulletin code (the section that has "$vbphrase[powered_by_vbulletin]" in it) but based upon each person's style it may fit better at a different spot. If you need/want help with CSS settings let me know and I'll take a look.

Nice one Kevin, much better now - even more so since with e-steki's question it saved me a lot of time. xplored your site too, very cool, esp love the way you've done the links, If you don't mind me asking, did you code that yourself or was it a vborg mod of some kind. Really like the idea of preview images next to the website details, livens it up nicely. If it is a hack/mod could you direct me to it. (if its personal code, no worries).

KW802
11-24-2005, 12:54 AM
BP, the links images are just a template change. There are few different versions floating around but on Cool SciFi here's what I did....

Modify the "adv_links_linkbit" template and at the very top you should see...<tr>
<td class="alt2"><img alt="" src="$stylevar[imgdir_statusicon]/$link[folder].gif" /></td>... replace it with:<tr>
<td class="alt2"><a href="showlink.php?l=$link[linkid]" target="_blank"><img src="http://msnsearch.srv.girafa.com/srv/i?s=MSNSEARCH&r=$link[url]" border="0" hspace="3" vspace="3" alt="$link[name]" /></a></td>... and that should give you the thumbnails.

bouncingpeanut
11-24-2005, 03:21 AM
BP, the links images are just a template change. There are few different versions floating around but on Cool SciFi here's what I did....

Modify the "adv_links_linkbit" template and at the very top you should see...<tr>
<td class="alt2"><img alt="" src="$stylevar[imgdir_statusicon]/$link[folder].gif" /></td>... replace it with:<tr>
<td class="alt2"><a href="showlink.php?l=$link[linkid]" target="_blank"><img src="http://msnsearch.srv.girafa.com/srv/i?s=MSNSEARCH&r=$link[url]" border="0" hspace="3" vspace="3" alt="$link[name]" /></a></td>... and that should give you the thumbnails.

Oh sweet! I have problems at the moment as soon as I can get an answer I'll implement this. Thanks alot!

bouncingpeanut
11-24-2005, 04:28 PM
OK, for all three products...

The templates involved are adv_portal_footer, adv_gallery_footer, and adv_links_footer.

In the standard "footer" template insert where desired.... <if condition="THIS_SCRIPT == 'adv_index'">
<div align="center" class="smallfont"><phrase 1="$vba_options[portal_version]">$vbphrase[powered_by_vbadvanced_cmps]</phrase></div>
<else />
<if condition="VBA_SCRIPT == 'gallery'">
<div align="center" class="smallfont"><phrase 1="$vba_options[gallery_version]">$vbphrase[powered_by_vbadvanced_gallery]</phrase></div>
<else />
<if condition="VBA_SCRIPT == 'links_directory'">
<div align="center" class="smallfont"><phrase 1="$vba_options[links_version]">$vbphrase[powered_by_vba_links]</phrase></div>
</if>
</if>
</if>


Just as a FYI - after I implemented the above - all my links including navbar drop down's didn't work, but they worked on styles where I hadn't made the change. (see my post in the links troubleshooter - that I should go close). When I reverted the footer everything was hunky dorey again.. maybe I just put it in the wrong place or something - I'll try again when I have more time.

I only mention this in case anyone else has a similar problem, though I guess I'm the only one daft enough to put the code in the wrong place ;)

bouncingpeanut
11-27-2005, 11:49 AM
BP, the links images are just a template change. There are few different versions floating around but on Cool SciFi here's what I did....

Modify the "adv_links_linkbit" template and at the very top you should seeFONT=Courier New]... and that should give you the thumbnails. [/FONT]


Just wanted to say thanks for this Kevin - looks much better (IMHO) thanks.