Link to home
Start Free TrialLog in
Avatar of degaray
degaray

asked on

Livezilla start chat without asking for name or any other information

Hello Experts,

I am trying to implement Livezilla in one of my sites, and I would like it to launch as soon as someone hits the button. That is skipping the step where users need to fill in a form with their information. Does anyone know how to do so?

Cheers!
Avatar of ukerandi
ukerandi
Flag of United Kingdom of Great Britain and Northern Ireland image

When customer hits the button, do you want to launch the “Livezilla” chat ? or you need to load the enter user form ?
If you know 1) the form that is filled in for the user info 2) the user name and 3) the password, then you can post the form's information - bypassing the form.

I am unfamiliar with Livezilla so this is just an attempt to be helpful.
Avatar of degaray
degaray

ASKER

I do not want to have my visitors bouncing when hitting the form page, therefor I would like them to get straight to the representative.
ASKER CERTIFIED SOLUTION
Avatar of developmentguru
developmentguru
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you go to the login page you may be able to see the html for the submit button.  This would show you the site to post to.  You would also need to know if it is a post (most likely) or a get (so you can mimic it).  You would then need to know the field names so you can replicate them in the submission you create.

If you are unable to see the submit button definition then the form may be being posted in code.  In that case you would need to look through the javascript to see what it is doing.
Avatar of degaray

ASKER

thanks,