Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vMoods aka Mood Manager Details »»
vMoods aka Mood Manager
Version: 3.8.0009, by -=Sniper=- -=Sniper=- is offline
Developer Last Online: Dec 2013 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.8.x Rating:
Released: 07-03-2009 Last Update: 07-10-2009 Installs: 424
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations Is in Beta Stage  
No support by the author.

vMoods by Luqman Amjad
http://twitter.com/luqmanamjad

Credits
- - - - - - - - - -

- Shelley - Mood Pack - **link removed - site is gone**
- Paul - https://vborg.vbsupport.ru/member.php?u=58527 (updated_at date idea)

I've renamed version number from 2.0.x to 3.8.000x

While not developed on 3.7.x it might work, so give it a try and report back.


please check out README.html for version history and instructions

ONLINE README.html
- - - - - - - - - -
http://luqmanamjad.com/downloads/vmoods/

Demo (outdated style used in this demo)
- - - - - - - - - -



Shelley Mood Pack

Download Now

File Type: zip vmoods_3.8.0009.zip (1.07 MB, 3823 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
mohammadxxx

Comments
  #42  
Old 07-07-2009, 02:40 AM
pincrackergod pincrackergod is offline
 
Join Date: Aug 2008
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mines not working.... any help???

I try and click on it and it doesn't work....
Reply With Quote
  #43  
Old 07-07-2009, 02:54 AM
Chelf12 Chelf12 is offline
 
Join Date: Sep 2008
Location: Indiana
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by pincrackergod View Post
Mines not working.... any help???


I try and click on it and it doesn't work....
Try clicking in the navbar.

It should change there.
Reply With Quote
  #44  
Old 07-07-2009, 02:59 AM
pincrackergod pincrackergod is offline
 
Join Date: Aug 2008
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I fixed it already thanks
Reply With Quote
  #45  
Old 07-07-2009, 03:05 AM
Kuimera Kuimera is offline
 
Join Date: Aug 2005
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Showing Array with manual positioning two...
Reply With Quote
  #46  
Old 07-07-2009, 03:17 AM
ruger's Avatar
ruger ruger is offline
 
Join Date: Sep 2004
Location: Texas
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So for those of you posting you were able to fix it...can you at least tell the rest how? Instead of "Oh...I fixed it"
Reply With Quote
  #47  
Old 07-07-2009, 06:04 AM
HybridIllusions HybridIllusions is offline
 
Join Date: Oct 2007
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm also havign the issue of "Array" appearing where $vmoods is placed. Fresh install, falled all directions.
Reply With Quote
  #48  
Old 07-07-2009, 06:44 AM
RobbieZ RobbieZ is offline
 
Join Date: Jul 2008
Posts: 1,117
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Shelley_c View Post

On a related note. I'll soon be working on a brand new mood icon pack which I think will surpass my current mood icon pack.
Cool. How can you perfect perfection Shelley ?
Reply With Quote
  #49  
Old 07-07-2009, 09:26 AM
Saviour's Avatar
Saviour Saviour is offline
 
Join Date: Apr 2007
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

On another note...

For those using this mod alongside vbAdvanced...and experiencing issues with the form output not working correctly. See this post for the fix: https://vborg.vbsupport.ru/showpost....&postcount=197

Also...there may be those who are using Logician's WebTemplates 3.7.x: VB Integrated CMS (Content Management System). If you are...and the form for the dropdown is not appearing or performing correctly on those pages...here's the fix:

Open view.php and find the following code:

Code:
//construct_forum_jump();
Right after that code, you're going to have to add the code from the global_setup_complete hook of this mod. This code can be found in VBOptions/Plugins & Products/Plugin Manager for vBulletin 3.8.3. Just click to edit that plugin...copy the code and paste that code after //construct_forum_jump(); in the view.php file.

Code:
if ($vbulletin->options['vmoods_active']){
	
	if ($vbulletin->userinfo['userid'] > 0 && in_array($vbulletin->userinfo['usergroupid'], explode(",", $vbulletin->options['vmoods_usergroups'])) == false){
		$vmoods = explode("\n", $vbulletin->options['vmoods_list']);
		$vmoods = array_merge(array('none'), $vmoods);
		$vmood_i = 0;
		foreach ($vmoods as $vmood){
			$vmood = trim($vmood);
			$vmood_id = ($vbulletin->userinfo['vmood'] == $vmood) ? 'mine' : $vmood;
			$vmood_class = ($vmood_i < (int) $vbulletin->options['vmoods_preload']) ? ' vmood_loaded' : '';
			eval('$vmoods_li .= "' . fetch_template($vbulletin->options['vmoods_li_option']) . '";');
			$vmood_i++;
		}
		
		eval('$vmoods_form = "' . fetch_template('vmoods_form') . '";');
	  $footer = $vmoods_form . $footer;
	}
	
	eval('$vmoods_css_include = "' . fetch_template('vmoods_css_include') . '";');
	$headinclude .= $vmoods_css_include;
}
I certainly hope you guys/gals find this useful...
Reply With Quote
  #50  
Old 07-07-2009, 09:59 AM
cykelmyggen's Avatar
cykelmyggen cykelmyggen is offline
 
Join Date: Oct 2006
Location: Europe
Posts: 156
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please take a look at the attached screenshot - it looks a bit squeezed in postbit. Anything one can do to fix this?
Attached Images
File Type: jpg error_vmoods.jpg (18.5 KB, 0 views)
Reply With Quote
  #51  
Old 07-07-2009, 01:22 PM
blaze718 blaze718 is offline
 
Join Date: Aug 2008
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When I select my mood. It only shows the first letter of the text why is that?
Same with image , It only show a little.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.13586 seconds
  • Memory Usage 2,339KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete