| | #11 (permalink) |
| [+] more user info Join Date: Jan 1970
Posts: 25
Thanks: 3
Thanked 4 Times in 2 Posts
|
FYI, Tried many things to no avail.... change the images... same problem changed the folder.... same problem uninstall the module and reinstalled it... same problem.. the only thing I did not re-do the site from scratch... And I just did that.. Re-started a new db, installed joomla 1.58, installed Mocha template, then superslide module.. And i still face the same problem...... this is too frustrating.. and disappointing. Ahmed Last edited by MrClick; 12-24-2008 at 04:44 PM. |
| |
| This is a Advertisement. Sign up to have these ads removed. | |
| | |
| | #12 (permalink) |
| Staff [+] more user info Join Date: Dec 2008
Posts: 6
Thanks: 1
Thanked 1 Time in 1 Post
|
Ahmed, Im not too sure if the html tags got stipped out here or you just didnt paste them. In any case, if you see the mocha demo, there are two sections of interest to me are the javascript at the top and the module code (that begins at <div id="jjUser1">). Ive pasted the code from the mocha demo below to show you what im looking for: 1. The javascript stuff (found at the top of the page, betweeen the <head> ... </head> tags) Code: <script type="text/javascript" src="http://www.joomlajunkie.com/demo/commercial/mocha/modules/mod_jj_superslider/superslider/jquery-1.2.6.min.js"></script>
<script type="text/javascript" src="http://www.joomlajunkie.com/demo/commercial/mocha/modules/mod_jj_superslider/superslider/jquery.flow.1.2.js"></script>
<script type="text/javascript">
var $jj = jQuery.noConflict();
//preload images function
jQuery.preloadImages = function(){
for(var i = 0; i<arguments.length; i++) {
jQuery("<img>").attr("src", arguments[i]);
}
}
$jj.preloadImages("images/stories/headers/6.jpg","images/stories/headers/5.jpg","images/stories/headers/3.jpg","images/stories/headers/2.jpg","images/stories/headers/1.jpg");
$jj(document).ready(function(){
$jj("#myController_mod137").jFlow({
slides: "#mySlides_mod137",
controller: ".jFlowControl_mod137", // must be class, use . sign
slideWrapper : "#jFlowSlide_mod137", // must be id, use # sign
selectedWrapper: "jFlowSelected_mod137", // just pure text, no sign
width: "958px",
height: "330px",
duration: 400,
prev: ".jFlowPrev_mod137", // must be class, use . sign
next: ".jFlowNext_mod137" // must be class, use . sign
}),
$jj("#slider-content_mod137").hover(function() {$jj(".innerController_mod137").animate({opacity: "show"}, "slow");
},
function() {$jj(".innerController_mod137").animate({opacity: "hide"}, "slow");
});
});
</script>
Module HTML code: HTML Code: <div id="jjUser1"> <div class="jjSpan1 jjClear"> <div class="moduletablenopadding"> <noscript><span class="warning">JoomlaJunkie SuperSlider module requires Javascript to be enabled.</span></noscript> <div id="slider-content_mod137"> <!-- First we setup the user (number) controls --> <div id="myController_mod137"> <div style="display: none;" class="innerController_mod137"> <span class="jFlowControl_mod137 jFlowSelected_mod137"><span class="nav_title_mod137">Mocha</span> |</span> <span class="jFlowControl_mod137"><span class="nav_title_mod137">About Mocha</span> |</span> <span class="jFlowControl_mod137"><span class="nav_title_mod137">Around the world</span> |</span> <span class="jFlowControl_mod137"><span class="nav_title_mod137">Ingredients</span> |</span> <span class="jFlowControl_mod137"><span class="nav_title_mod137">Preparation</span> |</span> </div> </div><!--This is where we add the flow slides --> <div style="overflow: hidden; position: relative; width: 958px; height: 330px;" id="jFlowSlide_mod137"> <div id="jFlowSlide_mod137"></div><!-- End mySlides --> <div style="overflow: hidden; position: relative; width: 4790px; height: 330px; margin-left: 0px;" id="mySlides_mod137"> <!-- Slider START--> <div style="overflow: auto; position: relative; width: 958px; height: 330px; float: left;" class="jFlowSlideContainer"> <div class="jFlowSlideContainer_mod137"> <div class="jFlowSlideContainer"> <div> <img alt="Mocha" src="/demo/commercial/mocha/images/stories/headers/1.jpg"> </div> </div> </div> </div> <div style="overflow: auto; position: relative; width: 958px; height: 330px; float: left;" class="jFlowSlideContainer"> <div class="jFlowSlideContainer_mod137"> <div class="jFlowSlideContainer"> <div> <img alt="About Mocha" src="/demo/commercial/mocha/images/stories/headers/2.jpg"> </div> </div> </div> </div> <div style="overflow: auto; position: relative; width: 958px; height: 330px; float: left;" class="jFlowSlideContainer"> <div class="jFlowSlideContainer_mod137"> <div class="jFlowSlideContainer"> <div> <img alt="Around the world" src="/demo/commercial/mocha/images/stories/headers/3.jpg"> </div> </div> </div> </div> <div style="overflow: auto; position: relative; width: 958px; height: 330px; float: left;" class="jFlowSlideContainer"> <div class="jFlowSlideContainer_mod137"> <div class="jFlowSlideContainer"> <div> <img alt="Ingredients" src="/demo/commercial/mocha/images/stories/headers/5.jpg"> </div> </div> </div> </div> <div style="overflow: auto; position: relative; width: 958px; height: 330px; float: left;" class="jFlowSlideContainer"> <div class="jFlowSlideContainer_mod137"> <div class="jFlowSlideContainer"> <div> <img alt="Preparation" src="/demo/commercial/mocha/images/stories/headers/6.jpg"> </div> </div> </div> </div> </div> </div><!-- End jFlowSlide --> <!-- Lastly we add the previous & next navigation buttons - the images are handled by image replacement in the css --> <div class="dir_buttons_mod137"> <span class="jFlowPrev_mod137">Previous</span><span class="jFlowNext_mod137">Next</span> </div> </div> </div> </div> </div> |
| |
| | #13 (permalink) |
| [+] more user info Join Date: Jan 1970
Posts: 25
Thanks: 3
Thanked 4 Times in 2 Posts
|
I have actually pasted almost the entire code generated. The code generated was too long to paste. So I pasted almost the entire page (the second post) has the start of the code. The third post has the second part, and the first post has the third part where the Superslider is mentioned. The funny thins is that I created an entirely new site, and i still faced the same problem. |
| |
| | #15 (permalink) |
| Staff [+] more user info Join Date: Dec 2008
Posts: 6
Thanks: 1
Thanked 1 Time in 1 Post
|
Ahmed, The module can be located in any position, but in the demo we have used the user1 position (which is always the best for an header). I have sent you a modified copy of the slider module via email. Do give it a try on your demo site when you get the opportunity and report back on the forums if it improves on anything. Best, Zahir Mirza EDIT: Sorry about the previous message, i somehow missed the rest of the code that you had posted. I only saw the first post and not the rest of the code. I can now see all the code that you pasted. Last edited by mozami; 12-26-2008 at 11:00 AM. |
| |
| These users thanked mozami. |
| | #16 (permalink) |
| [+] more user info Join Date: Jan 1970
Posts: 25
Thanks: 3
Thanked 4 Times in 2 Posts
|
Zahir, Thank you for your attention to the problem. I am grateful... Your latest fixed everything, and I practically tested every combination of options that are available. One final thought, this SuperSlider module, is extremely well though of. To combine so many features in such an easy GUI is commendable.This module is the reason why I stopped the further development of our website using another template. Ahmed |
| |
| | #18 (permalink) |
| Co-Pilot & Owner [+] more user info Join Date: Jan 2007 Location: Cape Town
Posts: 973
Thanks: 19
Thanked 497 Times in 379 Posts
|
Hi, The version on the slider spoken about here is the same as the one currently in the club download. It was updated shortly after. The undefinded variables are not errors, they are only php notices showing because your server settings are set to show notices to screen. These notices will be removed from the next update as we finish off some variables but have nothing to do with the current functioning of the template. Is the module not working for you? |
| |
| Has your question been answered? Please mark the response as the best answer. This helps us give you faster support. Are you happy with our support? Please make us smile by writing a short review on Best of Joomla Do you also love Twitter? Follow us on prothemer | jMorph | joomlatips |andyjamesneale |
| This is a Advertisement. Sign up to have these ads removed. | |
| | |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Parse error: syntax error, unexpected T_STRING, ex | truth108 | Rational Magic (discontinued) | 12 | 11-15-2008 01:15 AM |
| Parse Error: syntax error... | echuez | Ario | 3 | 10-14-2008 08:32 AM |
| Parse error: syntax error, unexpected T_STRING | Matt | Rational Magic (discontinued) | 1 | 08-26-2008 11:28 PM |
Forum by vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC1 Downloads powered by vBadvanced Dynamics v1.1.0.