MyBB Community Forums

Full Version: Slideshow plugin help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

Need some help to make plugin to work on mybb!
will explain - have site with vbulletin 3.8.4 and use there Frontpage slideshow - static version - works fine.

my vbulletin plugin is:
ob_start();
     include('test_slide.php');
     $jwfpss = ob_get_contents();
ob_end_clean();

Hoock location is int_startup (vbulletin mean)

have made one php file - test_slide.php

<?php
// START of "Frontpage Slideshow" settings
$nameOfSlideshowToDisplay = "demoslideshow"; 	
$URLofyoursite = "http://mysite.com/forum"; $AbsoluteServerPathofyoursite= "/home/user/public_html/forum";	
	
	
include_once($AbsoluteServerPathofyoursite."/fpss/mod_fpslideshow.php");
// END of "Frontpage Slideshow" settings
?>

and just put this $jwfpss on my forumhome template under $header .... (variable - mean)
this works fine - you can see this slideshow in action like guest on my site - http://libar-libar.com

need help to get this work on my test mybb site - because will change from vbulletin to mybb!

Thanks for any help!

regards

bosss
Fixed and works fine on mybb!

Bosss