PDA

View Full Version : Probleme: display time and close prediction when start match



Bill_Dog
29-08-2015, 08:08 PM
Sorry for my little english...

3

I have probleme whit display time and close prediction at start match...
Idea for repair?
Thx

kostas
30-08-2015, 11:18 AM
Please provide us the version of the Joomla you are using (general it seems to be a jQuery conflict issue , we recommend you to use the jQueryEasy plugin)

Bill_Dog
02-09-2015, 02:40 AM
Please provide us the version of the Joomla you are using (general it seems to be a jQuery conflict issue , we recommend you to use the jQueryEasy plugin)

version is joomla 3.4.3... Template is jsn time...

Thx

I have install plugin... but correct configuration?

------
Message of plugin:
Joomla! usa jQuery v1.11.2
La versione jQuery UI di Joomla! non può essere rilevata
------

kostas
02-09-2015, 09:19 AM
The settings would look like this

Joomla 3.x

Plugins->System - jQuery Easy

Tab plugin
Status = Enabled

Tab Basic site options
Enable jQuery = select jQuery

Version = jQuery v1.11
Sub-version = 3
(or you can add the local path to jQuery library)


Migrate
Version 1.2.1
(or set a localpath to the .js library)


************************************************** ******
Joomla 2.5.x

Details==============================
Status = Enabled

Basic Site Options ======================
Enable jQuery = select jQuery

Version = jQuery v1.11
Sub-version = 3
(or you can add the local path to jQuery library)


Migrate
Version 1.2.1
(or set a localpath to the .js library)

Bill_Dog
30-09-2015, 01:15 PM
The settings would look like this

Joomla 3.x

Plugins->System - jQuery Easy

Tab plugin
Status = Enabled .......

Hello,
with the support ... Unfortunately I followed instructions to the letter but the problem persists ...
Do you believe it can be a good idea to try to reinstall your component?
Thank you

kostas
01-10-2015, 11:51 AM
It should be a conflict issue , so if your reinstall the component it wont fix, can you please post the error that shows up in Developer Console (F12 - Console Tab)

Bill_Dog
06-10-2015, 04:52 PM
It should be a conflict issue , so if your reinstall the component it wont fix, can you please post the error that shows up in Developer Console (F12 - Console Tab)


There are several "warnings" but one mistake. this: TypeError: $(...).ready is not a function1 gratis.scommesseoggi.it:123:2

I think it is related to this sector of the script clock inserted in the head tag:


flag = false;
timer = timer + 1000;
}


$(document).ready(function(){
setInterval(function(){
phpJavascriptClock();
},1000);
});

Very Thx
Enrico

PS. If you want I can create a temporary account administrator on the site to allow you to access and verify personally eventauli dysfunction
(sorry for my little english)
site is gratis . scommesseoggi . it

kostas
07-10-2015, 09:36 AM
go to file <joomla directory>/components/com_multileague/helpers/navigation.php

and replace


$(document).ready(function(){
setInterval(function(){
phpJavascriptClock();
},1000);
});

to



function ready(fn) {
if (document.readyState != "loading"){
fn();
} else {
document.addEventListener("DOMContentLoaded", fn);
}
}

ready(function(){
setInterval(function(){
phpJavascriptClock();
},1000);
});

Bill_Dog
25-11-2015, 11:01 AM
go to file <joomla directory>/components/com_multileague/helpers/navigation.php

and replace .....

[/CODE]

Is Okay!
Very Thanks