Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
I would like to have multiple Chatboxes on the same page using the widget code. Does anyone have an example so there isn't a conflict? Thank you!
Offline
Hi,
I do not think it's possible to do that. Different chatbox for different pages possible. But different chatbox on the same page, do not think so.
If what you can fill github issue with your wish.
Offline
Will Do- Thanks for the response. If I figure out a way to do it I will be sure to post back what I have done. Thanks!
Offline
Solution:
I created multiple iframes on the website's default template.
<iframe src="templates/chatboxframe1.php" width="auto" height="600px" id="frame1" frameborder=0 ALLOWTRANSPARENCY="true" scrolling="no" style="margin-top:100px;" />
<iframe src="templates/chatboxframe2.php" width="auto" height="600px" id="frame2" frameborder=0 ALLOWTRANSPARENCY="true" scrolling="no" style="margin-top:700px;" />
Then pointed each iframe to it's own html page with the widget code for each that chatbox on that page.
frameborder=0 ALLOWTRANSPARENCY="true" scrolling="no"
Added to the iframes on the homepage to remove the scrollbar and background of the iframe.
<body style="background-color:transparent">
Then removed the background color of the iframe page.
Working on a solution right now to make the frame height size enlarge. Right now I need to fix the iframe height so it will show the chatbox so I will post once I have it figured out.
Last edited by pdiddy (2014-10-22 22:03:01)
Offline