We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
[CODE] Remove the 'Welcome Back' text; By Stefan
Topic Started: Jan 25 2010, 10:55 AM (1,575 Views)
Reid
Member Avatar
È una trappola!

This topic has been moved from our official support board.

Originally posted by: Stefan
[CODE
 
Remove the 'Welcome Back' text]
Code:
 
<script type='text/javascript' language='JavaScript'>
<!--
// Remove 'Welcome back' text by ticlo
// http://s4.invisionfree.com/Digitalized/
function removeWelcomeBack() {
var c, n;
var e = document.getElementsByTagName('DIV');
for (n = 0; n < e.length; n++) {
if (e[n].innerHTML.indexOf('Welcome back; your last visit was on') != -1) {
for (c = e[n].firstChild; c; c = c.nextSibling) {
if ((c.nodeName == '#text') && (c.nodeValue.indexOf('Welcome back; your last visit was on') != -1)){
c.parentNode.removeChild(c);
return;
}}}}};

removeWelcomeBack();
// -->
</script>

Put this in Admin CP->Skinning & Styles->Board Wrappers->Footer, and the
Quote:
 
Welcome back; your last visit was on ..........
will be removed.
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · Codes & Modifications · Next Topic »
Add Reply