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)
-   -   Miscellaneous Hacks - Sidebar Anywhere (Formerly Sidebar for Activity Stream) by BOP5 (https://vborg.vbsupport.ru/showthread.php?t=283307)

dimmicosacerchi 06-09-2013 07:09 PM

Thanks for the reply!
This is the link to the form:
http://www.dimmicosacerchi.it/forum/...?do=form&fid=1

This is a custom page:
http://www.dimmicosacerchi.it/forum/kalleis.php

BirdOPrey5 06-09-2013 10:45 PM

What have you tried already that isn't working?

Did you enable template names in HTML comments to find the main template name?

Did you look at the kalleis.php file to find the THIS_SCRIPT value?

t-j 06-10-2013 07:49 AM

Installed on 4.2.0 and working perfectly, good job on this one it takes the bland look from the activity stream

dimmicosacerchi 06-10-2013 01:45 PM

Thank you for your help.
I tried inserting the following codes:
kalleis.php|KALLEIS

and with

kalleis|KALLEIS

But the siderbar not appear.

rumas 06-11-2013 12:14 AM

1 Attachment(s)
The Activity Stream side block in VB 4.2.1 don't seem to work properly with this mod. It displays avatars and post time but no thread link or text from the post or thread.

However the Activity Stream side block functions on the VB default forum home sidebar location, see screen capture below.

Is there a fix for this?

fxdigi-cash 06-11-2013 06:25 AM

Quote:

Originally Posted by dimmicosacerchi (Post 2427105)
Thank you for your help.
I tried inserting the following codes:
kalleis.php|KALLEIS

and with

kalleis|KALLEIS

But the siderbar not appear.

if the page is kalleis.php then you type in the Filter Blocks by pages like this:

Code:

block_html_4:kalleis
nothing else is required, however, if you decided to hide it, all you need is to add page extension to it like this: kalleis.php

I hope it is clear now

P.S> change the number to what block you want to show...

dimmicosacerchi 06-11-2013 11:05 AM

Thank you for the help, but what I ask is to bring up the whole siderbar kalleis.php the page and on the forms of Easy Form.

BirdOPrey5 06-12-2013 04:43 PM

Did you open the file kalleis.php and find the THIS_SCRIPT value?

BirdOPrey5 06-12-2013 04:46 PM

Quote:

Originally Posted by rumas (Post 2427235)
The Activity Stream side block in VB 4.2.1 don't seem to work properly with this mod. It displays avatars and post time but no thread link or text from the post or thread.

However the Activity Stream side block functions on the VB default forum home sidebar location, see screen capture below.

Is there a fix for this?

It appears to be working OK on my 4.2.1 forum: http://www.qapla.com/mods/activity.php (at the bottom)

Did you go to Admin CP -> Languages and Phases -> Find Updated Phrases and provide new/fresh translations of anything listed?

dimmicosacerchi 06-12-2013 05:44 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2427701)
Did you open the file kalleis.php and find the THIS_SCRIPT value?

Thank you very much! I was able to enter it! The problem was the value of the page kalleis wrong (it's called "banner").
Instead I can not do the same thing in the pages of the form of Easy Form
The value of the form.php file is "forms".
An example page is this:
http://www.dimmicosacerchi.it/forum/...?do=form&fid=1
I entered:
forms | forms
forms | forms.php
forms | Easy Forms
forms | forms.php? do = form & fid = 1

But it does not appear. : (Any suggestions?

BirdOPrey5 06-12-2013 05:50 PM

You need to go to Admin CP -> Settings -> Options -> General Settings

Turn Template Names in HTML comments to YES

Then go back to: www.dimmicosacerchi.it/forum/forms.php

In your web browser, view the page source

At the top of the page will be a template name, maybe something like form_view

You then use the template name in the mod, something like

forms | form_view

Once its done and working go back and turn off template names in comments again.

dimmicosacerchi 06-12-2013 06:27 PM

I am so thankful! I solved it in a second with this method!
The name of the template (it may be helpful to others) is "shell_blank."
Thank you thank you thank you! :D:D

rumas 06-12-2013 09:28 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2427705)
It appears to be working OK on my 4.2.1 forum: http://www.qapla.com/mods/activity.php (at the bottom)

Did you go to Admin CP -> Languages and Phases -> Find Updated Phrases and provide new/fresh translations of anything listed?

I have no phrases or translations of any kind. (All phrases are up-to-date.)

If I load activity.php the Activity Stream block does function on my site. However its not functioning in individual forums or in threads.

I noticed you do not have the sidebar turned on for forums or threads on your site. Please enable it on forums and threads on your site to test, or anybody else for that matter.
Maybe its just me and I have to hunt down another issue.

I love the mod, you did a great job and it should be a option in default VB. I just turned off the Activity Stream block until I discover if its me or the mod.

Thanks!

ArcadeSyndicate 07-07-2013 08:37 PM

awesome mod, works fine execpt with ibpro-arcade...

Parse error: syntax error, unexpected T_STRING in /www/htdocs/**********/includes/class_core.php(4716) : eval()'d code on line 2

anybody got a solution?

thanks in advance :)

BirdOPrey5 07-07-2013 08:44 PM

What version of VB are you using exactly? If you disable the sidebar mod the error goes away? It only happens on arcade.php?

What are you using to enable it in the arcade?

Grimes 07-14-2013 03:46 PM

Not sure if this has been discussed, but how can I hide certain blocks from a usergroup using this mod. For example, if I want to have a block containing ads only show to guests etc.. Thanks.

BirdOPrey5 07-14-2013 06:57 PM

This mod doesn't handle displaying different blocks to usergroups just like the built in sidebar does not have that option.

However the same tricks can be used- namely editing the template of the block(s) and using a template conditional to show or hide the content to the usergroup.


Show only to guests
Code:

<vb:if condition="$show['guest']">

** ORIGINAL TEMPLATE CODE HERE

</vb:if>



Show only to members
Code:

<vb:if condition="$show['member']">

** ORIGINAL TEMPLATE CODE HERE

</vb:if>



Show only to mods, admins, super-mods
Code:

<vb:if condition="is_member_of($bbuserinfo, 5,6,7)">

** ORIGINAL TEMPLATE CODE HERE

</vb:if>


Grimes 07-14-2013 07:55 PM

Gotcha. That really helps- thanks for taking the time.

Grimes 07-16-2013 01:14 AM

Worked like a charm and does exactly what I hoped it would. Guests see ads in the sidebar, and registered users don't. There are so many possibilities with this. :D

I have another question, and I realize it's probably a long shot- is it possible for me to make a code edit somewhere to make the sidebar not collapsible in just one forum?

For example: Not collapsible to guests at all. Collapsible for logged in users on forum.php, showthread, and everywhere else except in one forum.

BirdOPrey5 07-17-2013 06:02 PM

In the Sibbar Anywhere Edits plugin is this line that controls who sees the collapse option-

Code:

if (is_member_of($vbulletin->userinfo, explode(',' , $vbulletin->options['bop5sbas_collapsegrooups'])))
So maybe try changing that line to

Code:

if (is_member_of($vbulletin->userinfo, explode(',' , $vbulletin->options['bop5sbas_collapsegrooups'])) AND $GLOBALS['forumid'] != 99)
Where 99 is the forum id of the 1 forum.

Grimes 07-18-2013 12:06 AM

Worked perfectly. Thank you, sir.

natecoupons 07-19-2013 03:07 AM

Quote:

Originally Posted by tagline (Post 2422085)
I've an issue with my template that's not the default one. Some part of the template are missing... how to fix it?

I have the exact same issue. How is this fixed? I absolutely love this mod!

Example: forumhome: http://www.priusconnect.com

The style isn't saying as I move to forumdisplay: http://www.priusconnect.com/forumdis...UseCoupons-101

BirdOPrey5 07-19-2013 10:08 AM

Quote:

Originally Posted by natecoupons (Post 2434365)
I have the exact same issue. How is this fixed? I absolutely love this mod!

Example: forumhome: http://www.priusconnect.com

The style isn't saying as I move to forumdisplay: http://www.priusconnect.com/forumdis...UseCoupons-101

Just to help debug this issue, add this line to your headinclude template and see if it helps:

Code:

{vb:cssfile tagcloud.css}
Let me know if it does.

natecoupons 07-19-2013 11:52 AM

I went ahead and did that, and it doesn't seem to have any affect. I put the line of code at the bottom of the template.

BirdOPrey5 07-19-2013 02:17 PM

OK, cancel that...

In your additional.css template find the code for:

#sidebar_home .blocksubhead

and add !important to the background:

Code:

background:url(images/styles/DeFraction/style/sidebarHeadBG.png) no-repeat top left !important;
Any change?

natecoupons 07-20-2013 05:37 PM

I did that also, and it doesn't seem to make a difference

#sidebar_home .blocksubhead {
background:url(images/styles/DeFraction/style/sidebarHeadBG.png) no-repeat top left !important;
height:18px;
width:315px;
padding:12px;
margin:0;
color:#000000;
font-size:15px;
text-transform:none;

sonasinha 07-24-2013 01:07 PM

First of all, thanks for this wonderful mode.
I'm facing a problem with it because of my mistake, when I installed it on vb 42.1 first time, it worked like charm on all the page with height modifications.

Because of some reason I deleted Disable Collapse of Built In Sidebar from plugin manager, then did uninstall it completely, since then, even after multiple times reinstalls, when ever I do enable any of the option at admincp, like Use Custom Sidebar Drop? and save that.

It gets completely disappeared even from activity stream page, not sure why ?? I love to have it working..

sonasinha 07-24-2013 06:03 PM

Quote:

Originally Posted by sonasinha (Post 2435102)
First of all, thanks for this wonderful mode.
I'm facing a problem with it because of my mistake, when I installed it on vb 42.1 first time, it worked like charm on all the page with height modifications.

Because of some reason I deleted Disable Collapse of Built In Sidebar from plugin manager, then did uninstall it completely, since then, even after multiple times reinstalls, when ever I do enable any of the option at admincp, like Use Custom Sidebar Drop? and save that.

It gets completely disappeared even from activity stream page, not sure why ?? I love to have it working..

Solved.

shellys 07-27-2013 03:58 PM

Tried to install it on a travel Forum and all seems to work well except few URLs showing blank pages only in firefox after installation of this mode. As an example this url http://www.touristsboard.com/united-...to-travel.html shows blank in Firefox but loads good in IE and Chrome.

When i disable this plugin every thing start working well. Also i tried changing style to the default vb but the problem persisted.
Pls tell how to resolve this issue.

BirdOPrey5 07-27-2013 10:59 PM

Quote:

Originally Posted by natecoupons (Post 2434600)
I did that also, and it doesn't seem to make a difference

#sidebar_home .blocksubhead {
background:url(images/styles/DeFraction/style/sidebarHeadBG.png) no-repeat top left !important;
height:18px;
width:315px;
padding:12px;
margin:0;
color:#000000;
font-size:15px;
text-transform:none;

Haven't forgotten... still trying to figure this out.

Quote:

Originally Posted by shellys (Post 2435645)
Tried to install it on a travel Forum and all seems to work well except few URLs showing blank pages only in firefox after installation of this mode. As an example this url http://www.touristsboard.com/united-...to-travel.html shows blank in Firefox but loads good in IE and Chrome.

When i disable this plugin every thing start working well. Also i tried changing style to the default vb but the problem persisted.
Pls tell how to resolve this issue.

The link works fine in Firefox and Waterfox for me. Did you try clearing your cache? Are you on the latest version?

sticky 08-06-2013 04:34 PM

Having a small problem where on the CMS page the article text buttons spill into the sidebar:

https://vborg.vbsupport.ru/external/2014/01/5.png

Any idea how to resolve?

NoMatt3r 08-07-2013 08:16 AM

Can you add the option "Enable on content.php" ?

sticky 08-08-2013 01:36 AM

Quote:

Originally Posted by NoMatt3r (Post 2437604)
Can you add the option "Enable on content.php" ?

Yes.

DemOnstar 08-18-2013 05:57 AM

Another fine creation.....

Very good BOP5....Indeed sir.

Thanks..........

kandhro 09-01-2013 08:27 AM

thanks for a nice mod
nominated for NOTM

Best Regards

LgsOfChampions 09-01-2013 01:14 PM

great mod, appreciate the time an efforts :0)

DemOnstar 09-10-2013 06:11 PM

Hey Joe, I have a minor issue with some white space appearing in the sidebar...
https://www.mightymoiety.com/activity.php

How do I make it go away?

Thanks in advance.......

EDIT: Done it...

DemOnstar 09-12-2013 04:20 PM

EDIT:

Can't reproduce the issue....

Carry on.

1320Nation 09-17-2013 04:45 AM

This has turned out to be a nice plugin BOP5. I rarely rate and vote mod of the month but this one will be getting my vote.

Before asking this question I searched the post with no luck. Anyway I actually need for the sidebar to be disabled on FORUMHOME template. Is this possible to edit somewhere? Reason for this is because I use vBa CMPS for that template in which I have modules that other sidebars do not yet have. I would appreciate any support you can give that will get this taken care of.

1320Nation 09-19-2013 12:51 AM

Quote:

Originally Posted by 1320Nation (Post 2446115)
This has turned out to be a nice plugin BOP5. I rarely rate and vote mod of the month but this one will be getting my vote.

Before asking this question I searched the post with no luck. Anyway I actually need for the sidebar to be disabled on FORUMHOME template. Is this possible to edit somewhere? Reason for this is because I use vBa CMPS for that template in which I have modules that other sidebars do not yet have. I would appreciate any support you can give that will get this taken care of.

How can this be disabled on FORUMHOME template?


All times are GMT. The time now is 03:59 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.01718 seconds
  • Memory Usage 1,840KB
  • 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
  • (8)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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