Support for SermonSpeaker 4.x is canceled as it is for Joomla 2.5. I will gladly assist you with minor issues but I will not fix any bugs anymore in this releases.
The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.

BUG: JWPlayer, no script in <head>

More
27 May 2011 06:05 #629 by Thomas Hunziker
While RocketTheme makes awesome templates, they tend to break stuff for some strange reasons.

Please Log in or Create an account to join the conversation.

More
06 Jul 2011 16:02 - 06 Jul 2011 16:17 #724 by Keith Sorbo
I am having the same issue.

I am using rocketthemes, but have tested using the beez template with the same problem.

I manually added the reference to the js file in the header. The js shows up in firebug, but it still doesn't work.

Any ideas? I even changed the setting to alternate player, but the javascript error still says jwplayer is not defined.
Last edit: 06 Jul 2011 16:17 by Keith Sorbo.

Please Log in or Create an account to join the conversation.

More
06 Jul 2011 17:08 #725 by Thomas Hunziker
Did you try disabling this special Rok Plugin Ben mentioned? If you only switch to the beez template, the various plugins from RocketTheme are still running and can still cause issues.

I probably have to install a template from them as well just for testing purposes, maybe I can figure out someday how to improve compatibility with their work.

Please Log in or Create an account to join the conversation.

More
06 Jul 2011 18:03 - 06 Jul 2011 18:04 #726 by Keith Sorbo
I do not have that particular plugin installed. I checked that when I found this thread.
Last edit: 06 Jul 2011 18:04 by Keith Sorbo.

Please Log in or Create an account to join the conversation.

More
06 Jul 2011 18:06 #727 by Andrei Chernyshev
try disabling all plugins and modules and then reactivating them one at a time.

Please Log in or Create an account to join the conversation.

More
06 Jul 2011 18:19 - 06 Jul 2011 18:22 #728 by Keith Sorbo
I have disabled everything rok and not joomla and used the atomic template.

With url: index.php?option=com_sermonspeaker

I still get the same error.

Here is the code of the header portion of the page
Code:
<base href="http://demo16.network211.com/index.php" /> 7 <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 8 <meta name="robots" content="index, follow" /> 9 <meta name="keywords" content="" /> 10 <meta name="rights" content="" /> 11 <meta name="language" content="en-GB" /> 12 <meta name="generator" content="Joomla! 1.6 - Open Source Content Management" /> 13 <title>All sermons</title> 14 <link href="/templates/atomic/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> 15 <link rel="stylesheet" href="/media/com_sermonspeaker/css/sermonspeaker.css" type="text/css" /> 16 <link rel="stylesheet" href="/media/system/css/modal.css" type="text/css" /> 17 <script src="/media/system/js/core.js" type="text/javascript"></script> 18 <script src="/media/system/js/mootools-core.js" type="text/javascript"></script> 19 <script src="/media/system/js/mootools-more.js" type="text/javascript"></script> 20 <script src="/media/system/js/modal.js" type="text/javascript"></script> 21 <script type="text/javascript"> 22 23 window.addEvent('domready', function() { 24 $$('.hasTip').each(function(el) { 25 var title = el.get('title'); 26 if (title) { 27 var parts = title.split('::', 2); 28 el.store('tip:title', parts[0]); 29 el.store('tip:text', parts[1]); 30 } 31 }); 32 var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: false}); 33 }); 34 window.addEvent('domready', function() { 35 SqueezeBox.initialize({}); 36 SqueezeBox.assign($$('a.modal'), { 37 parse: 'rel' 38 }); 39 }); 40 </script> 41 42 43 <!-- The following five lines load the Blueprint CSS Framework (http://blueprintcss.org). If you don't want to use this framework, delete these lines. --> 44 <link rel="stylesheet" href="/templates/atomic/css/blueprint/screen.css" type="text/css" media="screen, projection" /> 45 <link rel="stylesheet" href="/templates/atomic/css/blueprint/print.css" type="text/css" media="print" /> 46 <!--[if lt IE 8]><link rel="stylesheet" href="blueprint/ie.css" type="text/css" media="screen, projection"><![endif]--> 47 <link rel="stylesheet" href="/templates/atomic/css/blueprint/plugins/fancy-type/screen.css" type="text/css" media="screen, projection" /> 48 <link rel="stylesheet" href="/templates/atomic/css/blueprint/plugins/joomla-nav/screen.css" type="text/css" media="screen" /> 49 50 51 <!-- The following line loads the template CSS file located in the template folder. --> 52 <link rel="stylesheet" href="/templates/atomic/css/template.css" type="text/css" /> 53 54 <!-- The following four lines load the Blueprint CSS Framework and the template CSS file for right-to-left languages. If you don't want to use these, delete these lines. --> 55 56 <!-- The following line loads the template JavaScript file located in the template folder. It's blank by default. --> 57 <script type="text/javascript" src="/templates/atomic/js/template.js"></script> 58 </head>

Below is the portion of the page where the sermon is displayed. What has me confused is that I have selected alternate player. Why is the code still showing jwplayer?
Code:
<tr id="sermon0" class="even"> 102 <td class="ss-title"> 103 <img src="/media/com_sermonspeaker/images/play.gif" alt="Play the sermon" onclick="jwplayer().playlistItem(0)" title="Play the sermon" class="icon_play pointer" /> <a href="/index.php/component/sermonspeaker/sermon/1-the-sin-of-booze" title="View Sermon details and listen">The Sin of Booze</a> </td> 104 <td class="ss_col"> 105 <a class="modal" href="/index.php/component/sermonspeaker/speaker/1-billy-sunday?layout=popup&amp;tmpl=component" rel="{handler: 'iframe', size: {x: 700, y: 500}}"><span class="hasTip" title="Billy Sunday::&lt;img src=&quot;http://demo16.network211.com/components/com_sermonspeaker/media/default_speaker.jpg&quot; alt=&quot;Billy Sunday&quot;&gt;">Billy Sunday</span></a> </td> 106 <td class="ss_col"> 107 Tuesday, 28 March 2006 </td> 108 <td class="ss_col"> 109 <a href="/index.php/component/sermonspeaker/serie/1-general-topics"> 110 General Topics </a> 111 </td> 112 </tr>
Last edit: 06 Jul 2011 18:22 by Keith Sorbo. Reason: added code

Please Log in or Create an account to join the conversation.

Time to create page: 0.181 seconds
Powered by Kunena Forum