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

Reply
 
Thread Tools
Mood Manager - with AJAX mood update. Details »»
Mood Manager - with AJAX mood update.
Version: 1.2.5, by -=Sniper=- -=Sniper=- is offline
Developer Last Online: Dec 2013 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.6.2 Rating:
Released: 09-21-2006 Last Update: 07-23-2007 Installs: 1132
DB Changes Uses Plugins Template Edits
 
No support by the author.

By http://www.vbulletinexpert.com

UPDATES ON 24/07/2007

1.2.5
-----

- Fixed XSS security issue
- Added Banned usergroup option

UPDATES ON 15/04/2007

1.2.4
-----

Credits to hambil - https://vborg.vbsupport.ru/member.php?u=57845 for this update

- Aligned text and images for a cleaner look
- Changed dropdown to contain mood images instead of text, with admin option
- Added optional auto replace for postbit and postbit legacy templates

UPDATES ON 08/10/2006

1.2.3
-----

- Changed how the dropdown menu looks slighty, better I think.

- One of the plugins was left inactive by mistake, now active.
which resulted in dead mood images e.g. cross displayed in IE

- Fixed a few mood names / images, so are the same.

- Added a few NEW mood images, thanks to GlitterKill

UPDATES ON 22/09/2006
~~~~~~~~~~~~~~~~~

1.2.0
------

Simply Import the product and make sure you select "allow overwrite"

- No Mood option added
- User Moods will no longer disaply in postbit if moods are disabled.


1.1.3
------

- thanks to basilrath for the moods.

PLEASE READ THE INSTALL FILE

What is It?

It allows users to set a personal mood, which can be changed without reloading the page. The moodis displayed in the members profile and postbit.

Instructions Incuded in the attached file.

Demo

Support I can provide better support at www.vbcmspro.com

Upgrade My other hack depended on another hack, this does not, so simply undo / delete the other hack.

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #462  
Old 06-20-2007, 08:56 PM
Tanabe Tanabe is offline
 
Join Date: Feb 2007
Posts: 45
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by -=Sniper=- View Post
3.6.7 has a few changes I think, so I will need to modify the instrustions a bit, I should be able to release the update tomorrow or friday. Also remove the auto edits to make things easier for future upgrades.
Ah ok that was the problem. I turned off the auto edits and added the

Code:
<if condition="!empty($userinfo[mood])">
<strong>$vbphrase[my_mood]:</strong>
<br />
<img src="images/mood/$userinfo[mood].gif" border="0" />
</if>
and it woked fine. Its always the smiple stuff I miss. Thanks for the help.
Reply With Quote
  #463  
Old 06-21-2007, 04:10 PM
snakes1100 snakes1100 is offline
 
Join Date: Dec 2001
Location: Michigan
Posts: 3,733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Chris-777 View Post
As a heads up:

I didn't like the mood changer in the navbar, so I moved it to the bottom of the 'modifyprofile' template. It worked for changing the mood, but for whatever reason it kills everything else. With the code on that page, it breaks the user's ability to save any changes to any of the user profile fields.

Just a heads up if you run into it.
That's odd, i'm not having that issue and i did a search first to see if anyone had moved it to "modifyprofile" template, like me & you, I didn't like it in the navbar either.

You sure you didn't accidentally put it in one of the form tags?

Code:
			<fieldset class="fieldset">
				<legend><label for="tb_customtext">$vbphrase[my_mood]</label></legend>
				<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
				<tr>
					<td colspan="2">$vbphrase[my_mood_explanation]</td>
				</tr>
				<tr>
					<td>$usermoods</td>
				</tr>
				</table>
			</fieldset>
I added the above code, above this line in "modifyprofile" template:
<if condition="$show['birthday_optional']">

I added my own explanation phrase as well, create the following phrase or ad your own phrase:
my_mood_explanation
Reply With Quote
  #464  
Old 06-22-2007, 10:11 AM
donatas donatas is offline
 
Join Date: Jul 2002
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

how can i place mood image near username in "who online" table? or even better in vbshout shoutbox? i've added <img src="images/mood/$userinfo[mood].gif" border="0" />
but it always show moods/.gif (like no mood)
Reply With Quote
  #465  
Old 06-22-2007, 04:52 PM
hoopsta hoopsta is offline
 
Join Date: Jan 2003
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what does this error mean????

Sorry, no XML was passed into this function and the $path variable empty
Reply With Quote
  #466  
Old 06-22-2007, 09:06 PM
jayunsplanet jayunsplanet is offline
 
Join Date: Jun 2006
Posts: 29
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

My error was fixed!
Just a little spelling mistake made by the developer. Hehe. No biggie.
Reply With Quote
  #467  
Old 06-23-2007, 11:38 AM
cheat-master30's Avatar
cheat-master30 cheat-master30 is offline
 
Join Date: Mar 2007
Location: Information Classified
Posts: 1,715
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Has the hack creator thought of making this modification a bit more conforming to web standards? As in, adding the alt text for the mood image shown in the custom template and the post bit template?

Because, while I managed to semi fix this by changing the code in the post bit to this:

Code:
<if condition="!empty($post[mood])">
				<div>
					$vbphrase[my_mood]: <img src="images/mood/$post[mood].gif" border="0" alt="user mood" />
				</div>
				</if>
in the template and something similar in the quick_mood_change_by_sniper template, it would be nicer if the mood image had the alt text that corresponded to the mood shown in the image...
Reply With Quote
  #468  
Old 06-27-2007, 02:00 AM
rayw rayw is offline
 
Join Date: Mar 2007
Location: Australia
Posts: 171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice, thanks a lot. Just installed then.
Reply With Quote
  #469  
Old 06-28-2007, 04:30 AM
snakes1100 snakes1100 is offline
 
Join Date: Dec 2001
Location: Michigan
Posts: 3,733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by -=Sniper=- View Post
I think users have reported its spelt Psychadelic in the AdminCP please change it to Psychedelic
Also, make sure you fix the actual image name in you zip, anyone that has already installed it needs to do the same.
Reply With Quote
  #470  
Old 06-30-2007, 01:12 AM
Deirdre Deirdre is offline
 
Join Date: Jun 2007
Posts: 44
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

eek, i did the same thing except i mispelt something so i have no image and i can't change it. What do i do? Do i have to uninstall, reinstall?

edit: Ah figured it out: i renamed the image to how i had it mispelt, changed my mood, changed the spelling back.
Reply With Quote
  #471  
Old 07-01-2007, 03:53 PM
Madmp3zz Madmp3zz is offline
 
Join Date: Aug 2005
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm running 3.6.7 and CMPS 2.2.1.
Installed it , worked fine in the main forums but when I try to change my mood on the main page CMPS the only option I have is NO MOOD.

What's up with that?
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 06:20 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.26200 seconds
  • Memory Usage 2,313KB
  • 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
  • (3)bbcode_code
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete