Elxis CMS Forum

Support => General => Topic started by: armpouniotis on February 11, 2013, 22:16:42

Title: Elxis Nautilus with external audio player
Post by: armpouniotis on February 11, 2013, 22:16:42
Hi all !

I am using Elxis Nautilus and I have put an external audio player in a seperate folder, in order to play mp3 files within articles.

Unfortunately, the user guide of this audio player says to put the following line in my index.php page:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

If I put this line, then IOS slider module is NOT working... but player does !
If I don't put it, then IOS slider module is working fine, but not the player...

Is there any solution to this ?

Thank you in advance
Christos
Title: Re: Elxis Nautilus with external audio player
Post by: CREATIVE Options on February 11, 2013, 22:31:21
Obviously you have mootools & Jquery conflict.
Easy to solve just google it
Title: Re: Elxis Nautilus with external audio player
Post by: Amigamerlin on February 12, 2013, 09:15:19
Obviously you have mootools & Jquery conflict.
Easy to solve just google it

Sorry CREATIVE Options but do you think this is a good answers to solve armpouniotis problem ?
Do you think that googling armpouniotis will find the solution ready for his problem? 
Is this support?
Damn, what's happening to this forum ? 
In the past this forum was full of usefull suggestion and solution, in the past... :(

IMHO Elxis related problem should be discussed and solved here not in other place.
Maybe I've a strange conception of support but IMHO this ISN'T support.
Support mean ... find solution to the users problems not postpone them. Postpone mean letting the user alone with his problem.

Sorry
Bye
Title: Re: Elxis Nautilus with external audio player
Post by: nikos on February 12, 2013, 12:18:46
Hi all !

I am using Elxis Nautilus and I have put an external audio player in a seperate folder, in order to play mp3 files within articles.

Unfortunately, the user guide of this audio player says to put the following line in my index.php page:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

If I put this line, then IOS slider module is NOT working... but player does !
If I don't put it, then IOS slider module is working fine, but not the player...

Is there any solution to this ?

Thank you in advance
Christos

When your needs are just to play mp3 files into articles, then you can use the HTML5 video plugin using the mp4 format and the only thing you need is to convert your mp3 files to mp4 (http://mp3tomp4converter.com/)

In this way you do not need the script you mentioned about. If in any case you want an mp3 player then you need a specific plugin for this file type which is not developed yet.

I plann to create such a plugin which i also need for a site i am building in Elxis 4.0 so i will publish it free as allways.
Title: Re: Elxis Nautilus with external audio player
Post by: armpouniotis on February 12, 2013, 15:29:06
Hi all again !

my question was not only for this audio player, but for any other external plugin, which uses Jquery code.

In any case, Elxis Nautilus is very good !

Christos
Title: Re: Elxis Nautilus with external audio player
Post by: CREATIVE Options on February 12, 2013, 15:43:35
armpouniotis I hope that you understand why my answer was so general.
If you made a search you find a solution (http://davidwalsh.name/jquery-mootools):
Code: [Select]
<p>jQuery sets this paragraph's color to red but MooTools sets the border color.</p>
  <script type="text/javascript" src="jquery-1.3.js"></script>
  <script type="text/javascript">
    //no conflict jquery
    jQuery.noConflict();
    //jquery stuff
    (function($) {
      $('p').css('color','#ff0000');
    })(jQuery);
  </script>
  <script type="text/javascript" src="moo1.2.js"></script>
  <script type="text/javascript">
    //moo stuff
    window.addEvent('domready',function() {
      $$('p').setStyle('border','1px solid #fc0');
    });
  </script>

And Many Many other and you have to customize this code regarding your scripts.
and that's why I can't give an answer, IOS Noobslider in Mootools and a player in Jquery.
Title: Re: Elxis Nautilus with external audio player
Post by: armpouniotis on February 12, 2013, 21:33:39
Yes I know my friend !

I have googled it, and I found the same solution !

I will try it these days. For now, it is not very important !

Thank you
Christos
Title: Re: Elxis Nautilus with external audio player
Post by: CREATIVE Options on February 12, 2013, 22:20:08
:) You have to add the proper functions & events