Παρασκευή 2 Ιουλίου 2010

Welcoming your Visitors



Την πρώτη φορά που θα επισκευθεί κάποιος το blog, ανοίγει ένα παραθυράκι, και του ζητάει να γράψει το όνομά/ψευδώνυμό του και πατάει ΟΚ.

The fist time someone visits your blog, a window opens asking him/her to write his nickname or name and he presses OK.


'Ετσι εμφανίζεται το μήνυμα καλωσορίσματος ονομαστικά (π.χ. Γειά σου Vdella) σε κάθε επίσκεψη!

This way on every visit he gets a welcome message on his name ! (e.g. Hi Vdella )

Ομως αν ο επισκέπτης δεν βάλει όνομα και πατήσει x ή cancel, θα τον δείχνει ώς ανώνυμο (null).
If visitor don't type a name 

But if the visitor presses x or cancel, without typing the name, he will be shown as null

Ακολουθείστε την γνωστή διαδικασία προσθήκης gadget (σχετική ανάρτηση μπορείτε να δείτε εδώ) και επικολλείστε τον κάτωθι κωδικό :

Follow the usual procedure of adding a gadget (see related post here) and paste the code given below :

<center><script>
<!--
// Copyright (c) 1996-1997 Tomer Shiran. All rights reserved.

// Boolean variable specified if alert should be displayed if cookie exceeds 4KB
var caution = false

// name - name of the cookie
// value - value of the cookie
// [expires] - expiration date of the cookie (defaults to end of current session)
// [path] - path for which the cookie is valid (defaults to path of calling document)
// [domain] - domain for which the cookie is valid (defaults to domain of calling document)
// [secure] - Boolean value indicating if the cookie transmission requires a secure transmission
// * an argument defaults when it is assigned null as a placeholder
// * a null placeholder is not required for trailing omitted arguments
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "")
if (!caution || (name + "=" + escape(value)).length <= 4000)
document.cookie = curCookie
else
if (confirm("Cookie exceeds 4KB and will be cut!"))
document.cookie = curCookie
}

// name - name of the desired cookie
// * return string containing value of specified cookie or null if cookie does not exist
function getCookie(name) {
var prefix = name + "="
var cookieStartIndex = document.cookie.indexOf(prefix)
if (cookieStartIndex == -1)
return null
var cookieEndIndex = document.cookie.indexOf(";", cookieStartIndex + prefix.length)
if (cookieEndIndex == -1)
cookieEndIndex = document.cookie.length
return unescape(document.cookie.substring(cookieStartIndex + prefix.length, cookieEndIndex))
}

βάζετε ή δεν βάζετε τίτλο ότι θέλετε (σχετική ανάρτηση δείτε εδώ), το τοποθετείτε στο σημείο που θέλετε να φαίνεται (σχετική ανάρτηση δείτε εδώ), και πατάτε αποθήκευση.

put a title or not as it suits you (related post see here), click save, place it where you like (related post see here) and click save.

Έτοιμοι !
Done !

Δεν υπάρχουν σχόλια:

Δημοσίευση σχολίου

Το σχόλιό σας μετράει !