PDA

View Full Version : vBulletin CMS Widgets - [WIDGET] Slider


Pages : [1] 2

cory_booth
01-22-2010, 10:00 PM
Widget Slider - Frontpage Slide Show.

Demo: http://demo.webdeveloperplus.com/featured-content-slider/

This is based on the demo above. OK this is my first mod and I know the coding really sucks! But I thought I would get this out and see if anyone want to improve on it.
This is one of those frontpage slide shows that pulls your attachment and data from specified forums.

I hope this works for you.

Install:

Edit slider.php and at line 100:

$forumid - set the forum to pull slides
$limit - set the number of posts
$chars - set the total number of characters
$words - set total number of words

Upload Files.

Create PHP Widget and inser the following code:

ob_start();
echo '<div>';
echo '<center>';
require_once './clientscript/slider/slider.php';
echo '</center>';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();

cory_booth
01-22-2010, 11:49 PM
NOTE: This mod uses the jquery javascript so if you load it already for other plugins (i.e. cometchat) then look to see if you need to load it with the script.

mandingo
01-22-2010, 11:59 PM
Looks promising.Any way to get this to work on the forum front page?

ManagerJosh
01-23-2010, 12:24 AM
I'm seeing this tagged a CMS widget, so exactly what are we pulling from a forum when we have no original forum post with attachments per-se for our CMS articles?

cory_booth
01-23-2010, 12:43 AM
Looks promising.Any way to get this to work on the forum front page?

Perhaps, however I am still learning.
I need to template a bunch of this stuff and then do a hook.
I'd like to make it a plugin so you don't have to edit the php.

This is all stuff I will try to do...

cory_booth
01-23-2010, 12:44 AM
I'm seeing this tagged a CMS widget, so exactly what are we pulling from a forum when we have no original forum post with attachments per-se for our CMS articles?

I guess I see your point, but for me... My Articles start off as forum posts in the "Current Events" forum. Then I Post as Article...

I guess some people don't use stuff this way so, perhaps this isn't a good idea for your site.

mandingo
01-23-2010, 12:53 AM
Perhaps, however I am still learning.
I need to template a bunch of this stuff and then do a hook.
I'd like to make it a plugin so you don't have to edit the php.

This is all stuff I will try to do...

I'll keep watch.if I can think of any way to help i'll send ideas your way but i'm not a big coder either.

winstone
01-23-2010, 12:54 AM
if you ever decide to do it using YUI, see this example http://www.lutsr.nl/yui/image%20slideshow/

you will need to change a fair bit of stuff tho

valendono
01-23-2010, 01:02 AM
any forum example ?

pablete
01-23-2010, 01:06 AM
Good mod but i have a problem with....

Not show the images from post in features and

My forum is on folder /forum, if you put on a title of one those post featured show me an error, because the links put http://web.com/showthread.php?t=323 an not http://web.com/forum/showthread.php?t=323...

Why can i fixed?

Thank's

Sleeter
01-23-2010, 06:05 AM
Slideshow is working but images are causing all kinds of strange display (breaking out of the frame). Needs to be able to auto re-size images or only show portions of images and fill the entire frame. Cool start though. I am desperate for a slideshow like this.

Any idea how could I go about getting rid of the small preview images section completely?

sean-zigster
01-23-2010, 06:32 AM
Could we not have this showing certain albums or is there another mod out there that doe this ?

fourat
01-23-2010, 01:06 PM
thank you so much

ywwz
01-23-2010, 01:06 PM
Such a good idea.

Datenpapst
01-23-2010, 02:00 PM
actually i am just using your widget code, because already got a working slideshow software, but when i use it, somehow the forum goes to the left and the size of the font becomes smaller. Maybe some tags not closed or something missing?

dacho
01-23-2010, 02:26 PM
we can use it also on the CMS with CMS content ?

cory_booth
01-23-2010, 02:45 PM
any forum example ?
Sorry, this was for the CMS and I certainly have a long way to go before it is ready to template and use hooks to place in the forum home.

Good mod but i have a problem with....

Not show the images from post in features and

My forum is on folder /forum, if you put on a title of one those post featured show me an error, because the links put http://web.com/showthread.php?t=323 an not http://web.com/forum/showthread.php?t=323...

Why can i fixed?

Thank's

Opps... Yep this is why I put this out here for the pros... The code is set for no /forum/

So to fix, check slider.php

Find these two lines:
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];

and make:
$link = "../forum/showthread.php?t=".$threadid."";
$imagepath = "../forum/attachment.php?attachmentid=".$pic['attach'];

You may need to adjust this line:
require_once('./includes/class_bbcode.php');

as well

Slideshow is working but images are causing all kinds of strange display (breaking out of the frame). Needs to be able to auto re-size images or only show portions of images and fill the entire frame. Cool start though. I am desperate for a slideshow like this.

Any idea how could I go about getting rid of the small preview images section completely?

1. Images, yeah I make sure my event posts have 400px or less... I'll have to investigate resizing...

2. Drop the tabs... Hmmm, try this: near the bottom of slider.php.
between tabhtml and centerhtml add

tabhtml ='';

actually i am just using your widget code, because already got a working slideshow software, but when i use it, somehow the forum goes to the left and the size of the font becomes smaller. Maybe some tags not closed or something missing?


So you mean you are pulling in another .php file? Hmmm... No I have one div and one center and both are closed at the end.
You could simply drop the div and center statements and see if that helps?

we can use it also on the CMS with CMS content ?
That'd be great, but not right now...
It pulls from a forum and not the CMS.




NOTE:
Folks thanks for the feedback and I am truly sorry if this is a struggle. Again, I had this and other ideas of mine posted in the Programming section here but I got no feed back... So I posted this here to see what people thought.

I will do my very best to get this thing up to snuff, but this is also tagged as a free project so if someone else is faster at this than me - go for it...

cory_booth
01-23-2010, 02:48 PM
actually i am just using your widget code, because already got a working slideshow software, but when i use it, somehow the forum goes to the left and the size of the font becomes smaller. Maybe some tags not closed or something missing?

Ah... Are you pulling in any portion of the php file?
I have a lot of CSS in there - perhaps that is the issue?

Sleeter
01-24-2010, 03:50 AM
First of all thank you so much for putting this out. I've been working with it for a day now and have got it to a point where I can implement on my site. Graphically it is fantastic! Just what I was looking for. Had to make several adjustments to the PHP and CSS but nothing to difficult.

The way I have implemented this is to set up a private forum. When I get some good content (with nice photos) I copy the posts to the private forum. I then crop the photo to 650x320 and re-attach. The only problem I still have is the links from the thread title in the slideshow to the thread it came from. I want to remove that link completely since members will not be able to see the private forum. Any idea how to accomplish that?

Again, thanks so much for sharing. I had a slideshow like this on my 3.8 site and my members really missed it since upgrading to 4.0.

You can see it installed here: www.westcoasthighliners.com

I would love to get feedback.

EDIT: To drop the tabs I changed this tab items in the CSS to display: none

nomoreturn
01-24-2010, 12:54 PM
Sorry, this was for the CMS and I certainly have a long way to go before it is ready to template and use hooks to place in the forum home.



Opps... Yep this is why I put this out here for the pros... The code is set for no /forum/

So to fix, check slider.php

Find these two lines:
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];

and make:
$link = "../forum/showthread.php?t=".$threadid."";
$imagepath = "../forum/attachment.php?attachmentid=".$pic['attach'];

You may need to adjust this line:
require_once('./includes/class_bbcode.php');

as well



1. Images, yeah I make sure my event posts have 400px or less... I'll have to investigate resizing...

2. Drop the tabs... Hmmm, try this: near the bottom of slider.php.
between tabhtml and centerhtml add

tabhtml ='';




So you mean you are pulling in another .php file? Hmmm... No I have one div and one center and both are closed at the end.
You could simply drop the div and center statements and see if that helps?


That'd be great, but not right now...
It pulls from a forum and not the CMS.




NOTE:
Folks thanks for the feedback and I am truly sorry if this is a struggle. Again, I had this and other ideas of mine posted in the Programming section here but I got no feed back... So I posted this here to see what people thought.

I will do my very best to get this thing up to snuff, but this is also tagged as a free project so if someone else is faster at this than me - go for it...

1st of all thanks for giving us such a nice mod i installed and my images are not showed up so i did this as you told and still images not showing please help me to fix this thanks

cory_booth
01-25-2010, 11:28 PM
The only problem I still have is the links from the thread title in the slideshow to the thread it came from. I want to remove that link completely since members will not be able to see the private forum. Any idea how to accomplish that?


Thanks for the compliment and I am sorry you had to spend a day messing around :-)

OK, so for the link:
In the slider.php find this line:
$centerhtml .="<h2><a href='".$link."'>".$titleContent."</a></h2>";
The key is the $link - you can do one or the other:

Change the line to:
$centerhtml .="<h2>".$titleContent."</h2>";
To drop the link reference

or change the line to:
$centerhtml .="<h2><a href='http://yourlink.com'>".$titleContent."</a></h2>";
To insert your own link to send the user

cory_booth
01-25-2010, 11:39 PM
1st of all thanks for giving us such a nice mod i installed and my images are not showed up so i did this as you told and still images not showing please help me to fix this thanks

Hey man... I checked your site:
www.mastdunya.com right?

Your attachment.php is at the root...

So you should drop those changes and put back to:
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];

Did you upload slider to the correct directory? /clientscript

murekhalir
01-26-2010, 01:53 AM
Make it show articles.. instead?

cory_booth
01-27-2010, 06:29 PM
Make it show articles.. instead?

Yeah that would be nice...
I'll look into it in the future...

Bacon Butty
01-28-2010, 11:47 AM
Would be great if it could be placed on the forum home like here (http://www.grandoldteam.com)

murekhalir
01-30-2010, 08:34 AM
There any way to just make it 100% customizable, with a click-through link?

Or does it already do that. I'll give it a try.

nomoreturn
01-30-2010, 04:38 PM
Hey man... I checked your site:
www.mastdunya.com right?

Your attachment.php is at the root...

So you should drop those changes and put back to:
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];

Did you upload slider to the correct directory? /clientscript

Thanks i fix it as you mention and now its working once again thanks for wonderfull slide

Bisha
01-31-2010, 09:21 PM
nice, thanks

TimberFloorAu
01-31-2010, 11:15 PM
Thanks i fix it as you mention and now its working once again thanks for wonderfull slide


Its not working mate

