ok how

ModernFeelGames Verified
05/07/19, 4:16 PM
how do i include client information when making a post? like the Posted using (Insert Client)

Upvotes1 Downvotes0 Link

4 Comments


alluthus Verified
05/07/19, 4:16 PM
On your post.js, add this to the window.onload function: if (stuff.client != undefined) { document.getElementById("client").innerHTML = "<br/><br/><i>Posted using " + stuff.client + "</i>"; document.getElementById("client").style.display = ""; } Then have a <span id="client" style="display:none"></span> on post.html Note that these client tags work only on clients registered with the tag stuff.

Upvotes0 Downvotes0 Link
herronjo Verified (he/him)
05/07/19, 4:16 PM
If you are trying to have a client show in the posted using <client> section, you will have to register that client with me. The information is not sent with a postpost.sjs request, and is actually collected server side depending on your URL

Upvotes0 Downvotes0 Link
ModernFeelGames Verified
05/07/19, 4:16 PM
@herronjo oh oof

Upvotes0 Downvotes0 Link
herronjo Verified (he/him)
05/07/19, 4:16 PM
@ModernFeelGames I just need the client URL

Upvotes0 Downvotes0 Link