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)
-   -   Major Additions - vBulletin Social Network 9.5 Gold (Lite) - vBSocial.com (https://vborg.vbsupport.ru/showthread.php?t=266972)

Escaped 06-19-2012 04:54 PM

I had Vbseo for 3.8.4 but have it disabled since I am running 4.1.11 now. And well, I looked through the code and the cause seems to be this template: livenotifications_header.

It mentions the usercp 3 times in its code, guessing once for every type of notification. So when I take out the usercp part, the code is this:<li class="ln_popupmenu " id="livenotifications">
<a onclick="ln_fetchnotifications('comment',event); return false;" class="popupctrl" href="usercp.php{vb:raw session.sessionurl_q}">

it no longer redirects to usercp, but never finishes loading the notifications. And just keeps loading them forever.

daveaite 06-19-2012 05:23 PM

I'll see if I can duplicate.

Testing on 30k user forum, http://buypoe.com

https://vborg.vbsupport.ru/external/2012/06/17.jpg

daveaite 06-19-2012 05:29 PM

Quote:

Originally Posted by LouiseWilson (Post 2340740)
The style/spacing of the drop downs are also "bad" see below from what I have, and this is the default css, surely your default should show correctly.

Mod disabled for the time being until issues are "fixed"

Verified as a glitch. Duplicated.

Escaped 06-19-2012 05:30 PM

Works fine for me on that forum, but is it supposed to make the notification window smaller when you hover over it? Meanwhile, still having the issue on my forums even with the default vbulletin skin.

daveaite 06-19-2012 05:32 PM

Quote:

Originally Posted by Escaped (Post 2341140)
Works fine for me on that forum, but is it supposed to make the notification window smaller when you hover over it? Meanwhile, still having the issue on my forums even with the default vbulletin skin.

If theres no notifications, yes its' suppose to be smaller. Might keep it wide though, cause it may come off as a glitch

qpurser 06-19-2012 05:35 PM

Quote:

Originally Posted by daveaite (Post 2340499)
livenotifications.css template in CSS templates

Tried everything in this css but my headings still stay white as seen in my posting #449

daveaite 06-19-2012 05:41 PM

Quote:

Originally Posted by qpurser (Post 2341144)
Tried everything in this css but my headings still stay white as seen in my posting #449

Looking into: https://vborg.vbsupport.ru/showpost....&postcount=449

daveaite 06-19-2012 05:50 PM

Quote:

Originally Posted by qpurser (Post 2341144)
Tried everything in this css but my headings still stay white as seen in my posting #449

Go to: Style Manager, your theme, edit templates, css templates > livenotifications.css and find:


Change the one in red.
Code:

#livenotifications_list li.ln_title,
                                #livenotifications_list_pm li.ln_title,
                                #livenotifications_list_friend li.ln_title{
                                        font-weight: bold;
                                        color:#fff;
                                        padding-bottom: 5px;
                                        margin-left: 4px;

This will be tweaked for everyone with stylevar variables to match your themes with next fix.

draver 06-19-2012 05:59 PM

Is not working with my customs Templates from purevb or completevb.

https://vborg.vbsupport.ru/external/2012/06/17.jpg

daveaite 06-19-2012 06:02 PM

Quote:

Originally Posted by draver (Post 2341154)
Is not working with my customs Templates from purevb or completevb.

http://information-hunde.de/bilder/notification.JPG

Add this to your additional.css of that theme:

Code:

                        li.livenotifications_loading,
                                li.livenotificationbit,
                                li.livenotifications_link
                                {
                                        width: 330px;
                                        position: relative;
                                        clear:both;
                                }
                               
                                #livenotifications_list,
                                #livenotifications_list_pm,
                                #livenotifications_list_friend{
                                        z-index:9001;
                                        top: 25px; !important;
                                        text-align: justify;
                                }
                                #livenotifications a.selected,
                                #livenotifications_pm a.selected,
                                #livenotifications_friend a.selected
                                {
                                        background: {vb:stylevar toplinks_hilite_background.backgroundColor};
                                }
                               
                                li.livenotifications_loading {
                                        height: 40px;
                                        background-image: url(images/misc/ln-ajax-loader.gif);
                                        background-repeat: no-repeat;
                                        background-position: center center;
                                }
                                li.livenotificationbit {
                                        min-height: 50px;
                                        margin: 0 ;
                                        padding:3px !important;
                                        color: #ffffff !important;
                                        font-size: 13px;
                                        font-family: Tahoma,Calibri,Verdana,Geneva,sans-serif;
                                        cursor: pointer;
                                        overflow: hidden;
                                        border-top: 1px solid #BBB;
                                }
                                li.livenotificationbit a {
                                        display: inline !important;
                                        padding: 0 !important;
                                        margin: 0 !important;
                                        background: inherit !important;
                                }
                                li.livenotificationbit img {
                                        float: left;
                                        margin-right: 4px;
                                }
                               
                                span.livenotifications_num,
                                span.livenotifications_num_pm,
                                span.livenotifications_num_friend {
                                        background-color: #FF0000;
                                        border: 1px solid #FF0000;
                                        border-bottom-left-radius: 2px;
                                        border-bottom-right-radius: 2px;
                                        border-top-left-radius: 2px;
                                        border-top-right-radius: 2px;
                                        margin-left: -8px;
                                }
                                li.livenotifications_link {
                                        background: {vb:stylevar navbar_tab_background.backgroundColor};
                                        color: {vb:stylevar pagination_color};
                                        display: block !important;
                                        font-weight: regular;
                                        font-size: {vb:stylevar header_font};
                                        font-family: Arial,Calibri,Verdana,Geneva,sans-serif;
                                        min-height: 20px;
                                        text-align: center !important;
                                        padding-top:6px !important;
                                        cursor: pointer;
                                        width:330px;
                                }
                                li.livenotifications_link:hover {
                                        color: {vb:stylevar pagination_hover_border};
                                        background: {vb:stylevar imodhilite_backgroundColor};
                                        text-decoration: {vb:stylevar linkhover_textDecoration};
                                        width:330px;
                                }

                                ul.ln_list_full {
                                        margin: 20px 0;
                                        padding: 0;
                                        border-top: 1px dotted #cccccc;
                                        border-bottom: 1px dotted #cccccc;
                                }

                                ul.ln_list_full li {
                                        margin: 20px 20px;
                                        padding: 5px;
                                        border-top: 1px solid #cccccc;
                                }
                                li.livebit {
                                        vertical-align: top;
                                        clear:left;
                                        min-height: 50px;
                                        cursor: pointer;
                                        position: relative;

                                }

                                #livenotifications_list li.red,
                                #livenotifications_list_pm li.red,
                                #livenotifications_list_friend li.red,
                                ul.ln_list_full li.red {
                                        background: {vb:stylevar navbar_popupmenu_link_background};
                                }
                                #livenotifications_list li.red:hover,
                                #livenotifications_list_pm li.red:hover,
                                #livenotifications_list_friend li.red:hover,
                                        ul.ln_list_full li.red:hover {
                                        background-color: {vb:stylevar imodhilite_backgroundColor};
                                }

                                #livenotifications_list li.unread,
                                #livenotifications_list_pm li.unread,
                                #livenotifications_list_friend li.unread,
                                        ul.ln_list_full li.unread {
                                        background-color: #FFFBE2;
                                }
                                #livenotifications_list li.unread:hover,
                                #livenotifications_list_pm li.unread:hover,
                                #livenotifications_list_friend li.unread:hover,
                                ul.ln_list_full li.unread:hover {
                                        background-color: #F9EC9F;
                                }
                                li.livebit img {
                                        float:left;
                                        margin-right:10px;
                                        border: 1px solid #ccc;

                                }

                                .lnpmbit.livenotificationbit .ln_stats {
                                        float: left;
                                        font-size: 24px;
                                        width: 80px;
                                        text-align: center;
                                        padding-top: 5px;
                                        margin-right: 3px;
                                }

                                .lnpmbit.livenotificationbit .ln_context {
                                        font-size: 11px;
                                }
                                .lnpmbit.livenotificationbit .ln_content {
                                        font-size: 11px;
                                        color: #757575;
                                        margin-top: 5px;
                                }
                                .lnpmbit.livenotificationbit .ln_sender_name a{
                                        font-size: 12px;
                                        font-weight: bold;
                                        color: {vb:stylevar link_color};
                                }
                                .lnpmbit.livenotificationbit .ln_sender_name a:hover{
                                        text-decoration : underline;
                                        color: {vb:stylevar link_color};
                                }
                                .ln_content a{
                                        font-size: 12px !important;
                                        color: {vb:stylevar link_color} !important;
                                }
                                .ln_content a:hover{
                                        text-decoration : underline;
                                        color: {vb:stylevar link_color};
                                }
                               
                                .lnpmbit.livenotificationbit .ln_stats span {
                                        font-size: 10px;
                                }
                                /* Overview pagination newer/older links */
                                div.ln_pagination {
                                        border: 1px solid #CEDFEB;
                                        background-color: #F2F6F8;
                                        color: #666;
                                        min-width: 100px;
                                        padding: 5px 10px;
                                }
                               
                                /* Time bits */
                                span.ln_time {
                                        font-size: 11px;
                                        color: #A8A8A8;
                                        position: absolute;
                                        right: 4px;
                                        bottom: 4px;
                                }
                                p.ln_time {
                                        font-size: 11px;
                                        color: #A8A8A8;
                                        margin-top: 5px;
                                }
                                #livenotifications_list li.ln_title,
                                #livenotifications_list_pm li.ln_title,
                                #livenotifications_list_friend li.ln_title{
                                        font-weight: bold;
                                        color:{vb:stylevar body_color};
                                        padding-bottom: 5px;
                                        margin-left: 4px;
                                }
                                #livenotifications_list li.ln_title a,
                                #livenotifications_list_pm li.ln_title a,
                                #livenotifications_list_friend li.ln_title a{
                                        color: {vb:stylevar link_color};
                                        text-decoration : {vb:stylevar link_textDecoration};
                                        background: none !important;
                                        padding-top: 0px !important;
                                        float: right;
                                }
                                #livenotifications_list li.ln_title a:hover,
                                #livenotifications_list_pm li.ln_title a:hover,
                                #livenotifications_list_friend li.ln_title a:hover{
                                        color: {vb:stylevar linkhover_color};
                                        text-decoration : {vb:stylevar linkhover_textDecoration};
                                        background: none !important;
                                        padding-top: 0px !important;
                                        float: right;
                                }
                               
                                .ln_popupmenu{
                                        padding-right: 0px !important;
                                }
                                .livenotificationbit .request_status{
                                        float: left;
                                }
                                .livenotificationbit .actions{
                                        float: right;
                                }
                                .livenotificationbit .actions button{
                                        margin-top: 13px;
                                }



All times are GMT. The time now is 03:41 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.02204 seconds
  • Memory Usage 1,832KB
  • 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
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (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