The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vMoods aka Mood Manager Details »» | |||||||||||||||||||||||||
/*
vMoods by ZONE365.com Created by Sniper http://www.zone365.com for vbulletin 3.7 */ Todo - - - - - - - - - - - Add more to readme.txt - More features, options? 1.1.3 Beta - Sunday May 18th - - - - - - - - - - - Fixed possible bug for IE6/7 users, the menu drop menu would not work - Added text/image option - Added more FAQ questions in readme.txt By default the dropdown menu will show text version of the moods list, you must change the option to images in the admin cp. UPGRADE - - - - - Import the new product file 1.1.2 Beta - Monday May 5th - - - - - - - - - - - Fixed bug for JS error for guests UPGRADE - - - - - Import the new product file 1.1.1 Beta - Monday May 5th - - - - - - - - - - - Moved javascript/html to footer to improve load times for IE6/7 UPGRADE - - - - - Import the new product file 1.1 Beta - Monday May 5th - - - - - - - - - - - Added reset option - Added CSS to vMoods in admin CP so you can edit quickly if need be - Removed width/height so you can use your own mood images - Improved speed for IE6/7, FF should be faster is well - Added option to have custom display for postbit UPGRADE - - - - - Import the new product file and overwrite the vmoods.js file and if need me change settings in AdminCP 1.0 Beta - Sunday May 4th - - - - - - - - - - - New version for vbulletin 3.7.0 - renamed from Mood Manager NEW INSTALL - - - - - - - - - - - upload vmoods to main forum folder - use product manager in the ADMIN CP to install vMoods NOTE: All mood images will now be located under vMoods/images UPGRADE from Mood Manager - - - - - - - - - - - At this moment I suggest uninstalling the old version and installing this new version. REMEMBER this will delete all user moods, if you want old moods to be kept, please request and I'll post a how to. FAQ _ _ - How can I keep the old moods? 1) disable the old mood manager, install the new mood manager 2) run these queries ALTER TABLE 'user' DROP 'vmood'; ALTER TABLE 'user' CHANGE 'mood' 'vmood' varchar(100) NOT NULL DEFAULT 'none'; - How can I change the location of the mood in the postbit? disable the auto edit in the Admin CP, now you will have access to $vmood_postbit place that anywhere you want in the postbit templates (well the location where you want the mood to show) - How can I change the location of the moods dropdown menu navbar disable the auto edit in the Admin CP, now you will have access to $vmood_form place that anywhere you want in the navbar template, you can try other templates but I can't say if it will work or not - Why am I getting two mood images in the postbit, how can I stop this from happening? In the admin cp, disable the auto edit Show Your Support
|
Comments |
#142
|
||||
|
||||
OK - I'm gonna ask anyway - because the question will probably get some eye rolls and the stray mumbled "Stoopid A**" LOL
But I just noticed this new version... ((Thanx SHELLEY)) I'm currently running vB 3.6.8 PL2 - There's always been an issue with showing the actually images in Opera browser - so I had the settings set to show text. But I noticed earlier on SHELLEY's Forum that this newer version shows perfectly in Opera browser.... On her site - Looks quite awesome really. And thanx to you SNIPER for updating the code - Wonderful work indeed. OK - My stoopid question - Can this version possibly be installed on a 3.6.8 PL2 vBulletin install? Jacquii. |
#143
|
|||
|
|||
Quote:
|
#144
|
||||
|
||||
I'm having further display problems in the navbar, just got this today after my PM box started to reach its quota...
If I remove the code relating to the PM quota warning (I had planned to relocate it), then the entire Mood field, both text & display, completely disappears as well :S I would like to try to position the Mood field manually but if I turn off auto-place for it and try to do it manually with the $vmoods_form line, it doesn't appear no matter where I place it.... Would appreciate some help! |
#145
|
||||
|
||||
an issue also if an user is deleted.
- create a fake user (do not assign to it any mood) - (I did it with an old dismissed user I've not created a new one but i guess is the same) - post a new thread from this user. - delete that user so that will be renamed from vB in anonymous. - go to see that thread you will se that this 'Anonymous' now has the mood (even if nobody has selected one for it) and that the immage is not showing as is pointing to a non valid file (/imagemoodpath/.gif) ty for helping on solve this |
#146
|
||||
|
||||
Quote:
|
#147
|
||||
|
||||
See above also
|
#148
|
|||
|
|||
It says error when trying to even import on line 0
|
#149
|
||||
|
||||
Thanks, must have missed the earlier update!
|
#150
|
||||
|
||||
I hope Sniper will not kill me if I give my raw solution to use this great hack also with vba_cmps. I am not at all a coder so pls excuse me if code could be done better.
Basically i have just added the forum path before mood paths. Open with an editor Sniper's XML (product-vmoods.xml) Find&Replace Code:
Find: <img id="vmoods-mine" src="$vboptions[vmoods_images_path]/$bbuserinfo[vmood].gif" border="0" alt="$bbuserinfo[vmood]" title="$bbuserinfo[vmood]"<if condition="$bbuserinfo[vmood] == 'none'"> style="display:none;"</if> /> Replace with : <img id="vmoods-mine" src="$vboptions[bburl]/$vboptions[vmoods_images_path]/$bbuserinfo[vmood].gif" border="0" alt="$bbuserinfo[vmood]" title="$bbuserinfo[vmood]"<if condition="$bbuserinfo[vmood] == 'none'"> style="display:none;"</if> /> Find: <dd><img src="$vboptions[vmoods_images_path]/$userinfo[vmood].gif" border="0" /></dd> Replace with: <dd><img src="$vboptions[bburl]/$vboptions[vmoods_images_path]/$userinfo[vmood].gif" border="0" /></dd> Find: <script type="text/javascript" src="$vboptions[vmoods_script_path]/vmoods.js?v=$vboptions[simpleversion]"></script> Replace with: <script type="text/javascript" src="$vboptions[bburl]/$vboptions[vmoods_script_path]/vmoods.js?v=$vboptions[simpleversion]"></script> Find: var VMOODS_IMAGES_PATH = '$vboptions[vmoods_images_path]'; Replace with: var VMOODS_IMAGES_PATH = '$vboptions[bburl]/$vboptions[vmoods_images_path]'; Find: <img id="vmood-$vmood_id" src="$vmoods_path/$vmood.gif" alt="$vmood" title="$vmood" class="vmood" /> Replace with: <img id="vmood-$vmood_id" src="$vboptions[bburl]/$vmoods_path/$vmood.gif" alt="$vmood" title="$vmood" class="vmood" /> Find: <img style="vertical-align: middle" src="$vboptions[vmoods_images_path]/$post[vmood].gif" border="0" /> Replace with: <img style="vertical-align: middle" src="$vboptions[bburl]/$vboptions[vmoods_images_path]/$post[vmood].gif" border="0" /> Now open Sniper's vmoods.js file - Find&Replace note: for this you should individually insert your domainurl/forum path. I did not found another easier solution 4 this step but i think Sniper or any coder will help better. Code:
Find: YAHOO.util.Connect.asyncRequest("POST", "ajax.php?do=vmoods_update&securitytoken=" + SECURITYTOKEN + "&vmood=" + target.title, { Replace with: YAHOO.util.Connect.asyncRequest("POST", "http://www.yourdomainURL/forum/ajax.php?do=vmoods_update&securitytoken=" + SECURITYTOKEN + "&vmood=" + target.title, { Now re-upload vmoods.js and reload product-vmoods.xml with overwrite ON. apologises for my terrible english ciao |
#151
|
||||
|
||||
Any news on my problem?
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|