Twitter SMFHacks Facebook SMFHacks SMFHacks.com
Home Forum Index Hacks Products Login Register Search
  Show Posts
Pages: [1] 2 3 ... 8
1  Badge Awards / Support / [PAID] Custom Badges Help Needed on: October 09, 2012, 07:48:07 am
I am looking for someone to help me create a few custom badges (the code... I can do the art).  Unfortunately the author of the mod has stated he's too busy with other projects, etc. to be able to do any custom work for some time. 

I am looking to have a couple badges made for AEVA MEDIA GALLERY (level badges for uploading images,  level badges for comments and/or ratings).

I am looking to have a level badges created for the Facepunch style ratings mod I have employed.

That's pretty much about it.

If you have any interest in helping me out ... I'm willing to cough up some dough... please shoot me a PM with what you'd charge to create these custom badge codes...

Thanks!
2  Badge Awards / Support / Re: Errors Popping Up In Admin on: October 02, 2012, 04:59:46 pm
That seemed to work.

Thank you sir.
3  Badge Awards / Support / Re: Errors Popping Up In Admin on: October 02, 2012, 10:47:33 am
Badges says its 1.0.14 ...

Here is a snippet of code it's referring to:

Code:
441: echo '<tr class="' . $styleClass . '">';
442:
443: echo '<td><img src="' . $modSettings['badgeawards_url']  . $row['image'] . '" alt="' . $row['title'] . '" title="' . $row['title'] . '" /> ' . $row['title'] . '</td>';
444: echo '<td><a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '">' . $row['real_name'] . '</a></td>';
445: echo '<td>' . timeformat($row['date']) . '</td>';
446:
==>447: if ($user_info['is_admin'])
448: echo '<td><a href="' . $scripturl . '?action=admin;area=badgeawards;sa=delmembadge&id=' . $row['id_log'] . '">' . $txt['badge_delete'] . '</a></td>';
449:
450: echo '</tr>';
451:
452: if ($styleClass == 'windowbg')
453: $styleClass = 'windowbg2';
454: else
455: $styleClass = 'windowbg';
456: }

4  Badge Awards / Support / Errors Popping Up In Admin on: October 01, 2012, 01:18:00 pm
I just noticed this error pops up when I visit the MEMBER BADGE HISTORY tab from the Admin area...

Quote
http://www.aha-forums.com/index.php?action=admin;area=badgeawards;sa=badgehistory;b82b56985=77f400043c7115881382890a94a32070
8: Undefined variable: user_info
File: /home/ahaforum/public_html/Themes/default/badgeawards2.template.php
Line: 447
5  Badge Awards / Support / Re: Non "Badge" Suggestions For Badges on: September 01, 2012, 02:06:41 pm
I've actually since move them to the bottom right (I have a ratings mod at the bottom left) but it's a simple change of a float command.  I can post what to look for and where to move it if you'd like... though I do believe it was mentioned that this option would be included in a future update.

6  Badge Awards / Support / Just So You Know What You've Started... on: August 31, 2012, 04:06:47 pm
... I now have TWO users who've "earned" the 250 post spam badge...


...and one of them just got to the 500 post badge.


>sigh<

Cheesy

7  Badge Awards / Support / Custom Manual Badge Images on: August 29, 2012, 08:27:40 am
My users have been having a great time with the badge system.  It's gotten to a point where I've assigned a user as "Badgemaster" and the guy takes his job serious.  Smiley

We've been coming up (both him and I) with different badges and I figured I'd share.  Feel free to use any you may want ... or not.  Smiley  They don' really fully conform to the "look" that the stock badges have (most) but I digress.. it sure does add a but of color to the forum.

Smiley

Anyway ... here we go:

BUGFINDER - Given to members who help me find bugs by reporting them, etc...



SHOPMASTER - Given to members proficient in photoshopping... those who post funny images that are obviously shopped, etc... it's somewhat popular for us to drop each others heads on various things (my private forum includes a very large group of friends).



30 BEERS - Given to those who complete the 30 BEERS IN 30 DAYS challenge... you must drink,  photograph,  and review 30 different beers in 30 days time.  Once completed,  you get the badge and the admiration of the forum.



ARE YOU BLIND? - Given to members who show a distinct ability to IGNORE the obvious.



HAVE A BEER! - Given to members who regularly participate in the "Are you having a drink tonight?" thread.



ASSMASTER - Given to members who regularly participate in the "ASS" thread in the NSFW forum we have.




We have some others as well.  A DONATOR badge for people who've donated to the forum.  A DONATED TO KEN badge for people who donated to a forum member who is on a fixed incomes internet fund.  STINKY UNICORN HUNTER is a badge earned by members who took a photo with the elusive STINKY UNICORN (a guy who, every year,  shows up at the conventions we all attend (California Extreme Arcade Game Show) stinking soooo bad... you would not believe it... YEAR after YEAR... so I created a badge and gave it to anyone who could capture a picture of themself with the stinky unicorn at CAX.   We have an "Excellence in Asshattery" badge... we have a Tittymaster badge (I didn't post it as it's a profile of a tit and I'm not sure the policy of said image here (hehe)... and a few others with more coming. 

8  Badge Awards / Support / Re: Badges Not Showing Up On Master List on: August 26, 2012, 08:24:04 pm
Is it marked as hidden? Edit the badge in the admin area and check.

Yes... I am a dumbass.  I did check it to make sure it was enabled... didn't bother checking to see if it was hidden...

Sorry for the bother.

9  Badge Awards / Support / Re: Unidentified Index Help on: August 26, 2012, 08:22:00 pm
Just remove that whole code for now wasn't working correctly.

Removed... glad it wasn't just me.

Wink
10  Badge Awards / Support / Re: Badges Not Showing Up On Master List on: August 26, 2012, 08:09:20 pm
I've double checked my edits... not sure why this badge would be awarded...and show up on my admin master list... but NOT show up on the member viewable master list?

11  Badge Awards / Support / Re: Unidentified Index Help on: August 26, 2012, 08:06:00 pm
I double checked my edits and they are fine... I double checked using a mix of beyond compare, Notepad ++ and my online code editor...

The invalid index error is being generated by the INVISIBLE badge code...

Code:
1274: $badgeAction = 'invisible';
1275: if ($memberContext[$memberID]['show_online'] == "0" && !in_array($badgeAction,$currentBadges))
1276: {
1277: $badgeID = GetBadgeIDByAction($badgeAction);
1278: $ret = AddBadgeToMember($memberID,$badgeID,false);
1279: if ($ret == true)
1280: {
1281: $currentBadges[] = $badgeAction;
1282: $newBadges[]  = $badgeAction;
1283: }

The error is generated by Line 1275.   Where is "show_online" defined?
12  Badge Awards / Support / Re: Badges Not Showing Up On Master List on: August 26, 2012, 07:25:48 pm
Mine is, it's on the second page

I am guessing I missed another edit.  It's a real pain updating this mod... every time I do it "fully" my custom stuff goes out the door and every time I try to do it with manual edits I screw SOMETHING up.

Sad

13  Badge Awards / Support / Badges Not Showing Up On Master List on: August 26, 2012, 12:26:55 pm
Strangely... the QUICK REPLY badge (and maybe more?) aren't showing up on the MASTER LIST when you click the MASTER LIST from inside a profile.  It (of course) shows up on the ADMIN master list... and it is ENABLED (and two people have earned it thus far).

14  Badge Awards / Support / Unidentified Index Help on: August 26, 2012, 12:19:37 pm
Alright... i updated using beyond compare as I have done too many changes to mine to simply swap out now (unfortunately we are at that point now)...

I am getting the following Unidentified Index error... can you help me track down what I've managed to mess up by chance?

Quote
8: Undefined index: show_online
File: /home/ahaforum/public_html/Sources/badgeawards2.php
Line: 1275

I am assuming I've missed an edit somewhere?
15  Badge Awards / Support / Re: Poll Badge Update Question on: August 25, 2012, 01:05:02 am
Got it what about the combination one? If  I get that action can update tonight.

Sorry man... was in the middle of watching a show with the ole lady...

supercombination

That is what I called it...I can change it though if necessary..

Also... I did levels of "karma" as well... but it really is only appropriate for using with the Advanced Rep mod (the levels that is)...

The badge graphic itself isn't going to work for general purposes ... we call reputation "NUT" and the badge is the "Golden Acorn" badge...

Wink

Pages: [1] 2 3 ... 8
Powered by SMF 1.1.18 | SMF © 2013, Simple Machines
TinyPortal v0.9.7 © Bloc
SMF and SimpleMachines are registered trademarks of Simple Machines. SMFHacks.com is not affiliated with nor endorsed by Simple Machines.
Page created in 1.28 seconds with 19 queries.