Nice job! I was just looking at Mobius for a new site and was wondering about using the rt_slideshow with it. Any chance you can post the code/files you modified to make it work with Mobius?
I modified the module mod_rt_slideshow.php in the modules folder. Based on a session I set in index.php on the mobius module, I am able to adjust the module. You have to have two seperate image folders that it is pointing to. One with the short images and one for the longer images.
here is the module code. Once you have installe the slideshow, replace the code in mod_rt_slideshow.php with this.
<?php
/**
* @version $Id: mod_whosonline.php 2726 2006-03-09 14:01:19Z stingrey $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license
www.gnu.org/copyleft/gpl.html
GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
now based on what you click, the slideshow should pull from the appropriate image folders. See the module code for the path to the images.
This is the code you will want to change to point to your image directories that you create.
cleanDir('images/slideshow_small');
cleanDir('images/slideshow_large');
Or just create two folders by those names under your root images folder (not the images folder in the template) but the one just underneath the public_html folder (root) and this should work for you.