vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - [AJAX] Helpful Answers - Post Rating System (plus many sub-features) (https://vborg.vbsupport.ru/showthread.php?t=204117)

Ted S 06-26-2010 10:22 PM

Quote:

Originally Posted by emisand (Post 2060106)
Is it possible to make it look exactly like the IPB 3.0 Reputation System?

I will give you some images so you can check:

Neutral Score ( == 0):
https://vborg.vbsupport.ru/external/2010/06/27.jpg

Positive Score ( > 0 )
https://vborg.vbsupport.ru/external/2010/06/28.jpg

Negative Score ( < 0 )
https://vborg.vbsupport.ru/external/2010/06/29.jpg

You could do this with a few modifications to the template.

emisand 06-26-2010 11:43 PM

1 Attachment(s)
Well.

I have made my Template Modifications and got this:
https://vborg.vbsupport.ru/external/2010/06/2.jpg

It's not a bad approach.

Here you have my "helpful_answer" template:

Code:

                        <if condition="$show['helpfulanswer']">
                        <div id="helpfulanswers_box_$post[postid]">
                <br />
                                <if condition="$vboptions[helpans_neg]">

                    <div style="margin: 0px; clear: both; padding-bottom: 0px; padding-left: 10px; bottom: 32px;
                    max-width: 90px; font-size: 0.8em; right: 0px; padding-top: 5px;">
                        <if condition="$show['rate_helpfulanswer']">
                                                    <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=1" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 1);" </if> rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                                                    <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=0" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 0);" </if> rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                                            </if>

                                            <if condition="$show['guest'] AND $vboptions['helpans_guestshow']">
                                                    <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                                                    <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                                            </if>

                        <if condition="$finalscore = $post[goodrank] - $post[badrank]">
                            <if condition="$finalscore > 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #6f8f52; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore < 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #b82929; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore == 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">$finalscore</div>
                            </if>

                        <else />
                            <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">0</div>
                        </if>
                    </div>

                                </if>

                        </div>
                        </if>


I have attached the used Images.

emisand 06-27-2010 01:15 AM

I have a problem with this variables:
$post[hagoodrank]
$post[hatotalrank]
$post[habadrank]

When I try to display them in my postbit_legacy they are always 0.

Any way to fix this?

Ted S 06-27-2010 06:27 AM

Quote:

Originally Posted by emisand (Post 2060153)
Well.

I have made my Template Modifications and got this:
https://vborg.vbsupport.ru/external/2010/06/2.jpg

It's not a bad approach.

Here you have my "helpful_answer" template:

Code:

            <if condition="$show['helpfulanswer']">
            <div id="helpfulanswers_box_$post[postid]">
                <br />
                <if condition="$vboptions[helpans_neg]">
 
                    <div style="margin: 0px; clear: both; padding-bottom: 0px; padding-left: 10px; bottom: 32px;
                    max-width: 90px; font-size: 0.8em; right: 0px; padding-top: 5px;">
                        <if condition="$show['rate_helpfulanswer']">
                            <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=1" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 1);" </if> rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                            <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=0" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 0);" </if> rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                        </if>
 
                        <if condition="$show['guest'] AND $vboptions['helpans_guestshow']">
                            <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                            <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                        </if>
 
                        <if condition="$finalscore = $post[goodrank] - $post[badrank]">
                            <if condition="$finalscore > 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #6f8f52; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore < 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #b82929; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore == 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">$finalscore</div>
                            </if>
 
                        <else />
                            <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">0</div>
                        </if>
                    </div>
 
                </if>
 
            </div>
            </if>


I have attached the used Images.

Mind if I add this to the mod (with credit of course)?

MagicThemeParks 06-27-2010 11:58 AM

Nice work emisand! :up:

I'll be able to use that layout for another site that I'm looking to develop :)

emisand 06-27-2010 06:54 PM

Quote:

Originally Posted by Ted S (Post 2060300)
Mind if I add this to the mod (with credit of course)?

Yes you can.

TheComputerGuy 06-27-2010 08:38 PM

for (totalRating < x) {
$closethread
}

Any chance of getting that added into the script in the next few weeks Ted?

Ted S 06-27-2010 11:08 PM

Quote:

Originally Posted by TheComputerGuy (Post 2060684)
for (totalRating < x) {
$closethread
}

Any chance of getting that added into the script in the next few weeks Ted?

I've got a few items to integrate, so far not much demand on this one so it's still on the low end of the list.

mmllc 06-30-2010 07:25 PM

Quote:

Originally Posted by emisand (Post 2060153)
Well.

I have made my Template Modifications and got this:
https://vborg.vbsupport.ru/external/2010/06/2.jpg

It's not a bad approach.

Here you have my "helpful_answer" template:

Code:

                        <if condition="$show['helpfulanswer']">
                        <div id="helpfulanswers_box_$post[postid]">
                <br />
                                <if condition="$vboptions[helpans_neg]">

                    <div style="margin: 0px; clear: both; padding-bottom: 0px; padding-left: 10px; bottom: 32px;
                    max-width: 90px; font-size: 0.8em; right: 0px; padding-top: 5px;">
                        <if condition="$show['rate_helpfulanswer']">
                                                    <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=1" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 1);" </if> rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                                                    <a href="./helpfulanswers.php?do=rate&postid=$post[postid]&rank=0" <if condition="$vboptions[disable_ajax] != 2"> onclick="return helpfulanswers_rate($post[postid], 0);" </if> rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                                            </if>

                                            <if condition="$show['guest'] AND $vboptions['helpans_guestshow']">
                                                    <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/addrep.png" border="0" alt="Votar bien este mensaje" /></a>&nbsp;
                                                    <a href="./helpfulanswers.php?do=guestrate" rel="nofollow"><img src="images/buttons/deleterep.png" border="0" alt="Votar mal este mensaje" /></a>
                                            </if>

                        <if condition="$finalscore = $post[goodrank] - $post[badrank]">
                            <if condition="$finalscore > 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #6f8f52; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore < 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #b82929; color: #FFFFFF">$finalscore</div>
                            </if>
                            <if condition="$finalscore == 0">
                                <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">$finalscore</div>
                            </if>

                        <else />
                            <div style="padding-bottom: 3px; margin-left: 8px; padding-left: 8px; padding-right: 8px; display: block; float: right;
                                font-weight: bold; padding-top: 3px; -moz-border-radius: 6px; -webkit-border-radius: 6px; background: #848484; color: #FFFFFF">0</div>
                        </if>
                    </div>

                                </if>

                        </div>
                        </if>


I have attached the used Images.

Really awesome,thanks :)

mmllc 07-02-2010 12:26 AM

Sorry if this has been asked,

but wouldn't it be GREAT if we could write something that made the TOP RESPONSE POST be moved to the first page of the thread under first post? Or some way highlight it more than it already is, because top response could be 30 pages deep, no one will see usually.

Any ideas?


All times are GMT. The time now is 10:00 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03234 seconds
  • Memory Usage 1,820KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete