vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   vBulletin CMS Widgets - vFCoders - Featured Content Slider Widget (https://vborg.vbsupport.ru/showthread.php?t=268817)

charlesr 10-31-2012 10:27 AM

Quote:

Originally Posted by craftyone (Post 2377159)
Perfect! Thank you so much, charlesr! Now it works great. Have a nice day/night! :-)

By the way, you have a 300KB image in the background which you almost never see..... Save everyone's bandwidth and ditch it.

Thommy 11-18-2012 08:05 AM

Great mod!!! Works fine!
Is there any way to see more as 5 pics random?

deltahawk5 11-18-2012 08:15 PM

Does this work for 4.2? It would be awesome if it did!

Thommy 11-18-2012 09:38 PM

Yes deltahawk, it works fine on 4.2!
Take a look: www.terra-pannonia.at

macroforum 12-03-2012 10:56 AM

Quote:

Originally Posted by Thommy (Post 2382127)
Is there any way to see more as 5 pics random?

The same request... :)
Installed mod and nominated :)
Antonio

alhidaya 01-20-2013 09:15 PM

Hello

The slider offers only for items cms. Is that there would be an opportunity to have items FORUM?

SVTdrivah 01-22-2013 01:33 PM

Has anyone tried to get video to work with the slider?

SRobbins1977 01-28-2013 02:15 PM

Hello,
We could use a little help. first... GREAT widget, thank you. Its a great first step to our sites redesign. Feel free to check out how we implemented it on our site: http://wdgaming.net/

To the questions...
1) As you can see from the slider, the small previews along the left side are not the same ratio as the main slider. Is there a way to add a spot to change that under the "Content Slider Box Width" in the configuration for the widget?
2) you may also notice that we have more room to include the preview of text. We would like to change the amount of text that is in the previewer. Is it possible to add that to the configuration widget?

If we need to do some php code, we're not too great at it, so the more detail on changing it would help.
Thank you again.

SRobbins1977 01-30-2013 02:53 PM

Quote:

Originally Posted by SRobbins1977 (Post 2400084)
Hello,
We could use a little help. first... GREAT widget, thank you. Its a great first step to our sites redesign. Feel free to check out how we implemented it on our site: http://wdgaming.net/

To the questions...
1) As you can see from the slider, the small previews along the left side are not the same ratio as the main slider. Is there a way to add a spot to change that under the "Content Slider Box Width" in the configuration for the widget?
2) you may also notice that we have more room to include the preview of text. We would like to change the amount of text that is in the previewer. Is it possible to add that to the configuration widget?

If we need to do some php code, we're not too great at it, so the more detail on changing it would help.
Thank you again.

Im assuming no one knows how to do this as I have not been answered. So I went ahead and reverse engineered it myself.

Answer:
To change the size of the preview windows on the left.
  • Go to AdminCP > Styles & Templates > Search in Templates
  • Search for Text > vbcms_widget_cmsfcs_page
  • open the vbcms_widget_cmsfcs_page style(double click)
Now we change the settings of the preview boxes that are on the left of the slider. Back up the template settings as you will have to calculate the pixel positions based on what you change.
  • Find ".cmsfcs_{vb:raw id} ul.ui-tabs-nav{ "
  • --your width setting here sets the width of the preview boxs on the left side of the slider
  • Find ".cmsfcs_{vb:raw id} ul.ui-tabs-nav li img {"
  • --Width setting here changes the width of the image in the preview box on the left side of the slider
Now the title and preview text along the bottom needs to be moved over so it lines up with the preview boxes. Depending on the width you changed the preview boxes too will mean you have to calculate how to move these values over.
  • Find ".cmsfcs_45 .ui-tabs-panel .info {"
  • --Change the "left:" value to the width of the preview images + 15pixels
  • --In the same sectionfind width. you will see an equation something like "math {vb:raw width}-70}" the 70 value shown here needs to be equal to the width value we changed above.

I think I remembered it all. I sill need help with changing the preview text amount and now Im wishing I knew how to make the previews fade in rather than FLICK each time.

Any help on making the fading effect? PLEASE help.

EDIT: By The Way vB.org team... Your indents on bullets are not working... just adding a enter return. so I removed them.

Action-N 02-01-2013 06:32 AM

SRobbins1977, Looks like you found away to make it work. Whether the panoramic images are on purpose or not to be corrected size at that width it be your whole front page. I think if people wanted to use a fixed forum width of 1024 I can share the template with the sizes I made. Have two, one was the default layout (540) an other was (60,40) .

A point I wanted to make I noticed most didn't make a separate layout for their front page from the rest of the cms articles. If you make a new layout named "Front Page" an copy the format over to it an ad the slider on that layout so you can take it off the "Home" layout your using as the article default.

