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)
-   -   Profile Enhancements - vMoods aka Mood Manager (AJAX) (https://vborg.vbsupport.ru/showthread.php?t=233336)

BizAdventure 03-01-2010 12:52 PM

Rob,

Interesting...there must be some setting in IE7 that I have not found. The view I have in IE7 is the same view I get in IE8 with compatibility view checked.

If someone knows what setting in IE7 needs to be checked or unchecked, let me know and I will pass it on to my forum users.

Jon

Rob F 03-01-2010 04:57 PM

Sorry Biz, I've no idea about settings or this compatibility view thing you've mentioned.

BizAdventure 03-01-2010 07:21 PM

That is fine...except that is not the problem. I can verify several users with IE8 who do not have Compatibility View checked and still cannot see the icons without a grey box over them, while others who have IE7 can see it! Weird. It MUST be something with the Javascript. Dev or anyone else?

adreen 03-02-2010 11:32 AM

downloaded!
is it possible for me to use my own icons?

masterross 03-03-2010 09:35 PM

I have strange problem!
I had before the 3.8 version of your hack but uninstalled.
Now I installed this version but it shows the mood images from older version and when I try to chose the mood it's just redirect me to index and nothing's changed.
Also I've tried to remove the vbmoods folder and even removed the images are still displaying in navbar ?!?

Any ideas?

Gn_Snake 03-04-2010 11:11 AM

Quote:

Originally Posted by Gn_Snake (Post 1983685)
Nice, i have psd file?

I would be translated into Italian

thanks

masterross 03-04-2010 11:38 AM

@Gn_Snake I have shelley_93x30 in Italian.
Give me your mail if you need them.

@-=Sniper=-
Seems AJAX doesnt work for me :(

Jabong82 03-05-2010 05:05 AM

Quote:

Originally Posted by saghir (Post 1993593)
have a prob

i installed and everything did but there is no vmoods available ,plz see image blow

https://vborg.vbsupport.ru/external/2010/03/84.jpg

can help me

This was actually working fine for me earlier and for some reason it doesn't now. I have the same issue where after I rebuild the templates I get only blank in the navbar, and when I click anything it returns me back to the index.php page.

Anyone know why this may be? Thank you.

Edit: I found the fix for the image problem (had to edit css file with URLs), but I still have the redirect problem. Every time I click an image I am just redirected to the homepage.

I don't have supercharged mod or whatever, but I am not sure why I keep getting redirected. Thank you again.

archet1337 03-06-2010 07:18 AM

I found this on the first page:

Code:

<li><a href="javascript://" class="popupctrl">{vb:phrase vmoods_my_mood} (<span id="vmoods-mine">{vb:var bbuserinfo.vmood}</span>)</a>
<ul class="subnav"> 
  <vb:each from="vmoods_list" value="mood">
    <li class="{vb:var mood}"><a class="vmood" href="index.php?" title="{vb:var mood}">{vb:var mood}</a></li>
  </vb:each>
</ul> 
</li>

I'm using that navbar from HiO iWay theme as well, but when I add the code everything looks ok except for no dropdown menu.. please advice.

Looks like this:
http://www.digi-tech.org/images/dive...s_dropdown.png

Here is the droplinebar.css file
Code:

.droplinebar{
overflow: hidden;
}

.droplinebar ul{
margin: 0;
padding: 0;
float: left;
width: 100%;
font: bold 13px Arial;
background: #464646 url(ht-button.gif) center center repeat-x; /*default background of menu bar*/
}

.droplinebar ul li{
display: inline;
}

.droplinebar ul li a{
float: left;
color: #FFFFFF;
padding: 9px 11px;
text-decoration: none;
}

.droplinebar ul li a:visited{
color: #FFFFFF;
}

.droplinebar ul li a:hover, .droplinebar ul li .current{ /*background of main menu bar links onMouseover*/
color: #9b9b9b;
background: transparent url(ht-over2.png) no-repeat center top;
}

/* Sub level menus*/
.droplinebar ul li ul{
position: absolute;
z-index: 100;
left: 0;
top: 0;
background: #3d3d3d; /*default background of menu bar*/
}

/* Sub level menu links style */
.droplinebar ul li ul li a{
11px Verdana;
padding: 6px;
padding-right: 15px;
margin: 0;
border-bottom: 0px solid #ffffff;
}

.droplinebar ul li ul li a:hover{ /*sub menu links' background color onMouseover */
11px Verdana;
color: #9b9b9b;
}

and droplinebar.cssdroplinemenu.js
Code:

/*********************
//* jQuery Drop Line Menu- By Dynamic Drive: http://www.dynamicdrive.com/
//* Last updated: June 27th, 09'
//* Menu avaiable at DD CSS Library: http://www.dynamicdrive.com/style/
*********************/

var droplinemenu={

arrowimage: {classname: 'downarrowclass', src: 'images/digi/multicss/down.gif', leftpadding: 5}, //customize down arrow image
animateduration: {over: 300, out: 200}, //duration of slide in/ out animation, in milliseconds

buildmenu:function(menuid){
        jQuery(document).ready(function($){
                var $mainmenu=$("#"+menuid+">ul")
                var $headers=$mainmenu.find("ul").parent()
                $headers.each(function(i){
                        var $curobj=$(this)
                        var $subul=$(this).find('ul:eq(0)')
                        this._dimensions={h:$curobj.find('a:eq(0)').outerHeight()}
                        this.istopheader=$curobj.parents("ul").length==1? true : false
                        if (!this.istopheader)
                                $subul.css({left:0, top:this._dimensions.h})
                        var $innerheader=$curobj.children('a').eq(0)
                        $innerheader=($innerheader.children().eq(0).is('span'))? $innerheader.children().eq(0) : $innerheader //if header contains inner SPAN, use that
                        $innerheader.append(
                                '<img src="'+ droplinemenu.arrowimage.src
                                +'" class="' + droplinemenu.arrowimage.classname
                                + '" style="border:0; padding-left: '+droplinemenu.arrowimage.leftpadding+'px" />'
                        )
                        $curobj.hover(
                                function(e){
                                        var $targetul=$(this).children("ul:eq(0)")
                                        if ($targetul.queue().length<=1) //if 1 or less queued animations
                                                if (this.istopheader)
                                                        $targetul.css({left: $mainmenu.offset().left, top: $mainmenu.offset().top+this._dimensions.h})
                                                if (document.all && !window.XMLHttpRequest) //detect IE6 or less, fix issue with overflow
                                                        $mainmenu.find('ul').css({overflow: (this.istopheader)? 'hidden' : 'visible'})
                                                $targetul.slideDown(droplinemenu.animateduration.over)
                                },
                                function(e){
                                        var $targetul=$(this).children("ul:eq(0)")
                                        $targetul.slideUp(droplinemenu.animateduration.out)
                                }
                        ) //end hover
                }) //end $headers.each()
                $mainmenu.find("ul").css({display:'none', visibility:'visible', width:$mainmenu.width()})
        }) //end document.ready
}
}


archet1337 03-07-2010 06:03 AM

No one?


All times are GMT. The time now is 09:55 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.01443 seconds
  • Memory Usage 1,762KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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