Radio Streaming - 50% Lifetime Discount with purchase of any Joomla Web Radio Addon. Discount Code: STR15-Z
See Radio Streaming Plans

Results 1 to 9 of 9

Thread: Probleme: display time and close prediction when start match

  1. #1
    Junior Member
    Join Date
    Aug 2015
    Posts
    5

    Probleme: display time and close prediction when start match

    Sorry for my little english...

    esempio.JPG

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

  2. #2
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    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)

  3. #3
    Junior Member
    Join Date
    Aug 2015
    Posts
    5
    Quote Originally Posted by kostas View Post
    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
    ------
    Last edited by Bill_Dog; 02-09-2015 at 03:53 AM.

  4. #4
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    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)

  5. #5
    Junior Member
    Join Date
    Aug 2015
    Posts
    5
    Quote Originally Posted by kostas View Post
    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

  6. #6
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    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)

  7. #7
    Junior Member
    Join Date
    Aug 2015
    Posts
    5
    Quote Originally Posted by kostas View Post
    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:

    PHP Code:
    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
    Last edited by Bill_Dog; 06-10-2015 at 05:56 PM.

  8. #8
    Administrator
    Join Date
    Jul 2015
    Posts
    65
    go to file <joomla directory>/components/com_multileague/helpers/navigation.php

    and replace
    Code:
        $(document).ready(function(){
            setInterval(function(){
                phpJavascriptClock();
            },1000);
        });
    to

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

  9. #9
    Junior Member
    Join Date
    Aug 2015
    Posts
    5
    Quote Originally Posted by kostas View Post
    go to file <joomla directory>/components/com_multileague/helpers/navigation.php

    and replace .....

    [/CODE]
    Is Okay!
    Very Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •