|
Title: Adding additional information Post by: ROYW1000 on April 25, 2008, 07:06:49 PM Hi
I want to add additional information and perhaps make the persons name appear in Bold. $lang['now_chatting'] = 'You are now chatting with PERSON'; I have created like now_chatting1 and added this to the chat_display but nothing comes out. I removed the word PERSON from above and added it to chatting 1 and can then use the <strong></strong> around it but nothing happened. Any ideas what else I need to ammend to add more wording to the software like above. Thanks in advance for your help. Regards Roy Title: Re: Adding additional information Post by: eco20 on April 25, 2008, 11:21:00 PM Hi Roy,
It's easy (but not tested yet) ;) Try this : "chat_display.tpl" : Replace the line 11 in the template folder <div align="center"><i><span class="operator">{$now_chatting}<strong>{$_CHAT.operator}</strong></span></i></div><br /> And modify lang/en.php $lang['now_chatting'] = 'You are now chatting with '; That's all ! Title: Re: Adding additional information Post by: ROYW1000 on April 26, 2008, 08:41:20 AM Hi
Thanks for the reply. What if I wanted to add more information after the Operator Name like (Operator Name - From XXX Company how can we help you. Is it possible to add additional information like this and how does it work and do we just mod the language file? $lang['intro_text'] = 'From XXX Company how can we help you'; Thanks Roy |