chat works only complete in popup
Re: chat works only complete in popup
from what i can see, i'm not able to make changes in the UCP due to the js libraries are not loading as well as the style css files are not loading. i don't know exactly how the Joomla bridge works but something is causing the style files to not load. without the js(jQuery) libraries being loaded, chat will not function properly
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
Re: chat works only complete in popup
Oke so maybe i do need to replace all $ to jQuery
if so i wil have a look at it tomorrow from no im off to bed
thanks for youre help so far
Gr Gio.
if so i wil have a look at it tomorrow from no im off to bed
thanks for youre help so far
Gr Gio.
Last edited by Gio73 on Tue Apr 19, 2016 6:19 pm, edited 1 time in total.
Re: chat works only complete in popup
the file jquery.min.js file that your style is trying to load is not loading. you have issues with your style or something is causing those issues within the bridge
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
Re: chat works only complete in popup
oke thank you i did copy pasate it to Alterbrains hopefully he will help me out if not i need to look for a other chat.
Re: chat works only complete in popup
It works Alterbrains did fix it for me it was lik i told see here for if there is someone else whit the same probleme once
The main issue is that your site loads MooTools and it conflicts with jQuery because chat uses common jQuery alias $ which is replaced by MooTools.
edited:
phpBB3/ext/spaceace/ajaxchat/styles/all/template/js/ajax_chat.js and replaced all $( with jQuery(
jQuery(window).load(function () {
jQuery("#smilies").click(function () {
jQuery("#chat_smilies").toggle(600);
});
jQuery("#bbcodes").click(function () {
jQuery("#chat_bbcodes").toggle(600);
});
jQuery("#chat_bbpalette").click(function () {
jQuery("#chat_colour_palette").toggle(600);
});
});
The main issue is that your site loads MooTools and it conflicts with jQuery because chat uses common jQuery alias $ which is replaced by MooTools.
edited:
phpBB3/ext/spaceace/ajaxchat/styles/all/template/js/ajax_chat.js and replaced all $( with jQuery(
jQuery(window).load(function () {
jQuery("#smilies").click(function () {
jQuery("#chat_smilies").toggle(600);
});
jQuery("#bbcodes").click(function () {
jQuery("#chat_bbcodes").toggle(600);
});
jQuery("#chat_bbpalette").click(function () {
jQuery("#chat_colour_palette").toggle(600);
});
});
Re: chat works only complete in popup
how to hide the color piker?
Last edited by Gio73 on Wed Apr 20, 2016 4:43 pm, edited 1 time in total.
Re: chat works only complete in popup
for whatever reason, the css is not hiding it by default. you haveGio73 wrote:how to hide the color piker?
Code: Select all
when it should be
#chat_colour_palette {
display: 061F26;
text-align: center;
padding-bottom: 5px;
}
Code: Select all
your site still has a css issue...
#chat_colour_palette {
display: none;
text-align: center;
padding-bottom: 5px;
}
http://www.customcovershq.nl/phpBB3/sty ... version=10 Failed to load resource: the server responded with a status of 404 (Not Found)
if you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
Re: chat works only complete in popup
oke but in witch file i saerch for this
#chat_colour_palette {
display: none;
text-align: center;
padding-bottom: 5px;
}
#chat_colour_palette {
display: none;
text-align: center;
padding-bottom: 5px;
}
Last edited by Gio73 on Thu Apr 21, 2016 12:38 pm, edited 1 time in total.
Re: chat works only complete in popup
that is in ext/spaceace/ajaxchat/styles/all/theme/ajax_chat.css
look for
look for
#chat_colour_palette
and make sure it has display: none;
in itif you like my work and would like to contribute to my development of styles, please donate by using the donate button in the header.
Need hosting? Click this text to check out ICDSOFT
Need hosting? Click this text to check out ICDSOFT
Re: chat works only complete in popup
oke thank you now its oke must have changed it en did not remember