Datenpapst
02-07-2010, 02:47 PM
I am using this one:
http://testforum.c-arena.com/demoslideshow.php

atm as an iframe

My code in the admincp is:

ob_start();

require_once './demoslideshow.php';

$output=ob_get_contents();
ob_end_clean();


Still got the problem :(

pilotxx
02-18-2010, 08:01 PM
Hii,
Great mod! any chance to add this code not as a widget? i want to add it to my forum.

ShawnV
02-19-2010, 05:32 AM
Tagged, watching this one closely. Great idea!

cory_booth
02-20-2010, 03:06 PM
I am using this one:
http://testforum.c-arena.com/demoslideshow.php

atm as an iframe

My code in the admincp is:

ob_start();

require_once './demoslideshow.php';

$output=ob_get_contents();
ob_end_clean();


Still got the problem :(

For yours, since it is a different slide show... I am not sure how it is rendered.
But I would suggest, follow very closely the code's <div> tags and make sure all <table> <tr> <td> <div> tags are open and closed properly.

Sometimes I start in the middle of the code and slowly work my way out until I spot a potential problem.

I am assuming this is the issue... Your slider has some unclosed tags...

cory_booth
02-20-2010, 03:08 PM
Hii,
Great mod! any chance to add this code not as a widget? i want to add it to my forum.

Hmmm... To do this I would have to learn the plugin/template system. :-)

I wish I could pop this out, but I have a lot to learn in that department.

Mastergumble
02-26-2010, 11:08 PM
I am using this one:
http://testforum.c-arena.com/demoslideshow.php

atm as an iframe

My code in the admincp is:

ob_start();

require_once './demoslideshow.php';

$output=ob_get_contents();
ob_end_clean();


Still got the problem :(

How did you fix it?

mmostafayousef
02-27-2010, 09:22 AM
Hey man... I checked your site:
www.mastdunya.com right?

Your attachment.php is at the root...

So you should drop those changes and put back to:
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];

Did you upload slider to the correct directory? /clientscript

I think your lines should look like this:

$link = "./showthread.php?t=".$threadid."";
$imagepath = "./attachment.php?attachmentid=".$pic['attach'];

mmostafayousef
02-27-2010, 09:26 AM
Yeah that would be nice...
I'll look into it in the future...


I suggest you use the class:

vBCms_Search_Result_Article

Located in /packages/vbcms/search/result/content.php (line 28)

Check it and reply please.

Manoel J?nior
02-27-2010, 11:08 AM
I did not understand ... Where pulls the images and the textual?

cory_booth
03-05-2010, 06:06 PM
I did not understand ... Where pulls the images and the textual?

This is designed for you to select a specific forum (in the code).
This will pull the first attachment in that forum...

So the idea is you can have a forum where you make annoucements or reviews and the first post will have an image attached.

Now on your site you can have a "slider" that rotates through those images and links back to the forum posting.

its VERy rough around the edges, but functional...

CFodder
03-05-2010, 07:45 PM
Hmmmm, hate to ask a stupid question but I'm getting used to it.

I've installed the mod and setup where it pulls the posts from but it's not displaying anything, no pictures or the text, just a blank widget. Have checked all the permissions etc so was wondering if there's a js script I should download for this?

Preech
03-06-2010, 03:24 PM
Fodder, I had the same mistake. Make sure the slider file is within clientscript/slider/

CFodder
03-06-2010, 08:11 PM
Hey Preech, yup have double checked and slider.php is definitely there.

bartek24m
03-06-2010, 09:17 PM
how to set shaddow under title and text ?

cory_booth
03-06-2010, 09:49 PM
Hmmmm, hate to ask a stupid question but I'm getting used to it.

I've installed the mod and setup where it pulls the posts from but it's not displaying anything, no pictures or the text, just a blank widget. Have checked all the permissions etc so was wondering if there's a js script I should download for this?

Can you execute the script by navigating to domain.com/clientscript/slider/slider.php?
Any errors?

MichelangeloITA
03-06-2010, 11:06 PM
Hello, is it possible to put CMS' articles in the slide instead of forum posts? ;)

CFodder
03-06-2010, 11:53 PM
Can you execute the script by navigating to domain.com/clientscript/slider/slider.php?
Any errors?

Done that and get this error:

Warning: require_once(./includes/class_bbcode.php) [function.require-once]: failed to open stream: No such file or directory in / ... /clientscript/slider/slider.php on line 96

Fatal error: require_once() [function.require]: Failed opening required './includes/class_bbcode.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in / ... /clientscript/slider/slider.php on line 96

This is the line in the code it's referring to:

require_once('./includes/class_bbcode.php');

put in the full path there and it came up with the following error:


Fatal error: Class 'vBulletinHook' not found in / ... /includes/class_bbcode.php on line 2767

Got me confoosed this has

gurler
03-13-2010, 09:00 AM
i am having this problem too.
is there any solution ?

Done that and get this error:



This is the line in the code it's referring to:



put in the full path there and it came up with the following error:



Got me confoosed this has

lilquit
03-15-2010, 12:37 AM
Does this work with the CMS content ?
Can anyone show me a demo?
Thanks so much

ahmedipa
03-15-2010, 05:55 AM
so nice thank you

Cmangum
03-15-2010, 06:24 PM
Would be interested in using this on the forum page to pull our latest themes that have been posted, but just the 1st post and the images

Preech
03-15-2010, 06:47 PM
You can see this working here. www.djmal.net. Not all the images are in the box right, that's only because I haven't adjusted them.

basilrath
03-18-2010, 07:37 PM
I agree this would be helpful as currently i am using this ...........http://www.tabletennistalk.co.uk/forum/content.php

Ricsca
03-19-2010, 08:56 PM
Demo in vbulletin?

Preech
03-20-2010, 10:47 PM
You mean on the forum, or using the CMS, I'm using 4.0.2 and it works fine for me. My link is correct.

CrosseyedGamer
03-21-2010, 12:21 AM
I have the front page slideshow running on my site if anyone would like to check it out. It is NOT this mod though. It is the actual static version of the frontpage slide show product. As is, it requires you to modify to files directly and upload the images via FTP. not to complicated. PM me if you are interested in this other version.

Wild Bronco
03-30-2010, 10:33 PM
This looks nice,

Could this be made to pull photos from photopost?

www.photopost.com

RivaCom
04-05-2010, 04:29 PM
This working for anyone? It loads kinda for us but it almost looks like the jquery isn't loading as it just has 1 image oversized and no javascript seems to even be working.

gurler
04-06-2010, 10:34 AM
not working

Preech
04-06-2010, 03:24 PM
You have to make sure the images that you use in the attachments are the same size as set in the settings

murekhalir
04-06-2010, 05:19 PM
Is your images broken on the slider? or something wrong with my browser.

I've been needing this solution only if it works =/

Reef Man
04-07-2010, 03:04 PM
Is there any way to delete the small windows at the right as is showed here?

http://www.westcoasthighliners.com/forums/content.php

Thanks

reimic
04-07-2010, 04:26 PM
Is there any way to delete the small windows at the right as is showed here?

http://www.westcoasthighliners.com/forums/content.php

Thanks

how to you use it for the cms??

Reef Man
04-09-2010, 03:54 PM
I am using it as widget.
I am preparing just one forum to call the messages.

I expect to finish the installation today.

cory_booth
04-09-2010, 04:05 PM
To hide the tabs...

Add this to the css encoding:

#featured .ui-tabs-hide{
display:none;
}

cory_booth
04-09-2010, 04:07 PM
Hey ya'll...

Thanks to EVERYONE helping out with this... I currently have someone interested in porting this into a REAL plugin so stay tuned...

I am getting ready to retire from the U.S. Military and have a lot going on... I knew this was coming which is why I threw all my half-baked attempts at something cool up on vb.org and marked them unsupported / reuseable...

For those struggling with this, I appoligize and wish I was better at meeting all the different situations everyone might face....

murekhalir
04-09-2010, 05:14 PM
this is going to be SEXYLICIOUS.

You have my support.

joyboy2001
04-10-2010, 09:08 AM
doesn't work in Opera

Preech
04-12-2010, 07:16 AM
Thanks Cory, I have a little while before I can say retire from the military. But this mod hasn't gave me any problems from the start. Still working for me.

reimic
04-15-2010, 09:56 AM
I am using it as widget.
I am preparing just one forum to call the messages.

I expect to finish the installation today.

could you explan that please? i have no idea how to implement the cms articles..

Reef Man
04-15-2010, 01:11 PM
LEt me explain you what I need to do to make it work.

For this moment, it can not recall articles, just threats from forums.
I had 2 problems:
1.-I bought the suite from Vb, but every time I publish an article, it creates a threat on a selected forum and all the comments goes over that threats. As that is not good on the way I use my my site and I was using VBadvanced before, I need something that solve that problem.
2.-After install it and selected 3 different forums, I saw that only calls messages with attachments, so I need to convert all as attachments to make it work.

Then, with this problems, I created an specific forum where all the message I want to show on the slider will be.
I am permissions on this forum, just to the moderators to publish new threats and all the members cann´t, but all the members can answer there, so with this, I solve all my problems about the comments on the CMS.

Then, I just program to select topics on that forum. All the threats now are with the pictures as attachments, and with the correct size. Now, in that forum I am publishing, the Tanks of the month, the Histories or news about the hobby, and all the contests. The real articles, are on the CMS and that´s it.

Bojangles
04-21-2010, 09:20 PM
1.-I bought the suite from Vb, but every time I publish an article, it creates a threat on a selected forum and all the comments goes over that threats. As that is not good on the way I use my my site and I was using VBadvanced before, I need something that solve that problem.

Check out this mod:

https://vborg.vbsupport.ru/showthread.php?t=230417

I use it on my forums and it works great for keeping the original thread in it's place and the comments are automatically added and referenced from the thread.. and it is posted as an article.

Keep up the good work!

Bouncer222
04-22-2010, 01:10 AM
I tried to add this as a module as i disabled my cmps and use vbadvanced instead at my site www.brotherhoodofgamers.com

I added it as a slidermodule.php file to my modules folder for vbadvanced and enabled it and at the top of the page I get this...

ob_start(); echo '
'; echo '
'; require_once './clientscript/slider/slider.php'; echo '
'; echo '
'; $output=ob_get_contents(); ob_end_clean();


How to add it as a module?

EDIT: FIXED IT by adding <?php to begining of file and ?> to end of it to make it real php...but now its not showing anything on my homepage...its not working.

