vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=246)
-   -   Forum Home Enhancements - [CM] FaceBook SlideBox (LikeBox) (https://vborg.vbsupport.ru/showthread.php?t=286333)

ChiNa 09-03-2012 02:41 AM

Quote:

Originally Posted by simonhind (Post 2362048)
hi developer this suites my website perfectly but i have a question
Get it as Twitter SlideBox. Click HERE! (NEW)

^
the link doesn't work, and found it another way, but when using both together it only fb like box works



Here you go, *I will fix tha*

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


IF YOU NEEDED ANY HELP ELSE THAN THAT, LET ME KNOW

jeffand77 11-02-2012 05:28 AM

I tried multiple ways to get the fb and twitter slider to work together but it constantly created an issue with the forumdisplay template. I was unable to reply or create a new thread. The text box would not load. So I had to reload the original template. Any thoughts of HOW to make these two slider co-exist? It doesnt seem right to have 1 without the other. I did edit the height of the facebook feed (iframe) from 600 to 260 to fit within a typical laptop screen. Could this be the cause?

ChiNa 11-03-2012 11:03 PM

1 Attachment(s)
Quote:

Originally Posted by jeffand77 (Post 2377731)
I tried multiple ways to get the fb and twitter slider to work together but it constantly created an issue with the forumdisplay template. I was unable to reply or create a new thread. The text box would not load. So I had to reload the original template. Any thoughts of HOW to make these two slider co-exist? It doesnt seem right to have 1 without the other. I did edit the height of the facebook feed (iframe) from 600 to 260 to fit within a typical laptop screen. Could this be the cause?

Hi Mate, I think you are doing something wrong! I have used both on my site many many times, and I have helped many others too! If you look on the PAGE befor this, you can see the user "qpurser" installed 3 Of my addons on same side!

Here is the code for having both in same side, give this a try, If note then I will try make another code for you,,

Both Codes Add Below: (Twitter and Faceboo)
PHP Code:

.s_likebox {
float:right;
width:288px;
height:345px;
backgroundurl(images/fbslide.pngno-repeat !important;
display:block;
right:-250px;
padding:0;
position:fixed;
top430px;
z-index:1002;
border-radius:10px;
-
moz-border-radius:10px;
-
webkit-border-radius:10px;
}
div.likeboxwrap {
margin-top:2px;
margin-left:-5px;
background#fff;
width:238px;
height:325px;
overflow:hidden;
border-radius:10px;
-
moz-border-radius:10px;
-
webkit-border-radius:10px;
}
div.likeboxwrap iframe {margin:-1px}  

.
twitbox {
float:right;
width:288px;
height:345px;
backgroundurl(images/twitbox.pngno-repeat !important;
display:block;
right:-250px;
padding:0;
position:fixed;
top180px;
z-index:1002;
border-radius:10px;
-
moz-border-radius:10px;
-
webkit-border-radius:10px;
}
div.twitboxwrap {
margin-top:2px;
margin-left:-5px;
background#fff;
width:238px;
height:325px;
overflow:hidden;
border-radius:10px;
-
moz-border-radius:10px;
-
webkit-border-radius:10px;
}
div.twitboxwrap iframe {margin:-1px

And below if you take a loo I have attached an image posted by qpurser.. And he installed also my SIDE BAR addon, now he has 3 Different Mods on the same side! If you keep having problems you can send me an Admin Login and a Pass, then I will try to fix it for you!

AURFSCAN 11-19-2012 06:15 AM

1 Attachment(s)
Great.. Installed and slightly tweaked to suit my forum style :)

to the left to the left....lol

I have added conditionals to the code also in that only members see the facebook slidebox plus it only displays on forumhome.

I could post the code and image if anyone is interested



:)

ChiNa 11-19-2012 11:16 PM

Quote:

Originally Posted by AURFSCAN (Post 2382463)
I have added conditionals to the code also in that only members see the facebook slidebox plus it only displays on forumhome.

I could post the code and image if anyone is interested
:)

Well done mate, We need more users like you ! As you can see everyone has been very supportive especially on this addon! Thanks a lot mate. appreciate it

Marcin1 11-22-2012 06:48 PM

Quote:

Originally Posted by AURFSCAN (Post 2382463)
Great.. Installed and slightly tweaked to suit my forum style :)

to the left to the left....lol

I have added conditionals to the code also in that only members see the facebook slidebox plus it only displays on forumhome.

I could post the code and image if anyone is interested



:)

I'd be grateful. I've been struggling on this for few hours... Slidebox situated on left side.

AURFSCAN 11-24-2012 11:44 AM

1 Attachment(s)
Quote:

Originally Posted by Marcin1 (Post 2383893)
I'd be grateful. I've been struggling on this for few hours... Slidebox situated on left side.

I havent included the viewing conditionals and this code with the fbslide3 displays as I posted previously.

Code:


<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(function (){
jQuery(".s_likebox").hover(function(){
jQuery(".s_likebox").stop(true, false).animate({left:"0"},"medium");
},function(){
jQuery(".s_likebox").stop(true, false).animate({left:"-250"},"medium");
},500);
return false;
});
</script><style type="text/css">
.s_likebox {
float:left;
width:289px;
height:590px;
background: url(images/fbslide3.png) no-repeat !important;
display:block;
left:-250px;
padding:0;
position:fixed;
top: 30px;
z-index:1002;

}
div.likeboxwrap {
margin-top:-8px;
margin-left:-48px;
background: #f7f7f7;
width:246px;
height:592px;
overflow:hidden;

}
div.likeboxwrap iframe {margin:-0px}

</style>

<div class="s_likebox"><div style="color: rgb(255, 255, 255); padding: 8px 5px 0pt 50px;"><span><div class='likeboxwrap'>PUT YOUR IFRAME CODE HERE</div> </span></div></div>


ChiNa 11-28-2012 11:11 AM

Quote:

Originally Posted by AURFSCAN (Post 2384519)
I havent included the viewing conditionals and this code

@AURFSCAN Good job mate, Thanks for the help and support on my mods! I saw some of your work and I wish you all the best, and congurats with your Designer Rank.. Keep up your great work mate and if you ever needed some help with any coding or designings, let me know!

patrick91 12-10-2012 05:26 PM

My facebook shows duplicate people in the box! What the hack is wrong with mine:P

Lol i see that are currently friends!

Thanks

U-Fig 10-31-2013 12:12 PM

Thank you China-Man! very good one and got them both on my forum home, left side
https://vborg.vbsupport.ru/external/2013/10/1.jpg


All times are GMT. The time now is 09:54 AM.

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.01539 seconds
  • Memory Usage 1,776KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (6)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
  • (10)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