Still doesn't work.... Ok,
So let's start from scratch.
I have this.
PHP Code:
?php
// START of "Frontpage Slideshow" settings
$nameOfSlideshowToDisplay = "myslideshow"; // Enter the name of your slideshow. Slideshows are in folders inside /fpss/slideshows/.
$URLofyoursite = "http://www.******.com"; // Enter your site's URL.
$AbsoluteServerPathofyoursite = "/***/***/public_html"; // Enter the root path of your site on the server.
// do not edit below this line
include_once($AbsoluteServerPathofyoursite."/fpss/mod_fpslideshow.php");
// END of "Frontpage Slideshow" settings
?>
It tells me I should put this where I wish for it to call for the frontpage slideshow. I'd like it just below the navbar. But I can't put PHP in the template. So I've taken that above code and saved it as ss.php.
So I've gone into add plugin, and done the following.
PHP Code:
ob_start();
include('ss.php');
$slider = ob_get_contents();
ob_end_clean();
$preRegister['slider'] = $slider;
vB_Template::preRegister('FORUMHOME', $preRegister);
I've then saved the plugin and gone into FORUMHOME and entered
PHP Code:
{vb:raw slider}
I still have nothing appear. Hopefully with this full view of what I've done, you may be able to assist me in getting this working as It's getting annoying now!