My forum id is 6 and here is what I put...

$forumid = array(6); // Set forum IDs here.
$limit = '5'; // Limit the displayed slides
$chars = 120; // Character limit for the slide text, e.g. 100 is 100 characters limit.
$words = 20; // Word limit for the slide text, e.g. 20 is 20 words limit

is that right?

ahmedipa
04-23-2010, 09:17 AM
this is what I am looking for thank you

Preech
04-23-2010, 01:47 PM
Bouncer in the php file. It already called for a open and close php. With vbadvanced isn't it possible to create a php module where you can call from a file. Use the code you posted as a template. Try that.

maidos
05-02-2010, 04:35 PM
insstead of using attachment, can you make it so the slideshow use [img] from the threads instead?
this is a better way for those who are using shared host that has limited bandwidth since we can use free image upload site

doopz
05-04-2010, 07:49 PM
One thing I would really love to see if this making use of the CMS articles.
Think this would be possible?

unfv
05-05-2010, 03:16 PM
works Great! UNFV (http://www.unfv.net)

Martyn1983
05-09-2010, 11:05 PM
Hiya,

Just got this working in a basic form. Just wondering:

1) How do you remove the wee preview boxes on the right? So that just the main image changes on its own.

2) How do you resize the width of this?

Cheers,
Martyn

Martyn1983
05-10-2010, 09:49 AM
Got this working a bit better. :)

Couple more queries and I should be done I think. How do yo uset the text so it goes the width of the image? At the moment, it keeps performing line breaks rather than following the width of the image? See www.fiat-scotland.com for an example pic/text.

Also, is there any way to put a slightly darkened background just against the text area, to make the text more readable?

Thanks again,
Martyn

rbegic
05-12-2010, 12:59 AM
just echoing others.. Any chances that this one will be able to be utilized to show previews of CMS articles?

cykelmyggen
05-24-2010, 09:29 AM
Just a noob-question: how do you enter the forum IDs in slider.php. Replace numbers inside the array with forum iDs or...? Tried a variety of solutions, but no one seems to work.
$forumid = array(184,149); // Set forum IDs here.

Preech
05-24-2010, 10:08 AM
That should be it. I don't use this one anymore, I use the other one. But that looks about right.

Jojonas
05-24-2010, 07:58 PM
I want to use it with vbadvanced cmps like there -> http://www.freefrag.com/ but i don't know how to do this. Can me help somebody?

Jonas

madrtr
05-26-2010, 08:56 AM
hey guys, just having one problem with the slider, its not showing the title in the slide.

www.myclan.com.au/index (http://www.myclan.com.au/index)

i might be just blind, but its my first time ever working with any sort of code, could someone please point me in the right direction please.

wickedstangs
06-06-2010, 12:54 PM
Very Nice mod

Reef Man
06-18-2010, 08:47 PM
Hi,
Is there any way to install this on a vbadvanced module?

Thanks.

Reeve of shinra
06-18-2010, 10:07 PM
Reef Man,

Didn't test it but you can create a new php module in vbadvance and add this part of the code into it. The rest of hte instructions should be the same.


ob_start();
echo '<div>';
echo '<center>';
require_once './clientscript/slider/slider.php';
echo '</center>';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();

airheadairbrush
06-21-2010, 07:23 PM
any one gotten this to work with vb cms yet?
so it pulls from new articles in the cms

emath
06-22-2010, 09:28 AM
works with 4.0.4 ??

Reef Man
06-23-2010, 01:45 PM
Yes it works with 4.0.4.

Reef Man,

Didn't test it but you can create a new php module in vbadvance and add this part of the code into it. The rest of hte instructions should be the same.

Hi Reeve of shinra,

I am confused. I am trying to create a php module on vbadvanced, but where do I need to place the code? What file I need to include and where? any module parent?

Sorry, I am not an expert coder. Thanks in advance for your help !

LCN2007
06-24-2010, 01:31 PM
Is this able to be made fluid?

Chalex4
06-27-2010, 10:52 AM
On a test version of my website www.atkcommunity.com I am trying out your content slider and have ALMOST made it completely work on my vBadvanced homepage :).

However, I am having the problem that when the homepage loads, all of the images for the different slides appear beneath each other:

http://img819.imageshack.us/img819/6184/94774237.png

Once the site has finished loading, it appears as it's supposed to:

https://vborg.vbsupport.ru/

I would really appreciate any help you guys can give me that would eliminate this problem. This may mean making it so that the images are loaded progressively, but I wouldn't know how to do this. Maybe just ensuring that the images are always contained in the box would work?

Thanks!

wickedstangs
06-28-2010, 12:55 AM
how do you set permissions? When I am logged off, I can't see the images on the my site. When I log in I can see everything.

Reef Man
06-28-2010, 07:00 PM
On a test version of my website www.atkcommunity.com I am trying out your content slider and have ALMOST made it completely work on my vBadvanced homepage :).

However, I am having the problem that when the homepage loads, all of the images for the different slides appear beneath each other:

http://img295.imageshack.us/img295/4355/63412485.png

Once the site has finished loading, it appears as it's supposed to:

http://img192.imageshack.us/img192/2985/89653240.png

I would really appreciate any help you guys can give me that would eliminate this problem. This may mean making it so that the images are loaded progressively, but I wouldn't know how to do this. Maybe just ensuring that the images are always contained in the box would work?

Thanks!
where do you have it? I can not see it.

Chalex4
06-28-2010, 07:35 PM
where do you have it? I can not see it.

Sorry, it's only viewable for me right now because it's broken!

If you want to try and help me out then just sign up and I'll be happy to make it visable for you :).

Chalex4
06-28-2010, 07:39 PM
I looked at your slider on http://www.acuarios-marinos.com and it looks like you have the same problem. Luckily your forum isn't transparent though so you can only see a very small portion of the next image. Anyway, if you have any ideas I'd love to hear them!


EDIT: Sorry for the double post

JMEWLS`
07-09-2010, 08:04 AM
<a href="http://www.nbadimensions.net" target="_blank">www.nbadimensions.net</a>

The slider isn't working on internet explorer. You can't chose the slide. How do I fix this?

JMEWLS`
07-09-2010, 01:55 PM
<style>
#featured{
width:441px;
padding-right:145px;
padding-left:10px;
padding-bottom:10px;
padding-top:10px;
position:relative;
height:250px;
background:#F2F2F2;
}
#featured ul.ui-tabs-nav{
position:absolute;
left:465px;
top: 10px;
list-style:none;
padding:0; margin:0;
width:123px;
height:70px;
margin:2px 5px;
}
#featured ul.ui-tabs-nav li{
padding:2px;
background-color:#F2F2F2;
font-size:12px;
margin:2px 5px;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:2px 5px;
background:#F2F2F2;
padding:2px;
border:1px solid #eee;
}
#featured ul.ui-tabs-nav li span{
font-size:9px; font-family:Arial, Helvetica, sans-serif;
line-height:18px;
border-color: #000;
}
#featured li.ui-tabs-nav-item a{
display:block;
height:60px;
color:#333; background:#fff;
line-height:20px;
}
#featured li.ui-tabs-nav-item a:hover{
background:#C3222A;
}

#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#2D6294;
}
#featured .ui-tabs-panel{
width:450px;
height:250px;
background:#999; position:relative;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px;
background: url('clientscript/slider/images/transparent-bg.png');
color:#fff;
}
#featured .info h2{
font-size:18px; font-family:Arial, Helvetica, sans-serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Arial, Helvetica, sans-serif; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
#featured .ui-tabs-hide{
display:none;
}
</style>
<!-- jQuery - Do you already load this javascript? (i.e. cometchat) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>

<!-- Rotating Code -->
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<!-- / Rotating Code -->
<?php
global $db,$vbulletin,$sess, $std, $INFO, $vboptions, $session, $bbcode;
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('../forums/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}

$forumid = array(79); // Set forum IDs here.
$limit = '4'; // Limit the displayed slides
$chars = 120; // Character limit for the slide text, e.g. 100 is 100 characters limit.
$words = 20; // Word limit for the slide text, e.g. 20 is 20 words limit
/* ------------------------------ NOTHING TO CHANGE BELOW THIS LINE ------------------------------ */


// Start loop
$forumid = implode(',',$forumid);
$getnews = $db->query_read("SELECT threadid from ".TABLE_PREFIX."thread WHERE attach !='0' AND forumid in($forumid) ORDER by sticky DESC, threadid DESC LIMIT $limit");
while ($news = $db->fetch_array($getnews)) {
$myid[]=$news['threadid'];
}
$tabhtml="";
$contenthtml="";
$div_id = 1;

if ($myid) {
foreach ($myid as $threadid) {
$getpics = $db->query_read("SELECT t.threadid as tid, t.title as title,t.replycount as rcount, p.pagetext as pagetext,a.attachmentid as attach,f.forumid as forumid,f.title as forum from ".TABLE_PREFIX."thread as t
LEFT JOIN ".TABLE_PREFIX."post as p on(t.firstpostid=p.postid)
LEFT JOIN ".TABLE_PREFIX."attachment as a on(a.contentid=p.postid)
LEFT JOIN ".TABLE_PREFIX."forum as f on(t.forumid=f.forumid)
where t.threadid='$threadid'
ORDER BY attach DESC
LIMIT 1");

while ($pic = $db->fetch_array($getpics)) {
$replies=$pic['rcount'];
if ($replies=='1') {
$update="- (1 update)";
} elseif ($replies>'1') {
$update="- ($replies updates)";
} else {
$update="";
}

$pic['pagetext'] = $bbcode_parser->do_parse($pic['pagetext'],false,false,false,false,false,false);
$link = "../forums/showthread.php?t=".$threadid."";
$imagepath = "../forums/attachment.php?attachmentid=".$pic['attach'];
$titleContent = ucwords($pic['title']);
$introtext = $pic['pagetext'];
$pattern = '~\[([^\]]+?)(=[^\]]+?)?\](.+?)\[/\1\]~';
preg_replace($pattern, ' ' , $introtext);
$OpenBrace = '\[';
$CloseBrace = '\]';
$NotACloseBrace = "[^{$CloseBrace}]";
$Multiple = '+?';
$Optional = '?';
$Anything = "(.{$Multiple})";
$StartTag = "{$OpenBrace}({$NotACloseBrace}{$Multiple})(={$NotA CloseBrace}{$Multiple}){$Optional}{$CloseBrace}";
$EndTag = "{$OpenBrace}/\\1{$CloseBrace}";
$FullPattern = "~{$StartTag}{$Anything}{$EndTag}~";
$String = $introtext;
$String = preg_replace($FullPattern, '', $String);
$introtext = $String;

// clean images
$introtext = preg_replace("/<img.+?>/", "", $introtext);
// HTML cleanup
if ($striptags) {
$introtext = strip_tags($introtext, $allowed_tags);
}
// if character limitation is defined
if ($chars) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $chars).'...';
} else {
$introtext = substr($introtext, 0, $chars).'...';
}
}


if(function_exists("mb_string")) {
$titleContent = mb_substr($titleContent, 0, 40).'...';
} else {
$titleContent = substr($titleContent, 0, 40).'...';
}

// if word limitation is defined
if ($words) {
$word_arr = str_word_count($introtext, 2);
$c = 0;
foreach ($word_arr AS $k => $v) {
if ($c == $words) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $k).'...';
} else {
$introtext = substr($introtext, 0, $k).'...';
}
break;
}
$c++;
}
}
$introtext = unhtmlspecialchars($introtext, true);

$tabhtml .= "<li class='ui-tabs-nav-item' id='nav-fragment-".$div_id."'><a href='#fragment-".$div_id."'>";
$tabhtml .="<img src='".$imagepath."' height='56px' width='100px' alt='' />";

$centerhtml .="<div id='fragment-".$div_id."' class='ui-tabs-panel' style=''>";
$centerhtml .="<img src='".$imagepath."' height='254px' width='450px' alt=''/>";
$centerhtml .="<div class='info'>";
$centerhtml .="<h2><a href='".$link."'>".$titleContent."</a></h2>";
$centerhtml .="<p>".$introtext."</p></div></div>";


$div_id++;
}
}

$db->free_result($getpics);
unset($pic);
$db->free_result($getnews);
unset($news);
// End loop

$tabhtml = "<div id=\"featured\"><ul class=\"ui-tabs-nav\">".$tabhtml."</ul>";

echo $tabhtml.$centerhtml."</div>";
}
?>

That is my current code, it's also ruining my sidebar. Can someone please help me correct the code, I'm not good with .php.

JMEWLS`
07-09-2010, 11:53 PM
Anyone? I'm keen to get this done ASAP.

JMEWLS`
07-11-2010, 11:53 PM
:(...

albatarni
07-12-2010, 07:13 PM
when i went to your page, my antivirus detect a virus from your website and here is the info :

http://demo.webdeveloperplus.com/featured-content-slider/

(Infected Link) on : http://webdeveloperplus.com/jquery/featured-content-slider-using-jquery-ui/

The requested URL could not be retrieved

While trying to retrieve the URL:

http://webdeveloperplus.com/jquery/
featured-content-slider-using-jquery-ui/

The following threat was encountered:

The requested object is INFECTED with the following viruses: HEUR:Trojan.Script.Iframer

Flyte
07-13-2010, 12:30 AM
Okay... questions:
This mod will automatically pull images from specified forums?
Will it work with cms content as well?
We have downloaded it and can't get it to work with our 4.0.4 forum. Is there a known issue with 4.0.4?

Thanks in advance!

ss20
07-13-2010, 09:07 AM
I have an error
Fatal error: Class 'vBulletinHook' not found in /var/www/xxxxxxxx/includes/class_bbcode.php on line 3041

Can someone help

JMEWLS`
07-13-2010, 09:19 AM
<style>
#featured{
width:441px;
padding-right:145px;
padding-left:10px;
padding-bottom:10px;
padding-top:10px;
position:relative;
height:250px;
background:#F2F2F2;
}
#featured ul.ui-tabs-nav{
position:absolute;
left:465px;
top: 10px;
list-style:none;
padding:0; margin:0;
width:123px;
height:70px;
margin:2px 5px;
}
#featured ul.ui-tabs-nav li{
padding:2px;
background-color:#F2F2F2;
font-size:12px;
margin:2px 5px;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:2px 5px;
background:#F2F2F2;
padding:2px;
border:1px solid #eee;
}
#featured ul.ui-tabs-nav li span{
font-size:9px; font-family:Arial, Helvetica, sans-serif;
line-height:18px;
border-color: #000;
}
#featured li.ui-tabs-nav-item a{
display:block;
height:60px;
color:#333; background:#fff;
line-height:20px;
}
#featured li.ui-tabs-nav-item a:hover{
background:#C3222A;
}

#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#2D6294;
}
#featured .ui-tabs-panel{
width:450px;
height:250px;
background:#999; position:relative;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px;
background: url('clientscript/slider/images/transparent-bg.png');
color:#fff;
}
#featured .info h2{
font-size:18px; font-family:Arial, Helvetica, sans-serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Arial, Helvetica, sans-serif; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
#featured .ui-tabs-hide{
display:none;
}
</style>
<!-- jQuery - Do you already load this javascript? (i.e. cometchat) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>

<!-- Rotating Code -->
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<!-- / Rotating Code -->
<?php
global $db,$vbulletin,$sess, $std, $INFO, $vboptions, $session, $bbcode;
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('../forums/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}

$forumid = array(79); // Set forum IDs here.
$limit = '4'; // Limit the displayed slides
$chars = 120; // Character limit for the slide text, e.g. 100 is 100 characters limit.
$words = 20; // Word limit for the slide text, e.g. 20 is 20 words limit
/* ------------------------------ NOTHING TO CHANGE BELOW THIS LINE ------------------------------ */


// Start loop
$forumid = implode(',',$forumid);
$getnews = $db->query_read("SELECT threadid from ".TABLE_PREFIX."thread WHERE attach !='0' AND forumid in($forumid) ORDER by sticky DESC, threadid DESC LIMIT $limit");
while ($news = $db->fetch_array($getnews)) {
$myid[]=$news['threadid'];
}
$tabhtml="";
$contenthtml="";
$div_id = 1;

if ($myid) {
foreach ($myid as $threadid) {
$getpics = $db->query_read("SELECT t.threadid as tid, t.title as title,t.replycount as rcount, p.pagetext as pagetext,a.attachmentid as attach,f.forumid as forumid,f.title as forum from ".TABLE_PREFIX."thread as t
LEFT JOIN ".TABLE_PREFIX."post as p on(t.firstpostid=p.postid)
LEFT JOIN ".TABLE_PREFIX."attachment as a on(a.contentid=p.postid)
LEFT JOIN ".TABLE_PREFIX."forum as f on(t.forumid=f.forumid)
where t.threadid='$threadid'
ORDER BY attach DESC
LIMIT 1");

while ($pic = $db->fetch_array($getpics)) {
$replies=$pic['rcount'];
if ($replies=='1') {
$update="- (1 update)";
} elseif ($replies>'1') {
$update="- ($replies updates)";
} else {
$update="";
}

$pic['pagetext'] = $bbcode_parser->do_parse($pic['pagetext'],false,false,false,false,false,false);
$link = "../forums/showthread.php?t=".$threadid."";
$imagepath = "../forums/attachment.php?attachmentid=".$pic['attach'];
$titleContent = ucwords($pic['title']);
$introtext = $pic['pagetext'];
$pattern = '~\[([^\]]+?)(=[^\]]+?)?\](.+?)\[/\1\]~';
preg_replace($pattern, ' ' , $introtext);
$OpenBrace = '\[';
$CloseBrace = '\]';
$NotACloseBrace = "[^{$CloseBrace}]";
$Multiple = '+?';
$Optional = '?';
$Anything = "(.{$Multiple})";
$StartTag = "{$OpenBrace}({$NotACloseBrace}{$Multiple})(={$NotA CloseBrace}{$Multiple}){$Optional}{$CloseBrace}";
$EndTag = "{$OpenBrace}/\\1{$CloseBrace}";
$FullPattern = "~{$StartTag}{$Anything}{$EndTag}~";
$String = $introtext;
$String = preg_replace($FullPattern, '', $String);
$introtext = $String;

// clean images
$introtext = preg_replace("/<img.+?>/", "", $introtext);
// HTML cleanup
if ($striptags) {
$introtext = strip_tags($introtext, $allowed_tags);
}
// if character limitation is defined
if ($chars) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $chars).'...';
} else {
$introtext = substr($introtext, 0, $chars).'...';
}
}


if(function_exists("mb_string")) {
$titleContent = mb_substr($titleContent, 0, 40).'...';
} else {
$titleContent = substr($titleContent, 0, 40).'...';
}

// if word limitation is defined
if ($words) {
$word_arr = str_word_count($introtext, 2);
$c = 0;
foreach ($word_arr AS $k => $v) {
if ($c == $words) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $k).'...';
} else {
$introtext = substr($introtext, 0, $k).'...';
}
break;
}
$c++;
}
}
$introtext = unhtmlspecialchars($introtext, true);

$tabhtml .= "<li class='ui-tabs-nav-item' id='nav-fragment-".$div_id."'><a href='#fragment-".$div_id."'>";
$tabhtml .="<img src='".$imagepath."' height='56px' width='100px' alt='' />";

$centerhtml .="<div id='fragment-".$div_id."' class='ui-tabs-panel' style=''>";
$centerhtml .="<img src='".$imagepath."' height='254px' width='450px' alt=''/>";
$centerhtml .="<div class='info'>";
$centerhtml .="<h2><a href='".$link."'>".$titleContent."</a></h2>";
$centerhtml .="<p>".$introtext."</p></div></div>";


$div_id++;
}
}

$db->free_result($getpics);
unset($pic);
$db->free_result($getnews);
unset($news);
// End loop

$tabhtml = "<div id=\"featured\"><ul class=\"ui-tabs-nav\">".$tabhtml."</ul>";

echo $tabhtml.$centerhtml."</div>";
}
?>

That is my current code, it's also ruining my sidebar. Can someone please help me correct the code, I'm not good with .php.
Anyone?

ss20
07-13-2010, 09:22 AM
if (!is_object($bbcode_parser)){
require_once('../forums/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
As I understand you need to put the full path in line
('../forums/includes/class_bbcode.php');
For example I have require_once('/var/www/xxxxxxxx/includes/class_bbcode.php');

Flyte
07-15-2010, 05:44 PM
I am having trouble pulling the image. And it is only pulling one thread.


<style>
#featured{
width:386px;
padding-right:100px;
position:relative;
border:5px solid #ccc;
height:250px;
background:#fff;
margin-top:7px;
}
#featured ul.ui-tabs-nav{
position:absolute;
top:0;
left:399px;
list-style:none;
padding:0;
margin:0;
width:86px;
}
#featured ul.ui-tabs-nav li{
padding:1px 0; padding-left:2px;
font-size:12px;
color:#666;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:1px 1px;
background:#fff;
padding:0px;
border:1px solid #eee;
}
#featured ul.ui-tabs-nav li span{
font-size:11px; font-family:Verdana;
line-height:18px;
}
#featured li.ui-tabs-nav-item a{
display:block;
height:54px;
color:#333; background:#fff;
margin-bottom:9px;
line-height:20px;
}
#featured li.ui-tabs-nav-item a:hover{
background: #F00;
}
#featured li.ui-tabs-selected{
/*background:url('images/selected-item.gif') top left no-repeat; */
}
#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#333;
}
#featured .ui-tabs-panel{
width:400px; height:250px;
background:#999; position:relative;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px;
background: url('http://theriderlounge.com/mx/images/jq/transparent-bg.png');
}
#featured .info h2{
font-size:18px; font-family:Georgia, serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Verdana; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
#featured .ui-tabs-hide{
display:none;
}


</style>
<!-- jQuery - Do you already load this javascript? (i.e. cometchat) -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>

<!-- Rotating Code -->
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<!-- / Rotating Code -->
<?php
global $db,$vbulletin,$sess, $std, $INFO, $vboptions, $session, $bbcode;
// vBulletin: Parse BBCode
if (!is_object($bbcode_parser)){
require_once('includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}

$forumid = array(2,22,11,4); // Set forum IDs here.
$limit = '2'; // Limit the displayed slides
$chars = 120; // Character limit for the slide text, e.g. 100 is 100 characters limit.
$words = 20; // Word limit for the slide text, e.g. 20 is 20 words limit
/* ------------------------------ NOTHING TO CHANGE BELOW THIS LINE ------------------------------ */


// Start loop
$forumid = implode(',',$forumid);
$getnews = $db->query_read("SELECT threadid from ".TABLE_PREFIX."thread WHERE attach !='0' AND forumid in($forumid) ORDER by sticky DESC, threadid DESC LIMIT $limit");
while ($news = $db->fetch_array($getnews)) {
$myid[]=$news['threadid'];
}
$tabhtml="";
$contenthtml="";
$div_id = 1;

if ($myid) {
foreach ($myid as $threadid) {
$getpics = $db->query_read("SELECT t.threadid as tid, t.title as title,t.replycount as rcount, p.pagetext as pagetext,a.attachmentid as attach,f.forumid as forumid,f.title as forum from ".TABLE_PREFIX."thread as t
LEFT JOIN ".TABLE_PREFIX."post as p on(t.firstpostid=p.postid)
LEFT JOIN ".TABLE_PREFIX."attachment as a on(a.contentid=p.postid)
LEFT JOIN ".TABLE_PREFIX."forum as f on(t.forumid=f.forumid)
where t.threadid='$threadid'
ORDER BY attach DESC
LIMIT 1");

while ($pic = $db->fetch_array($getpics)) {
$replies=$pic['rcount'];
if ($replies=='1') {
$update="- (1 update)";
} elseif ($replies>'1') {
$update="- ($replies updates)";
} else {
$update="";
}

$pic['pagetext'] = $bbcode_parser->do_parse($pic['pagetext'],false,false,false,false,false,false);
$link = "../showthread.php?t=".$threadid."";
$imagepath = "../attachment.php?attachmentid=".$pic['attach'];
$titleContent = ucwords($pic['title']);
$introtext = $pic['pagetext'];
$pattern = '~\[([^\]]+?)(=[^\]]+?)?\](.+?)\[/\1\]~';
preg_replace($pattern, ' ' , $introtext);
$OpenBrace = '\[';
$CloseBrace = '\]';
$NotACloseBrace = "[^{$CloseBrace}]";
$Multiple = '+?';
$Optional = '?';
$Anything = "(.{$Multiple})";
$StartTag = "{$OpenBrace}({$NotACloseBrace}{$Multiple})(={$NotA CloseBrace}{$Multiple}){$Optional}{$CloseBrace}";
$EndTag = "{$OpenBrace}/\\1{$CloseBrace}";
$FullPattern = "~{$StartTag}{$Anything}{$EndTag}~";
$String = $introtext;
$String = preg_replace($FullPattern, '', $String);
$introtext = $String;

// clean images
$introtext = preg_replace("/<img.+?>/", "", $introtext);
// HTML cleanup
if ($striptags) {
$introtext = strip_tags($introtext, $allowed_tags);
}
// if character limitation is defined
if ($chars) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $chars).'...';
} else {
$introtext = substr($introtext, 0, $chars).'...';
}
}


if(function_exists("mb_string")) {
$titleContent = mb_substr($titleContent, 0, 30).'...';
} else {
$titleContent = substr($titleContent, 0, 30).'...';
}

// if word limitation is defined
if ($words) {
$word_arr = str_word_count($introtext, 2);
$c = 0;
foreach ($word_arr AS $k => $v) {
if ($c == $words) {
if(function_exists("mb_string")) {
$introtext = mb_substr($introtext, 0, $k).'...';
} else {
$introtext = substr($introtext, 0, $k).'...';
}
break;
}
$c++;
}
}
$introtext = unhtmlspecialchars($introtext, true);

$tabhtml .= "<li class='ui-tabs-nav-item' id='nav-fragment-".$div_id."'><a href='#fragment-".$div_id."'>";
$tabhtml .="<img src='".$imagepath."' height='25px' width='40px' alt='' /></a></li>";


$centerhtml .="<div id='fragment-".$div_id."' class='ui-tabs-panel' style=''>";
$centerhtml .="<img src='".$imagepath."' alt=''/>";
$centerhtml .="<div class='info'>";
$centerhtml .="<h2><a href='".$link."'>".$titleContent."</a></h2>";
$centerhtml .="<p>".$introtext."</p></div></div>";


$div_id++;
}
}

$db->free_result($getpics);
unset($pic);
$db->free_result($getnews);
unset($news);
// End loop

$tabhtml = "<div id=\"featured\"><ul class=\"ui-tabs-nav\">".$tabhtml."</ul>";

echo $tabhtml.$centerhtml."</div>";
}
?>


Check out our forum home page and you can see that it only shows one thread and does not pull the image.

http://theriderlounge.com/mx/forum/content.php

Link to the thread:

http://theriderlounge.com/mx/forum/showthread.php?184-Help-Flyte-Choose-Their-Calendar-Cover-Gir

thanks!

JMEWLS`
07-16-2010, 03:26 AM
Put the attachment on the initial post and say what you see.

Flyte
07-16-2010, 03:40 AM
Put the attachment on the initial post and say what you see.

okay, i did that

robster1225
07-20-2010, 02:54 PM
Is there something similar to this that will show CMS articles?

rares.stanescu
08-03-2010, 06:32 AM
Is there something similar to this that will show CMS articles?

I would be interested in this feature too

bandare
08-04-2010, 04:02 PM
Is there something similar to this that will show CMS articles?

ditto... have been after this since the CMS came out. I think it's something that should be an integral part of todays CMS!

CFodder
08-05-2010, 09:48 AM
As I understand you need to put the full path in line
('../forums/includes/class_bbcode.php');
For example I have require_once('/var/www/xxxxxxxx/includes/class_bbcode.php');

Have done that, now getting error:

Fatal error: Class 'vBulletinHook' not found in / ... /includes/class_bbcode.php on line 2982

Anyone else come across this and know how to fix it?

KevinL
08-05-2010, 11:07 AM
Have done that, now getting error:



Anyone else come across this and know how to fix it?


Remove the edit from the bbcode and try that

nicutdk
08-09-2010, 05:49 PM
Hi,

it is possible to put CMS' articles in the slide instead of forum posts?

Best Regards,

ilvikingo
08-10-2010, 09:40 AM
hi can I use this for the article in CMS?

bandare
08-10-2010, 06:06 PM
I have no idea why these sliders are not being made so they do work with CMS. Take www.vbcover.com - a really superb product but only works with forums and not cms. I'd buy the vbcover slider if it worked with the cms well.....

Hope it can be done.

nicutdk
08-11-2010, 11:23 AM
many, many applications works just with forum not with CMS.

I bought VB4 for CMS not for forum. Unfortunately IPB at ~ the same money offers much more.

Xencored
08-14-2010, 10:46 AM
Awesome i like the idea
only problem ive found is that my images are WAY to big for the sliders box :(

basilrath
08-14-2010, 11:43 AM
I agree ....... tried it but images big ........

Its time until a slider pulls from threads etc and cms

Neptun
08-14-2010, 06:19 PM
Is there something similar to this that will show CMS articles?

i hope there will be a possibility to use this with the cms - would be great - a uptodate cms should work with something like this !

ilvikingo
08-27-2010, 02:14 PM
how can I eliminate the right tab with thumbnail to get only the image ?

Veer
08-29-2010, 02:43 AM
Is it possible to use it with insert image bbcode instead of attachments?

gurler
08-29-2010, 09:19 AM
Is it possible to use it with insert image bbcode instead of attachments?


+1 :up:

ilvikingo
08-30-2010, 10:11 AM
noone knows how can I eliminate the right tab with thumbnail to get only the image ?

Bleed0ut
08-30-2010, 08:29 PM
Viking, That question has been asked 5 times and answered 5 times. At least.

On a happier note, anyone gotten this ported for vBa homepage yet? Eager to use it.

Thanks

ilvikingo
09-01-2010, 08:41 AM
BleedOut, if I ask again probably I'm not able to resolve my problem :) If you could spent 2 of your minutes I would like to know how can I eliminate the thumbnail! thanks

myarmy
09-04-2010, 04:15 AM
great idea. but i'm looking for an article slider

Bouncer222
09-10-2010, 09:54 PM
How the hell do you add the jquery for the slider to show up??? Why isn't this posted?? I've been googling for hours without any luck.

Anyone?

bandare
09-11-2010, 06:35 PM
great idea. but i'm looking for an article slider

I've seen so many people post here asking about an article slider. I have no idea why there isn't one for vbcms!

krustyx
09-17-2010, 11:26 AM
For me, its only showing this

%17/%09/%2010

:(

DS MrSinister
09-17-2010, 11:40 AM
For me, its only showing this

%17/%09/%2010

:(

please post your code so i can see what you are trying doing?

krustyx
09-17-2010, 02:31 PM
please post your code so i can see what you are trying doing?

Created a PHP widget

ob_start();
echo '&lt;div&gt;';
echo '&lt;center&gt;';
require_once './clientscript/slider/slider.php';
echo '&lt;/center&gt;';
echo '&lt;/div&gt;';
$output=ob_get_contents();
ob_end_clean();

and i've modified the code in slider.php with

$forumid = array(23); // Set forum IDs here.
$limit = '4'; // Limit the displayed slides
$chars = 120; // Character limit for the slide text, e.g. 100 is 100 characters limit.
$words = 20; // Word limit for the slide text, e.g. 20 is 20 words limit
/* ------------------------------ NOTHING TO CHANGE BELOW THIS LINE ------------------------------ */

nanouniko
09-17-2010, 03:40 PM
Somebody know How resize the image?...

DS MrSinister
09-18-2010, 12:52 AM
Created a PHP widget



and i've modified the code in slider.php with

replace it with this code and see if this works for you.


$output = date(vB::$vbulletin->options['dateformat']) . "<br />\n";
ob_start();
echo '<div>';
echo '<center>';
require_once './clientscript/slider/slider.php';
echo '</center>';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();

krustyx
09-18-2010, 02:20 AM
Its all good with the original code, i made a mistake :( Sorry.

Images are way too big tho ;) Any resizing?

DS MrSinister
09-18-2010, 02:56 AM
if anyone is looking to make this work with vBadvanced CMPS. just download this attachment.
Don't forget to edit lines 20 to 23 to fit your needs.

add a new php module --> name what ever you want too --> File to Include slidermodule.php

---> Use Module Wrapper Template up to you. enjoy

ilvikingo
09-19-2010, 03:21 PM
Hi Mr Sinister do you Know how to eliminate the tabs of the thumbnails?

DS MrSinister
09-19-2010, 03:41 PM
so u don't want the thumbnails images to show? or whole tabs them selfs?

betts02
09-19-2010, 03:51 PM
Where is this getting the images from ?

Would like to use something like this where i can enter my own images and link them to various pages and/or websites

Also can this be made to work on forumhome in various positions ?

Above forums, Below forums, below footer,etc

cheers in advance

basilrath
09-19-2010, 03:58 PM
Pulls from the forum you add in the php file lines 20 - 23

DS MrSinister
09-19-2010, 03:58 PM
Where is this getting the images from ?

Would like to use something like this where i can enter my own images and link them to various pages and/or websites

Also can this be made to work on forumhome in various positions ?

Above forums, Below forums, below footer,etc

cheers in advance


Its set for forumid2. you need to edit the slidermodule.php line 20 to set it for you forumids.

I am sure you can place it other places but i don't know how on doing that sir. sorry

betts02
09-19-2010, 04:04 PM
so i have to have the image in a forum post first ?

And this will call that image ?

What happens if the thread has various images from other members ?

Just dont get how its doing it, sorry

betts02
09-19-2010, 04:09 PM
Can this be set to a stand alone version so you can enter any image you want via the file and the link ?

Bouncer222
09-19-2010, 04:18 PM
you attach images as an attachment to the post, it grabs the image from the first post of that person who created the thread, only attach one image.

ilvikingo
09-20-2010, 07:23 AM
O Yes Mr Sinister, I don't want the thumbnails images to show, how can I do? I wanna see only the images that slides

bandare
09-23-2010, 02:27 PM
if anyone is looking to make this work with vBadvanced CMPS. just download this attachment.
Don't forget to edit lines 20 to 23 to fit your needs.

add a new php module --> name what ever you want too --> File to Include slidermodule.php

---> Use Module Wrapper Template up to you. enjoy

any way to work something for vb suite and their CMS?

DS MrSinister
09-23-2010, 02:58 PM
any way to work something for vb suite and their CMS?

you can use that file i posted but just rename it to slider.php. upload the file to /clientscript/slider/slider.php like it says to do in the first post. but use the code i have below.



ob_start();
echo '<div align="left">';
require_once './clientscript/slider/slider.php';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();


if you like to see it in action for yourself cms and vba cmps

http://www.sinisterslair.com/0index.php <-- vb cms

http://www.sinisterslair.com/index.php <-- vba cmps

bandare
09-23-2010, 03:26 PM
aaah, thanks for that but I was hoping to use with articles, not forum posts :(

Jojonas
09-26-2010, 09:34 AM
it isn't visible on my page. i've edited the lines 20-23. And user module wrapper, too. where's my problem?

DS MrSinister
09-26-2010, 12:54 PM
it isn't visible on my page. i've edited the lines 20-23. And user module wrapper, too. where's my problem?


whats the link to your web site? do you have any images posted in your forumid?

Jojonas
09-26-2010, 02:33 PM
<a href="http://www.learn-seafight.com/cmps_index.php" target="_blank">http://www.learn-seafight.com/cmps_index.php</a>

ok now it's visible but over the header o0

DS MrSinister
09-26-2010, 02:59 PM
did you crate a new page or is that the default page of vba?

Edit.. PS try upgrading to vba 4.0.1 see if that helps at all....

also looks like the welcome block is missing. if it is try adding it back.

Jojonas
09-26-2010, 07:35 PM
Okay the welcome block is active but it doesn't work. And my vB license goes only to 4.0.3 :/

DS MrSinister
09-27-2010, 03:17 AM
Ok do this for me remove and delete all what you did for this mod. and try use the attach file.

login to admincp --> vba CMPS --> Download/Upload Module ---> click Browse find the xml file. choose active YES select the style you want to install this on. then click Submit. after that download the slidermodule.php file thats crates in your modules folder. edit line 20 reuopload and see what happens.

Jojonas
09-27-2010, 01:56 PM
Great it works!!! Thanks!

DS MrSinister
09-27-2010, 01:59 PM
your very welcome. now you need to edit the colors so they match your theme.

too do that just edit slidermodule.php file.

wullieclsfb
09-28-2010, 06:18 AM
Hello could someone post up a step by step guide on how to add this widget i have made several attempts to add this and a few other test widgets to see if i could get them still no luck i have no knowlage on how to do this as i only upgraded to the suite yesturday so i would be gratful if someone would kindly post everything i need to do so i can get this working thank you

DS MrSinister
09-28-2010, 01:22 PM
1. download file from the first page and unzip upload the files.
2. Login in to the Admincp
3. goto vBulletin CMS --> click Widgets.
4. create new widget make PHP Direct Execution name it what you want too. add a description if you like.
5. go back to widget page. click on Configure of the new PHP Direct Execution widget. place this code in that box.


ob_start();
echo '<div align="left">';
require_once './clientscript/slider/slider.php';
echo '</div>';
$output=ob_get_contents();
ob_end_clean();


template name vbcms_widget_slider_page

6. now add a new template called vbcms_widget_slider_page place the code in the new template.


<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3>{vb:raw title}</h3>
</div>
<div class="cms_widget_content">
<table align="center">
<tr>
<td>{vb:raw output}</td>
</tr>
</table>
</div>
</div>
</div>


7. goto vBulletin CMS -- Layout Manager --> edit the layout you are using --> select the new widget you have made. place were you like to have to showed.

wullieclsfb
09-28-2010, 03:17 PM
thank you got it working but how do i get my images to appear the way they do in the demo they just coming up on below each other and not flicking through

DS MrSinister
09-28-2010, 04:15 PM
need a link to your web site to see?

wullieclsfb
09-28-2010, 05:41 PM
<a href="http://www.orangeandpurpleonlineradio.com/content.php" target="_blank">http://www.orangeandpurpleonlineradio.com/content.php</a> this is currently hidden from members till i get it the way i want it but you can access it if you have the link i put two images on just to test it when u go to that page you will see they are directly below each other

DS MrSinister
09-28-2010, 05:54 PM
http://www.orangeandpurpleonlineradio.com/content.php this is currently hidden from members till i get it the way i want it but you can access it if you have the link i put two images on just to test it when u go to that page you will see they are directly below each other

try replacing this code in the slider.php and reuploaded


#featured .ui-tabs-panel{

width:400px; height:250px;

background:#999; position:relative;
}


with this code


#featured .ui-tabs-panel{

width:400px; height:250px;

background:#999; position:relative;
overflow:hidden;

}

wullieclsfb
09-28-2010, 06:05 PM
still doing the same i also put images on again

neverstop
09-29-2010, 07:06 AM
if anyone is looking to make this work with vBadvanced CMPS. just download this attachment.
Don't forget to edit lines 20 to 23 to fit your needs.

add a new php module --> name what ever you want too --> File to Include slidermodule.php

---> Use Module Wrapper Template up to you. enjoy

Hi,

I am having problems with your cmps module. As you can see on my page it is loading the slideshow above the header.

http://www.borispoker.com/index.php?p=test

any thoughts?

DS MrSinister
09-30-2010, 12:15 AM
Hi,

I am having problems with your cmps module. As you can see on my page it is loading the slideshow above the header.

http://www.borispoker.com/index.php?p=test

any thoughts?

make sure Clean File Output is check to yes.. in the module settings

bandare
09-30-2010, 10:57 AM
Mr Sinister, is there an easy way to add CMS articles to the slider?

strudinox
09-30-2010, 02:59 PM
Mr Sinister, is there an easy way to add CMS articles to the slider?

+1

I've been something that does just that for a while now. :up:

DS MrSinister
09-30-2010, 09:10 PM
O Yes Mr Sinister, I don't want the thumbnails images to show, how can I do? I wanna see only the images that slides

Here go sir.. just download and edit line 20. just overwrite this file with the one you had uploaded before... you might have to rename it. not totally sure on the one you used.

bandare* did you try using forumid 3? i am guessing you just want the txt to show?

Midoxp
10-02-2010, 04:24 AM
what shlod i do to make it go to the right forum?
http://www.diablo4arab.com/forum/content.php?2-BESTIARY

LbR
10-02-2010, 04:48 PM
First of all thanks a lot to you for bringing up such a nice widget DS.

I would like to ask few questions.

I have downloaded and uploaded the file from the first post slider.zip and your module to. Is it necessary to keep silder.zip files? I am not sure because when i edited both files both had same configs.

Your widget is operating brilliantly in my forum but i feel that slide has some of problems text not appearing can you check here www.emonx.com

DS MrSinister
10-02-2010, 07:40 PM
what shlod i do to make it go to the right forum?
http://www.diablo4arab.com/forum/content.php?2-BESTIARY

very nice site sir. i would recommend downloading the file above your post it has no right tabs. since your site is a fixed width. just downloaded and rename it slider.php edit line 20 for the forumid you want to pull the information from. then you will have to uploaded to ./clientscript/slider/

hope this helps you out.

First of all thanks a lot to you for bringing up such a nice widget DS.

I would like to ask few questions.

I have downloaded and uploaded the file from the first post slider.zip and your module to. Is it necessary to keep silder.zip files? I am not sure because when i edited both files both had same configs.

Your widget is operating brilliantly in my forum but i feel that slide has some of problems text not appearing can you check here www.emonx.com

thanks sir but is not really my widget. all i did was edited to suite my needs and posted it. are you looking for more text output?

try editing lines 21 - 23 to suite your own needs.

LbR
10-02-2010, 08:09 PM
very nice site sir. i would recommend downloading the file above your post it has no right tabs. since your site is a fixed width. just downloaded and rename it slider.php edit line 20 for the forumid you want to pull the information from. then you will have to uploaded to ./clientscript/slider/

hope this helps you out.



thanks sir but is not really my widget. all i did was edited to suite my needs and posted it. are you looking for more text output?

try editing lines 21 - 23 to suite your own needs.


Oh Common indeed we should call you sir thanks :)

though the common problem you must have noticed is images not displaying as guest cause there is no permission for attachments in Vbulletin admincp :(

DS MrSinister
10-02-2010, 08:31 PM
LbR

also sir You need to upload the images from the first post to images folder.

transparent-bg.png and selected-item.gif

LbR
10-02-2010, 09:57 PM
Done Thanks :)

DS MrSinister
10-02-2010, 09:58 PM
very your welcome!

bandare
10-02-2010, 10:17 PM
bandare* did you try using forumid 3? i am guessing you just want the txt to show?

I haven't. I just see that it's great with forums and no mention for CMS use. Is it difficult to make it work with CMS articles and yes, to include some text?

thanks in advance...

LbR
10-03-2010, 08:33 AM
very your welcome!

You know how to increase the number of words in the slide (Thread Title) Words because its coming half

DS MrSinister
10-03-2010, 01:45 PM
see is by editing line 22 or 102. i not sure which file you are using.. but i think its the $chars value you will have to change. its set at 120. just change it to a higher number and see what happens.

crazymilk
10-06-2010, 03:32 PM
Ok do this for me remove and delete all what you did for this mod. and try use the attach file.

login to admincp --> vba CMPS --> Download/Upload Module ---> click Browse find the xml file. choose active YES select the style you want to install this on. then click Submit. after that download the slidermodule.php file thats crates in your modules folder. edit line 20 reuopload and see what happens.

when i loaded the newsfeed.xml vba CMPS page gets a database error?

ravencr
10-06-2010, 03:44 PM
I'd like to move the transparent black box to the top of the picture, make the picture, text, and black box clickable, and remove the side bar completely. Anybody know what I'd need to do this exactly?

Chris

DS MrSinister
10-06-2010, 09:42 PM
when i loaded the newsfeed.xml vba CMPS page gets a database error?

what version of vbulletin are you using?

crazymilk
10-07-2010, 10:34 AM
what version of vbulletin are you using?

3.8.4

Ahmad110
10-07-2010, 05:39 PM
how can i find, cms id ?
i install this hack to my cms (http://www.bazistation.com/content.php?styleid=1) , but dont work . my vb ver is 4.0.7

DS MrSinister
10-07-2010, 08:36 PM
3.8.4

this for vb4.. i am sure if you edit the code little it should work in vb 3.8

how can i find, cms id ?
i install this hack to my cms (http://www.bazistation.com/content.php?styleid=1) , but dont work . my vb ver is 4.0.7


try forumid 3.

LbR
10-07-2010, 08:40 PM
Hey DS

Any idea how to make the size of slide bit smaller

DS MrSinister
10-07-2010, 08:47 PM
Hey DS

Any idea how to make the size of slide bit smaller

got to edit the CSS code in the slider file.

Ahmad110
10-07-2010, 08:51 PM
hey Ds
I change forum id to 3 , but still not work
see here (http://www.bazistation.com/content.php)
thank's for fast suport

DS MrSinister
10-07-2010, 09:21 PM
hey Ds
I change forum id to 3 , but still not work
see here (http://www.bazistation.com/content.php)
thank's for fast suport

might be a forum permissions or forum option need to be change.

edit ... i am not a really a coder but i will have to look at it and see what i can figure out.

Ahmad110
10-08-2010, 07:36 AM
might be a forum permissions or forum option need to be change.

edit ... i am not a really a coder but i will have to look at it and see what i can figure out.

thanks man . but i create thread , post and images on the cms and dont shown in forum . how can i fix it for slider ?

DS MrSinister
10-09-2010, 02:47 AM
thanks man . but i create thread , post and images on the cms and dont shown in forum . how can i fix it for slider ?

sorry mate this is beyond my knowledge sir.. i would try posting here (https://vborg.vbsupport.ru/forumdisplay.php?f=112) for help and see if someone with more skills can help you.

ahmedipa
10-09-2010, 03:55 AM
I wil try that - thank you so much

ilvikingo
10-09-2010, 11:02 AM
ehi Mr SInister thank you so much for help but the file that you send me it give me an error, can we find another solution?

DS MrSinister
10-09-2010, 12:48 PM
EDIT..

ilvikingo see if this one is any better.. just edit line 102 for your forumid.

ilvikingo
10-09-2010, 02:25 PM
very nice sinister Thanks| the tabs on the right seems went away but now I cannot see any image...

DS MrSinister
10-09-2010, 02:36 PM
very nice sinister Thanks| the tabs on the right seems went away but now I cannot see any image...

looks like you got it working now.. looks real good

ilvikingo
10-09-2010, 03:15 PM
thank you so much Mr SInister how can I thank you?

jrap
10-11-2010, 02:59 AM
Do we have to make the images a specific size, or should it properly be resizing them ?

bongmatinhoc
10-12-2010, 05:18 PM
thank you got it working but how do i get my images to appear the way they do in the demo they just coming up on below each other and not flicking through
http://trentungcayso.net/forum

DS MrSinister
10-12-2010, 07:27 PM
try removing /forum in your file. then reupload the file see if that works.

shri046
10-13-2010, 06:01 PM
Mr Sinister, is there an easy way to add CMS articles to the slider?

First off thanks to the author for this great mod! I installed this on our site with a little tweak to make it work with CMS articles. You can see an example here - http://sportsgamingcentral.com/forum/content.php

Upload the attached file to your clientscripts/slider folder. Just add the section ids to the file before uploading it. Then use this for the widget code. Hope this helps.


ob_start();
require_once './clientscript/slider/recent_section_articles.php';
$output=ob_get_contents();
ob_end_clean();



There is one suggestion I would like to make here. Instead of putting the init variables directly in the slider.php you can set them at the time of setting up the widget. This way you could use different widgets to act as sliders for different forums. I plan to make changes to the CMS article file for a similar use on our forums.

Clinotus
10-14-2010, 05:55 AM
Great mod and great modifications and assistance by DS MrSinister!

One question though, I've got this working with VBACMS, however the images are all HUGE. Anyone else using a similar setup run into the same? Should I only use posts that have adequately sized images?

bongmatinhoc
10-14-2010, 12:33 PM
try removing /forum in your file. then reupload the file see if that works.

I don't understand.

DS MrSinister
10-14-2010, 01:37 PM
I don't understand.

See if this one works for you.. i also attach a screen shot of the what the widget looks like.

use this widget code.


ob_start();
require_once './clientscript/slider/slider.php';
$output=ob_get_contents();
ob_end_clean();


Template Name: vbcms_widget_slider_page
Cache refresh time (minutes): 5 <-- This default setting.

Add new template Called - vbcms_widget_slider_page
template code

<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3>{vb:raw title}</h3>
</div>
<div class="cms_widget_content">
<table align="center">
<tr>
<td>{vb:raw output}</td>
</tr>
</table>
</div>
</div>
</div>

bongmatinhoc
10-17-2010, 01:17 AM
See if this one works for you.. i also attach a screen shot of the what the widget looks like.

use this widget code.


ob_start();
require_once './clientscript/slider/slider.php';
$output=ob_get_contents();
ob_end_clean();


Template Name: vbcms_widget_slider_page
Cache refresh time (minutes): 5 <-- This default setting.

Add new template Called - vbcms_widget_slider_page
template code

<div class="cms_widget">
<div class="block">
<div class="cms_widget_header">
<h3>{vb:raw title}</h3>
</div>
<div class="cms_widget_content">
<table align="center">
<tr>
<td>{vb:raw output}</td>
</tr>
</table>
</div>
</div>
</div>


Thanks very much, but no work as same as demo
Link http://trentungcayso.net/forum
images att

DS MrSinister
10-17-2010, 01:24 AM
Looks like the error is gone right?

EDIT

try this!

Login to your admincp --> under --> Vbulletin CMS click on clear CMS cache then click go back then click on verify and repair node table

bongmatinhoc
10-17-2010, 03:15 AM
Trying to have but not as demo

bornoffire
10-21-2010, 06:33 AM
I got text to work but no pictures show up. Any suggestions?

ravencr
10-21-2010, 05:58 PM
Here's an example of how we modified it for our site: http://www.electricvehiclesforum.com

Chris

DS MrSinister
10-21-2010, 09:56 PM
I got text to work but no pictures show up. Any suggestions?

for register members or Unregistered or both?

Martyn1983
10-23-2010, 08:25 PM
Hi, having problems getting this to work - see www.fiat-scotland.com

Really not sure whats causing the breaks. Any help would be awesome!

DS MrSinister
10-23-2010, 08:39 PM
Hi, having problems getting this to work - see www.fiat-scotland.com

Really not sure whats causing the breaks. Any help would be awesome!

see if this works.

Find


// vBulletin: Parse BBCode

if (!is_object($bbcode_parser)){

require_once('./includes/class_bbcode.php');

$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

}


replace with


// vBulletin: Parse BBCode

if (!is_object($bbcode_parser)){

require_once('../upload/includes/class_bbcode.php');

$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());

}


Find

$link = "./showthread.php?t=".$threadid."";

$imagepath = "./attachment.php?attachmentid=".$pic['attach'];


replace with


$link = "../upload/showthread.php?t=".$threadid."";

$imagepath = "../upload/attachment.php?attachmentid=".$pic['attach'];

Martyn1983
10-23-2010, 08:50 PM
Is that in the slider.php file?

DS MrSinister
10-23-2010, 08:54 PM
Yes sir

Martyn1983
10-23-2010, 08:56 PM
Cool, thanks. That's it working again, but not quite looking right!

I know we've been using wider images (as displayed) due to how we had this set up previously, but wondering how to get it set up *properly* so we see hte options on the right but a bit of background colour behind the text?

Cheers for the help so far btw :)

DS MrSinister
10-23-2010, 09:02 PM
In the slider.php file

Find

#featured ul.ui-tabs-nav li

add this too it

overflow:hidden;

Martyn1983
10-23-2010, 09:12 PM
Doesn't appear to have made any changes?

DS MrSinister
10-23-2010, 09:16 PM
Doesn't appear to have made any changes?

can you post the css in your slider.php file?

Martyn1983
10-23-2010, 09:28 PM
<style>
#featured{
width:400px;
padding-right:150px;
position:relative;
border:5px solid #ccc;
height:250px;
background:#fff;
}
#featured ul.ui-tabs-nav{
position:absolute;
top:0; left:400px;
list-style:none;
padding:0; margin:0;
width:150px;
}
#featured ul.ui-tabs-nav li{
padding:1px 0; padding-left:13px;
font-size:12px;
color:#666;
overflow:hidden;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:2px 5px;
background:#fff;
padding:2px;
border:1px solid #eee;
}
#featured ul.ui-tabs-nav li span{
font-size:9px; font-family:Verdana;
line-height:18px;
border-color: #000;
}
#featured li.ui-tabs-nav-item a{
display:block;
height:60px;
color:#333; background:#fff;
line-height:20px;
}
#featured li.ui-tabs-nav-item a:hover{
background:#f2f2f2;
}
#featured li.ui-tabs-selected{
background:url('images/selected-item.gif') top left no-repeat;
}
#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#ccc;
}
#featured .ui-tabs-panel{
width:400px;
height:250px;
background:#999; position:relative;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px;
background: url('images/transparent-bg.png');
color:#fff;
}
#featured .info h2{
font-size:18px; font-family:Georgia, serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Verdana; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
#featured .ui-tabs-hide{
display:none;
}
</style>

DS MrSinister
10-23-2010, 09:32 PM
try this

<style>
#featured{
width:400px;
padding-right:150px;
position:relative;
border:5px solid #ccc;
height:250px;
background:#fff;
}
#featured ul.ui-tabs-nav{
position:absolute;
top:0; left:400px;
list-style:none;
padding:0; margin:0;
width:150px;
}
#featured ul.ui-tabs-nav li{
padding:1px 0; padding-left:13px;
font-size:12px;
color:#666;
overflow:hidden;
}
#featured ul.ui-tabs-nav li img{
float:left; margin:2px 5px;
background:#fff;
padding:2px;
border:1px solid #eee;
}
#featured ul.ui-tabs-nav li span{
font-size:9px; font-family:Verdana;
line-height:18px;
border-color: #000;
}
#featured li.ui-tabs-nav-item a{
display:block;
height:60px;
color:#333; background:#fff;
line-height:20px;
}
#featured li.ui-tabs-nav-item a:hover{
background:#f2f2f2;
}
#featured li.ui-tabs-selected{
background:url('images/selected-item.gif') top left no-repeat;
}
#featured ul.ui-tabs-nav li.ui-tabs-selected a{
background:#ccc;
}
#featured .ui-tabs-panel{
width:400px;
height:250px;
background:#999; position:relative;
}
#featured .ui-tabs-panel .info{
position:absolute;
top:180px; left:0;
height:70px;
background: url('images/transparent-bg.png');
color:#fff;
}
#featured .info h2{
font-size:18px; font-family:Georgia, serif;
color:#fff; padding:5px; margin:0;
overflow:hidden;
}
#featured .info p{
margin:0 5px;
font-family:Verdana; font-size:11px;
line-height:15px; color:#f0f0f0;
}
#featured .info a{
text-decoration:none;
color:#fff;
}
#featured .info a:hover{
text-decoration:underline;
}
#featured .ui-tabs-hide{
display:none;
overflow:hidden;
}
</style>

