The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Yet Another Awards System Details »» | |||||||||||||||||||||||||||||||||||||||||
*** CREATE A BACKUP OF YOUR FORUM AND DATABASE BEFORE INSTALLING *** DESCRIPTION: This is a Medals/Awards system. Admin can give members awards, and award icons will be displayed in member's profile, posts, as well as in a award list. FEATURES: In AdminCP - Can Create/Edit/Delete/Reorder categories/sub-categories in ACP (with category name and description) - Can Create/Edit/Delete awards in ACP (with Award Name, Description, Icon URL, Image URL) - Can Move one (or all) award(s) from one category to another - Can set some awards un-classified (not displayed for public) - Can re-order awards in awards showcase - Issue awards to members, based on username or userid, with Issue Reason - Remove awards from members + Writes granting/removing awards to the log In ModCP - Issue awards to members, based on username or userid, with Issue Reason - Remove awards from members + Writes granting/removing award to the log Front page - Display awards list in with: Award Name, Description, Icon, Image, and Members who get each award. - Display awards showcase in profile, with Award information, Issue time and reason - Display award icons in postbit (showthread, showpost, announcement, private) New Features/Additions since 3.8 - Points System - Separate Award Request/Recommendation Forms - CSS Customizable Current Release Version 4.0.9
Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
23 благодарности(ей) от: | ||
Abominus, afmarko99, alcazarx, andy_mcguire, CAG CheechDogg, CoZmicShReddeR, dandanch, danswano, Elite_360_, josner, Kesha, MagicPID, mertiliuss, Mickie D, nacaruncr, netzwart, RichieBoy67, sadiq6210, SKIDROW |
Comments |
#812
|
|||
|
|||
Same question as some others. Is it possible to get the code so we can manually change the awards location in the postbit?
|
#813
|
|||
|
|||
Hey, we have it installed in 4.1.4 and it is working fine except one thing. When we activated it as a Tab on our NavBar, our banner disappears at the top of the page. We think there is a CSS reference missing and we tried to get it in there by modifying the XML but it isn't taking. Anyone else have this issue?
|
#814
|
||||
|
||||
Quote:
|
#815
|
|||
|
|||
try with this:
https://vborg.vbsupport.ru/showpost....26&postcount=7 or copying the css award's code in your additional.css |
#816
|
|||
|
|||
When i disable or remove this product all avatars disappear, any idea why?
if a disable all plugins and keep this one active YAAS - postbit_display_start the avatars appears. If i remove the whole product and i add a plugin contains this code to postbit_display_start Code:
// [START HACK='Yet Another Award System' AUTHOR='HacNho'] if ((THIS_SCRIPT == 'showpost') OR (THIS_SCRIPT == 'private') OR (THIS_SCRIPT == 'showthread') OR (THIS_SCRIPT == 'announcement') OR (THIS_SCRIPT == 'newreply')) { global $db, $vbulletin; { if (THIS_SCRIPT == 'private') { $this->post['userid'] =& $post['fromuserid']; } if (($vbulletin->options['aw_postbit']) AND ($this->post['userid'])) { $post['userawards'] = ''; // Obtain list of awards for current user $alluserawards = $db->query_read(" SELECT a.*, au.* FROM " . TABLE_PREFIX . "award a, " . TABLE_PREFIX . "award_user au WHERE (au.userid = ".$this->post['userid'].") AND (a.award_id=au.award_id) AND (a.award_active=1) ORDER BY ".$vbulletin->options[aw_awardorder]." "); $post['showuserawards'] = false; if ($post['num_awards'] = $db->num_rows($alluserawards)) { $aw_i = 0; while ($award = $db->fetch_array($alluserawards)) { $aw_i++; if ($aw_i <= $vbulletin->options['aw_display_limit']) { //- VB3 -// eval('$post[userawards] .= "' . fetch_template('awards_bit') . '";'); //- BEGIN VB4 -// $templater = vB_Template::create('awards_bit'); $templater->register('award', $award); $post[userawards] .= $templater->render(); //- END VB4 -// } } if (($vbulletin->options['aw_points']) AND ($this->post['userid'])) { $userpoints = $db->query_read(" SELECT a.*, au.*, SUM(award_pointvalue) AS TotalPoints FROM " . TABLE_PREFIX . "award a, " . TABLE_PREFIX . "award_user au WHERE (au.userid = ".$this->post['userid'].") AND (a.award_id=au.award_id) AND (a.award_active=1) GROUP BY au.userid "); while ($array = $db->fetch_array($userpoints)) { $post['total_points'] = $array['TotalPoints']; } } $post['showuserawards'] = true; $db->free_result($alluserawards); } } } } // [END HACK='Yet Another Award System' AUTHOR='HacNho'] any clue? |
#817
|
||||
|
||||
Quote:
|
#818
|
||||
|
||||
Quote:
Code:
{vb:raw headinclude_bottom} Code:
{vb:cssfile additional.css} |
#819
|
||||
|
||||
Is that to help fix my issue or someone else's.?
I didn't try the original one or your "better" one, because i thought it was directed at someone else. |
#820
|
||||
|
||||
An attempt to fix yours as he replied directly after your post, as I took it kwim .
|
#821
|
|||
|
|||
Is this hock work in VB 4.1.4
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|