[ABD] Mood

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
jimcarrel
Registered User
Posts: 671
Joined: Fri Jul 27, 2007 10:49 pm
Location: Oklahoma City, Oklahoma

Re: [BETA] Mood

Post by jimcarrel »

Is there a module you have to add to the ACP?
I find it nowhere,

Question about the 1st version, what was that stuff aboutIcon_mood.m7.gif, there was no m7 in the files.

I did not run the update file in the contributions folder, because I could do the sql myself, is that a problem?
Grace--Getting what I don't deserve
Mercy--Not getting what I do deserve
jimcarrel
Registered User
Posts: 671
Joined: Fri Jul 27, 2007 10:49 pm
Location: Oklahoma City, Oklahoma

Re: [BETA] Mood

Post by jimcarrel »

LOL, It took about 4 page refreshes to get the changes to show up.
I've seen mod installers mention the extra refreshes before, but never had happen before.

And that was after several cache purges, refreshing of image sets and templates.

I just jumped back in to post that it was not the mods fault.

Just me.
Grace--Getting what I don't deserve
Mercy--Not getting what I do deserve
User avatar
fiorefrank
Registered User
Posts: 226
Joined: Fri Jun 08, 2007 10:43 am
Location: Italy

Re: [BETA] Mood

Post by fiorefrank »

wow fantastic ;)
Primy
Registered User
Posts: 109
Joined: Sat Dec 01, 2007 5:11 pm

Re: [BETA] Mood

Post by Primy »

jimcarrel wrote:Is there a module you have to add to the ACP?
I find it nowhere
No sorry, it was seeming to me excessive to built a module for this. :)
jimcarrel wrote:what was that stuff aboutIcon_mood.m7.gif, there was no m7 in the files.
That’s just one imaginary icon which you could create to add a new mood.
jimcarrel wrote:I did not run the update file in the contributions folder, because I could do the sql myself, is that a problem?
No, ive installed it without update file. ;)
jimcarrel wrote:LOL, It took about 4 page refreshes to get the changes to show up.
I've seen mod installers mention the extra refreshes before, but never had happen before.

And that was after several cache purges, refreshing of image sets and templates.

I just jumped back in to post that it was not the mods fault.

Just me.
Sorry jim but my english is just sufficient. Have you problem with the mod?
Primy
Registered User
Posts: 109
Joined: Sat Dec 01, 2007 5:11 pm

Re: [BETA] Mood

Post by Primy »

fiorefrank wrote:wow fantastic ;)
Thanks very much mate! :D
autinhyeu
Registered User
Posts: 685
Joined: Mon Apr 14, 2008 6:34 am
Location: Vietnamese

Re: [BETA] Mood

Post by autinhyeu »

nice MOD, i had add it and it is work good. thanks :)
great
phpBB Community in Vietnamese: http://www.phpbbvn.com

Sorry, my English language is fine impossible
xxxgamer
Registered User
Posts: 574
Joined: Mon Jul 16, 2007 11:25 pm

Re: [BETA] Mood

Post by xxxgamer »

I will try this now :) Is there an option to have writing beside it? like "mood: Happy" ?
ham1299
Registered User
Posts: 613
Joined: Mon Sep 11, 2006 2:12 am
Location: USA

Re: [BETA] Mood

Post by ham1299 »

xxxgamer wrote:I will try this now :) Is there an option to have writing beside it? like "mood: Happy" ?
If you hover your mouse over the icon it'll display the mood.
Heather
jimcarrel
Registered User
Posts: 671
Joined: Fri Jul 27, 2007 10:49 pm
Location: Oklahoma City, Oklahoma

Re: [BETA] Mood

Post by jimcarrel »

Primy,
No problems with the mod. It just took it a while to show up.
Not your fault.
Grace--Getting what I don't deserve
Mercy--Not getting what I do deserve
DJ Jonny
Registered User
Posts: 145
Joined: Sat Nov 10, 2007 10:58 pm

Re: [BETA] Mood

Post by DJ Jonny »

This mods seems to work nice just few ideas on how it could improve tho when the image shows in viewtopic.php and memberlist.php would it be possable to put the mood name next to it eg. :) Happy.
when you choose your mood in the ucp.php you should make the list a dropdown bos instead of option radio buttons. last of all it would be awsome it your could upload your own images so that you dont have to edit code to add more.

Just some Ideas hope they help improve and hope they will be able to be achived.
mahdi22
Registered User
Posts: 69
Joined: Thu Mar 06, 2008 11:33 pm

Re: [BETA] Mood

Post by mahdi22 »

its work very good in profile put topic is not appear why i dont now why
i do aver thing aright
Primy
Registered User
Posts: 109
Joined: Sat Dec 01, 2007 5:11 pm

Re: [BETA] Mood

Post by Primy »

DJ Jonny wrote:This mods seems to work nice just few ideas on how it could improve tho when the image shows in viewtopic.php and memberlist.php would it be possable to put the mood name next to it eg. :) Happy.
This is easy to obtain ;)

FOR SUBSILVER:

Open style/subsilver2/template/memberlist_view.html
FIND:

Code: Select all

			<tr>
				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_MOOD}: </td>
				<td><b class="genmed">{USER_MOOD_IMG}</b></td>
			</tr>
REPLACE WITH:

Code: Select all

			<tr>
				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_MOOD}: </td>
				<td><b class="genmed">{USER_MOOD_IMG}{USER_MOOD}</b></td>
			</tr>

Open style/subsilver2/template/viewtopic_body.html
FIND:

Code: Select all

					<!-- IF postrow.POSTER_MOOD --><br /><b>{L_MOOD}:</b> {postrow.POSTER_MOOD_IMG}<!-- ENDIF -->
REPLACE WITH:

Code: Select all

					<!-- IF postrow.POSTER_MOOD --><br /><b>{L_MOOD}:</b> {postrow.POSTER_MOOD_IMG}{postrow.POSTER_MOOD}<!-- ENDIF -->

FOR PROSILVER:

Open style/prosilver/template/memberlist_view.html
FIND:

Code: Select all

		<!-- IF USER_MOOD --><dt>{L_MOOD}:</dt> <dd>{USER_MOOD_IMG}</dd><!-- ENDIF --> 
REPLACE WITH:

Code: Select all

				
		<!-- IF USER_MOOD --><dt>{L_MOOD}:</dt> <dd>{USER_MOOD_IMG}{USER_MOOD}</dd><!-- ENDIF --> 

Open style/prosilver/template/viewtopic_body.html
FIND:

Code: Select all

		<!-- IF postrow.POSTER_MOOD --><dd><strong>{L_MOOD}:</strong> {postrow.POSTER_MOOD_IMG}</dd><!-- ENDIF -->
REPLACE WITH:

Code: Select all

		<!-- IF postrow.POSTER_MOOD --><dd><strong>{L_MOOD}:</strong> {postrow.POSTER_MOOD_IMG}{postrow.POSTER_MOOD}</dd><!-- ENDIF -->
Done! :)
DJ Jonny wrote:when you choose your mood in the ucp.php you should make the list a dropdown bos instead of option radio buttons. last of all it would be awsome it your could upload your own images so that you dont have to edit code to add more.
Im working for that! ;)
Last edited by Primy on Tue Apr 29, 2008 2:50 am, edited 2 times in total.
Primy
Registered User
Posts: 109
Joined: Sat Dec 01, 2007 5:11 pm

Re: [BETA] Mood

Post by Primy »

mahdi22 wrote:its work very good in profile put topic is not appear why i dont now why
i do aver thing aright
mahdi, check closely ur viewtopic.php and viewtopic_body.html in the template's folder, keeping watch on install.xml file. It's possibile that you have made some mistake during the installation on these 2 files. Let me know.
User avatar
Sunka
Registered User
Posts: 566
Joined: Wed Mar 26, 2008 2:48 pm
Location: Croatia, Zvoneca

Re: [BETA] Mood

Post by Sunka »

Mood is Superb MOD :mrgreen:
I installed last night, and added 56 new pictures
Only 4,5 hours to install and change codes for all images :mrgreen:
Works great in my forum v3.0.1
mahdi22
Registered User
Posts: 69
Joined: Thu Mar 06, 2008 11:33 pm

Re: [BETA] Mood

Post by mahdi22 »

thanks
i fix it

the pro. when i pot the

Code: Select all

<!-- IF postrow.POSTER_MOOD --><br /><b>{L_MOOD}:</b> {postrow.POSTER_MOOD_IMG}<!-- ENDIF -->
dosnt work

put when i try

Code: Select all

<br /><b>{L_MOOD}:</b> {postrow.POSTER_MOOD_IMG}
it work very good

thanks

Return to “[3.0.x] Abandoned MODs”