Martyn1983
10-23-2010, 09:38 PM
Just tried that mate and now nothing :S

(see www.fiat-scotland.com - no boxes, no gray, nothing)

DS MrSinister
10-23-2010, 09:43 PM
Just tried that mate and now nothing :S

(see www.fiat-scotland.com - no boxes, no gray, nothing)

Make sure everything is in your slider.php. looks like your missing stuff.

Martyn1983
10-23-2010, 09:50 PM
Right, think I've got it displaying again but I'm back to where I was before.

That line you said to put in before - overflow:hidden; - what exactly should that do?

Excuse the n00b questions but this really isn't an area I know much about at all!

Cheers,
Martyn

gokhansancar
10-26-2010, 04:12 PM
is this working on 4.0.8?
i tried to install it but it didnt work, maybe i was doing something wrong

gokhansancar
10-26-2010, 11:54 PM
Here is my website
http://devteacher.com
and the problem is, images are too big, it is not resizing the images.

Jojonas
11-07-2010, 07:22 PM
hi,
is it possible to set the '#featured .ui-tabs-panel' (the changing newspicture) section under the '#featured' section, because i want a window-effect?

greetz

zulfiqar.halari
11-19-2010, 08:02 PM
Hi. Can anyone help me with A to Z about how to install it on my main FORUMHOME page. I want the slider for all posts, not just one forum. Please help me.

