Just getting frustrated here. 4 weeks is a long time, and it would have been nice for you to say that this request was out of the question then. But hey no hard feelings
And I finally figured it out. so here is the answer for any one who was wondering the same thing.
Added another field to the pop up window. go to components/com_livechat/views/popup/tmpl/default.php and find the following
<div class="jlc-clr"> </div>
<form id="start_chat_form" action="" method="get" onsubmit="return startChatSession();">
<span class="jlc-name-wrapper">
<?php echo JText::_('ENTER_YOUR_NAME_BELOW'); ?>
<br />
<input type="text" id="chat_name" name="chat_name" value="<?php echo $this->default_name; ?>" maxlength="50" />
<br />
</span>
<div class="jlc-clr jlc-margbot5"> </div>
<div class="jlc-clr"> </div>
Duplicate it and change the names to what you need it to say.
For Expample:
<form id="start_chat_form" action="" method="get" onsubmit="return startChatSession();">
<span class="jlc-name-wrapper">
<?php echo JText::_('your email'); ?>
<br />
<input type="text" id="chat_email" name="chat_email" value="<?php echo $this->default_email; ?>" maxlength="50" />
<br />
</span>
<div class="jlc-clr jlc-margbot5"> </div>
I am running into another problem though. When i add this field the most of the submit button gets cut off. Now i have to figure out how to change that.
Okay fond a solution to the submit "start button" being cut off
Find the following code in the components/com_livechat/views/popup/tmpl/default.php
<span class="jlc-right start-btn-wrapper">
<button id="start_button" name="start_button"><?php echo JText::_('START'); ?></button>
</span>
Then cut and past that code above the this section of code
<span class="jlc-name-wrapper">
<?php echo JText::_('ENTER_YOUR_NAME_BELOW'); ?>
that will move the start button above the other fields. i think it looks better but there anyway.
check out the example at
residential.veracitynetworks.com/