Skip to content
General Chat Talk

Helpdesk

A TG007 community discussion started by Glock.

Discussion 9 posts
Page 1 of 1
Open
Topic #15850 · 9 published posts · 2,270 views

Does anyone have anything or know a way to have the bot insert the name of the guide who helped the user?

 

Example: Thanks for visiting HelpDesk. I hope that the GUIDE ( [guide name] ) was able to help you.

 

If anyone knows how to do this please feel free to post it here

Edited Jun 5, 2013 12:20 AM by Glock

save the nick of the staff member that voiced them as a var

Get information about ircWx here

This should work

on *:VOICE:#Helpdesk: { set -c %helpedby. $+ $vnick $nick } 
on *:DEVOICE:#Helpdesk: { $iif(%helpedby. [ $+ [ $vnick ] ], msg $chan Thanks for visiting HelpDesk. I hope that the GUIDE ( %helpedby. [ $+ [ $vnick ] ] ) was able to help you) | unset %helpedby. [ $+ [ $vnick ] ] } 
Edited May 14, 2013 6:03 AM by err0r

Get information about ircWx here

Upvote

Hello guys,

 

I'm working on a wordpress, ecommerce website for a local company, everything is going nice and smooth untill i start designing the ecommerce side -with the layout

 

wdf.jpg

 

everything is under this -

CSS:

#wrapper { margin:0px auto; width:960px; background:#fff; }

 

 

Old TG007 fan :-)

try the css clear:both

 

after it.. you prolly are using float so you need to clear it after the float object

Get information about ircWx here

#wrapper { clear:both; margin:0px auto; width:960px; background:#fff; } ?

http://www.wgrelocations.co.uk/shop/

 

before the <footer> i have a class clear { clear:both; } the images are in the background but the text and button isnt..

Found the fix guys

 

li.product { float:left; display: block; margin:5px 0 0 33px; padding:0; list-style: none; height:250px; width:150px; position: relative; }

 

height:250px fixed it

no you want to message $vnick not $$1 $$1 when referring to a nick is used when dealing with nicklist popups.

Get information about ircWx here