vash911
11-20-2010, 07:54 PM
Put allot of work into this, by reading all the info the good Dr. Posted. I have a question is it possible to make the slider work with varying resolutions.

Example in 1900x resolution it looks great nestled in the left or right column. But once I got to 1024x768 its to big, and all the elements get pushed away.

PamelaE
11-20-2010, 09:17 PM
Has anyone got an example of this on their site?

CrosseyedGamer
11-20-2010, 09:43 PM
I have the frontpage slideshow on my site. Which is a stand alone thing product that was actually made for Joomla. Have it for months and done lots of tweaking to it. It's not an easy simple thing to make work with VB. If this thing does what the demo shows above it would be a nice thing for VB users but I suspect this is a complicated process.

If anyone at VB is paying attention, this would be a great feature to have built into the CMS!!

While I am no coder if you PM me maybe I can offer some help or at least advice.
I am going to try this on my test site and will report back.

Later.

Sleeter
11-20-2010, 09:52 PM
Has anyone got an example of this on their site?

I've had it running for a while. Works great once I got it all formatted the way I needed it.

http://www.westcoasthighliners.com/

awakenguild
12-02-2010, 08:27 AM
hi !

I installed 4.0.8 pl2 and the slider but it don`t work

first of all:

"require_once './clientscript/slider/slider.php';"

won`t work, i set it up to direkt link. (http://......)
But i get the Error :

Fatal error: Call to a member function query_read() on a non-object in /www/htdocs/w0085c57/site/clientscript/slider/slider.php on line 110

Whats the Problem ? Any Ideas ?

thanks and greetings !

Jojonas
12-02-2010, 12:03 PM
In Google Chrome the feed doesn't fetch the newspicture from the thread.
www.learn-seafight.com.

Jonas

jrap
12-26-2010, 07:47 PM
Hi guys - I was doing some vB upgrades today, and now my slider isn't functioning properly. The error Firefox gives me is

Error: $("#featured > ul") is null

Wondering if anyone else has experienced this?

final kaoss
12-27-2010, 03:18 PM
demo on a live forum?

zulfiqar.halari
12-30-2010, 09:49 AM
Hi. Can I use it on my forum homepage, not CMS homepage.

The Rocketeer
01-06-2011, 05:07 AM
Could anyone please update it? And can I use this with my latest Vb CMS ? Thanks

nacaruncr
01-10-2011, 05:17 PM
It doesn't want to work... I tried to install it in my web -4.0.3- like DS MrSinister's said.... but it doesn't work ... I tried all.. in the line 20... where it say $forumid, it have to change by id's forums and this doesn't work :S

someone can help me, please???

AdrianH
01-11-2011, 05:57 AM
if anyone is looking to make this work with vBadvanced CMPS. just download this attachment.
Don't forget to edit lines 20 to 23 to fit your needs.

add a new php module --> name what ever you want too --> File to Include slidermodule.php

---> Use Module Wrapper Template up to you. enjoy

Could you make this module available at vBadvanced please?

Neptun
01-11-2011, 05:03 PM
is this also working with CMS articles ?! to display from a special section ?!

that would be great

halkum
01-16-2011, 05:35 PM
This is a great Mod!
But... it's not quite working lol.

Apparently the one forum I want to show, won't, and these are the news oriented posts that get promoted to articles; and if I try another forum like sports, it's showing the first four articles in that category, as in from 2006. Odd.

dt-pain
04-24-2011, 10:17 PM
This is now pulling pictures from my album.. It was working fine till I added a album..

Thanks

dang3rzon3
05-20-2011, 09:43 AM
is it possibile to use this mod for article in vbulletin cms?

bandare
05-20-2011, 10:07 AM
I can't believe that there isn't a default slider as part of vbulletin to be honest by this time. It's been asked for yet nothing done!

gamerzhope
06-06-2011, 11:08 PM
how to get rid of that grey background? anyway to make it transparent thanks!

DS MrSinister
06-06-2011, 11:29 PM
forget which setting in the CSS code you need to change. look in the PHP file at the CSS code.

macroforum
06-07-2011, 05:46 AM
Works only with attachments?
I use only tag img :(
Thanks, for now, tagged.
Antonio

gamerzhope
06-07-2011, 02:15 PM
forget which setting in the CSS code you need to change. look in the PHP file at the CSS code.

Thanks I'll keep trying..
I'm guessing to change the height/width of the slider display is also located in the CSS.

But what is the default size that the images should be for the slider?

I read 400px... I'm guess that's 400px for width. But what about in Height?


Thanks Alot!

nestaron
06-07-2011, 08:35 PM
I'm using the slidermodule.php file for vBadvanced. The issue I'm having is that it will not parse the bbcode.

if (!is_object($bbcode_parser)){
require_once('./includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
}

insaneoz
06-07-2011, 09:40 PM
You should use: ForumSlider by Forum-Skins.com

https://vborg.vbsupport.ru/showthread.php?t=264419

It's amazing and automatic!!

insaneoz
06-07-2011, 09:41 PM
You should use: ForumSlider by Forum-Skins.com

https://vborg.vbsupport.ru/showthread.php?t=264419




It just makes more sense to be automatic