The template is the widget one you made in the CMS templates. The (60,40) width is configured to 735. The (540) widget size is 525, but the width is hard coded to 540. Didn't dare making it the variable as it's make a mess an need all resized. These are both for use an designed for a fixed width forum size of 1024 with the default template. Oh an guess it won't be an easy swap, there is also hard coded colors in these, dual grays (#dadada, #e1e1e1) used from the default theme. Both located near the top of the template. My forum is closed atm, but for a demo I modeled the look used at http://www.superchevy.com/ only difference is gonna be the colors. Added note I made a layout to match their site also I wanna release soon :)

SRobbins1977 02-02-2013 03:07 AM

Quote:

Originally Posted by Action-N (Post 2400972)
SRobbins1977, Looks like you found away to make it work. Whether the panoramic images are on purpose or not to be corrected size at that width it be your whole front page. I think if people wanted to use a fixed forum width of 1024 I can share the template with the sizes I made. Have two, one was the default layout (540) an other was (60,40) .

A point I wanted to make I noticed most didn't make a separate layout for their front page from the rest of the cms articles. If you make a new layout named "Front Page" an copy the format over to it an ad the slider on that layout so you can take it off the "Home" layout your using as the article default.

The template is the widget one you made in the CMS templates. The (60,40) width is configured to 735. The (540) widget size is 525, but the width is hard coded to 540. Didn't dare making it the variable as it's make a mess an need all resized. These are both for use an designed for a fixed width forum size of 1024 with the default template. Oh an guess it won't be an easy swap, there is also hard coded colors in these, dual grays (#dadada, #e1e1e1) used from the default theme. Both located near the top of the template. My forum is closed atm, but for a demo I modeled the look used at http://www.superchevy.com/ only difference is gonna be the colors. Added note I made a layout to match their site also I wanna release soon :)

The size is intended. :) As you can see we have a 1350 wide page, so having a "HD"(not true HD size) style image seemed like a unique interpretation of the modern web page. But we have a long way to go with the design.

Love what you've done with the layout for the widget. Fits right in with the rest of the page. Some inspiration. Thank you for sharing.

Thank you for the tip on not changing the height. Luckly we were happy with is or we would have tried. :)

Konstanta 02-03-2013 02:31 PM

<a href="http://www.vfcoders.com" target="_blank">http://www.vfcoders.com</a> no longer work?

jorge_kai 02-13-2013 03:01 PM

it's possible to make run this mod in vbulletin 3.8? thanks

b0wlninja 02-19-2013 09:00 PM

ummm so in trying to use your slider i am receving an error message in the admin CP

Fatal error: Class 'vBCms_Item_Widget_cmsfcs' not found in /home/reaper/public_html/packages/vbcms/collection/widget.php on line 234

could you help me in what i did wrong?

Martyn1983 03-03-2013 10:31 AM

Love the idea of this mod, but sadly not working on my forum. The overall box, and previews, displays but there is no transition between the images and selecting the thumbnails just refreshes the homepage.

www.fiat-scotland.com

Appreciate any help.

svaghari 03-28-2013 03:15 AM

1) get rid of the blue borders around thumbnails
2) get red of blue border around entire widget
3) transparent gap between thumbnails?

https://vborg.vbsupport.ru/external/2013/03/13.jpg

Christos Teriakis 04-06-2013 05:48 AM

Hello,

I'm trying to remove the description from slider and let only the title there. I did what you said at:
https://vborg.vbsupport.ru/showpost....6&postcount=45

1. File packages\vbcms\widget\cmsfcs.php

2. After:
Code:

$getarticles['preview'] = strip_quotes($getarticles['preview']);
$getarticles['preview'] = htmlspecialchars_uni(fetch_censored_text(
fetch_trimmed_title(strip_bbcode($getarticles['preview'], false, true, true, true),
100)));

I added:
Code:

$getarticles['title'] = fetch_trimmed_title($getarticles['title'], 30);
but this only trims the title to 30 characters and show again the description below. What I want is to show the full title and nothing from description. Where on heck the title is stored? Is it part of pagetext in table cms_article?

Thank you Chris

jshallo 04-06-2013 06:35 PM

Amazing! A Slider that actually WORKS!!!! Thank you.

svaghari 04-14-2013 08:46 PM

Re: post #376

Anyone? Please help :)

kirbz 09-28-2013 06:51 PM

EDIT nm

barcraft 10-09-2013 09:00 PM

Hi all,

I just upgraded from version 4.2.1 to 4.2.2 and I'm throwing in the top of the page the following message:

"Warning: Declaration of vBCms_Widget_cmsfcs::getHash() should be compatible with that of vBCms_Widget::getHash() in ..../packages/vbcms/widget/cmsfcs.php on line 334"

To see the error entering http://www.chileallin.com.

I tried uploading the files again but neither solved.

If anyone has the same error and solved it please help otherwise support someone who can help me, I do not know how to fix it.

Thank you!

ozzy47 10-09-2013 10:20 PM

Try adding this line of code at the top of your config.php under <?:

error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));

DemOnstar 10-17-2013 01:24 PM

Downloaded, tried but without success...
Great idea though..

The widget I think was visible but the contents not..I had a rather pastel blue coloured box appear at the top of a page. Created a new article but nothing appeared..

Thanks...
My be good if it would display in the forums to?

willy888 10-21-2013 06:58 AM

I had that mod a long time but I can't remove it now
I try to uninstall it but there is no widget to remove first
Install it again , and now there is no Widget Type: CMS featured Content slider to create .
How can I uninstall it ?

DemOnstar 10-21-2013 10:10 AM

Is not a widget that you created yourself?

willy888 10-21-2013 10:41 AM

I can't uninstall it , When I do I have ERROR 500 - INTERNAL SERVER ERROR
The Widget CMS featured Content slider is disappear , probably that's why I cant uninstall the plugin.
I try to install it again from the begining ,but now there is no Widget Type: CMS featured Content slider to create .
How can I uninstall it ?

DemOnstar 10-21-2013 02:10 PM

I have to question your method of uninstall..

Are you saying that from admincp/plugin & products you have uninstalled but admincp/plugin & products/plugin manager it is still there?

fallen1087 10-21-2013 02:25 PM

not working... i try all ideas - nothing helpful...

http://epicmmorpg.com/content/#fragment-3

u can check it live ....try to click and u will see what happens......

DemOnstar 10-21-2013 02:41 PM

1 Attachment(s)
I checked your site...

If you are referring to

https://vborg.vbsupport.ru/attachmen...1&d=1382369984

It is ugly...and clicking on things doesn't lead to anywhere..

My personal opinion would be remove it..

fallen1087 10-21-2013 03:34 PM

Quote:

Originally Posted by DemOnstar (Post 2455116)
I checked your site...

If you are referring to



It is ugly...and clicking on things doesn't lead to anywhere..

My personal opinion would be remove it..

hmm i think template showing something wrong for u...for me all is fine and top site block is not on featured content slide...

if i understand correct....

mby u know some another widget to use instead of this..??

DemOnstar 10-21-2013 03:59 PM

Quote:

Originally Posted by fallen1087 (Post 2455122)
mby u know some another widget to use instead of this..??

I wish I did. I like the idea but if it doesn't work, then get rid...

For the most part, I am just sorry I am unable to create these modifications..

willy888 10-21-2013 06:32 PM

Quote:

Originally Posted by willy888 (Post 2455087)
I can't uninstall it , When I do I have ERROR 500 - INTERNAL SERVER ERROR
The Widget CMS featured Content slider is disappear , probably that's why I cant uninstall the plugin.
I try to install it again from the begining ,but now there is no Widget Type: CMS featured Content slider to create .

How can I uninstall it ?

DemOnstar 10-22-2013 05:47 AM

Quote:

Originally Posted by willy888 (Post 2455144)
How can I uninstall it ?

Not sure really but if it isn't doing any harm then leave it...
It is a bit annoying I know..

willy888 10-22-2013 05:53 AM

I CAN'T PUBLISH ANY CONTENT .
It messed up . Of course I want to unistall it ....... it's a problem .
Please find me a solution

SirShaw 10-22-2013 11:18 PM

Quote:

Originally Posted by barcraft (Post 2451416)
Hi all,

I just upgraded from version 4.2.1 to 4.2.2 and I'm throwing in the top of the page the following message:

"Warning: Declaration of vBCms_Widget_cmsfcs::getHash() should be compatible with that of vBCms_Widget::getHash() in ..../packages/vbcms/widget/cmsfcs.php on line 334"

To see the error entering http://www.chileallin.com.

I tried uploading the files again but neither solved.

If anyone has the same error and solved it please help otherwise support someone who can help me, I do not know how to fix it.

Thank you!

^ I too am getting this error and just upgraded to 4.2.2

hawaiibillT 11-03-2013 10:32 PM

thanks for the slider. its working good for me in 4.2.1 pl1 other than not showing up in one section. looking forward to the next version.

rmordico 12-13-2013 10:49 AM

Quote:

Originally Posted by SirShaw (Post 2455428)
^ I too am getting this error and just upgraded to 4.2.2

Yes I have the same Error on my CMS startpage.

Warning: Declaration of vBCms_Widget_cmsfcs::getHash() should be compatible with vBCms_Widget::getHash($widgetid = false, $nodeid = false) in ..../packages/vbcms/widget/cmsfcs.php on line 338

ckgb 12-20-2013 09:47 PM

Would be nice to get it compatible with vBadvanced CMPS.

Manuel94 01-14-2014 10:08 AM

You can insert this slider on the page forumhome?

Elenna 01-21-2014 11:07 PM

Has anyone had luck getting this to work with vBulletin 4.2.2? I am getting the same message:
Quote:

Warning: Declaration of vBCms_Widget_cmsfcs::getHash() should be compatible with vBCms_Widget::getHash($widgetid = false, $nodeid = false) in ..../packages/vbcms/widget/cmsfcs.php on line 338


All times are GMT. The time now is 11:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01758 seconds
  • Memory Usage 1,838KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete