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)

Chris8 05-18-2012 01:31 AM

Nice mod :)
I have a question, is it possible to sort posts within a thread accordingly to the post ranking? (Yup, I dig the whole thread but did not find it.)
And if yes then how?
I would be grateful for any pointers.

Ted S 05-18-2012 02:08 AM

Quote:

Originally Posted by Chris8 (Post 2330303)
Nice mod :)
I have a question, is it possible to sort posts within a thread accordingly to the post ranking? (Yup, I dig the whole thread but did not find it.)
And if yes then how?
I would be grateful for any pointers.

Yes it's possible. No it's not a feature in the mod.

Basically you'd need to modify the query that pulls the posts up and change it to check on the votes for the post (they're stored as individual records and for the post overall).

There's already a query plugin used on that page so it's got a starting point if you're familiar with vB.

Chris8 05-18-2012 06:20 PM

Well, I'm familiar with vb in some way, but I'm not a coder. As for modifying I would only like to execute sorting only on demand, not by default. I guess I need to edit showthread template and put there a link that will run the sorting query when user clicks it. To create the query I must add a plugin and place it somewhere within showthread perhaps showthread_start hook or maybe showthread_query_postids hook would be suitable.
But the question is how would look like the code executing this query. I've just thought that perhaps someone has done it before and wouldn't mind to share the code. I think that feature could be very powerful addition to this mod.

Ted S 05-18-2012 08:51 PM

Quote:

Originally Posted by Chris8 (Post 2330492)
Well, I'm familiar with vb in some way, but I'm not a coder. As for modifying I would only like to execute sorting only on demand, not by default. I guess I need to edit showthread template and put there a link that will run the sorting query when user clicks it. To create the query I must add a plugin and place it somewhere within showthread perhaps showthread_start hook or maybe showthread_query_postids hook would be suitable.
But the question is how would look like the code executing this query. I've just thought that perhaps someone has done it before and wouldn't mind to share the code. I think that feature could be very powerful addition to this mod.

While there's plugin hooks you can use to setup the option, what you want to do requires an source change to the query -- people hate those which is the only reason why it's not a part of the mod.

Here's the basics of what you need to do:

1. Add a plugin hook for showthread_post_start along the lines of

Code:

// get the variable to see if the user wants to sort by votes
$vbulletin->input->clean_gpc('r', 'sortvotes', TYPE_STR);

// see if the user opted to sort by the post votes AND voting is enabled in this forum
if($vbulletin->GPC['sortvotes'] AND $forum['helpfulanswerbits']){
    $sortquery = "ORDER BY helpfulpost.totalrank DESC";
    echo "<!--sort by posts-->";

// either HA is not on or the user doesn't want to sort by it; back to default
} else {
    $sortquery = "ORDER BY post.dateline ". $postorder;
    echo "<!--sort normally-->";
}

2. In showthread.php find ORDER BY post.dateline $postorder and replace it with $sortquery

3. Repeat this for all 3 instances of the original code

4. Add a link to the post with the variable &sortvotes=1 to enable sorting by votes

5. To check that the plugin is getting called view source the page and look for "sort by posts" or "sort normally". You can remove this once the hack works.

Note: This isn't tested so while it won't destroy any data it may throw an error and may not work if you filter a post another way, click to the next page, etc.

Chris8 05-19-2012 01:44 AM

It works :) but only partially. It executes the normal sorting and displays the posts, (<!--sort normally--> is displayed too)
but when trying to sort by helpfulpost.totalrank by accessing http://www.example.com/showthread.php?t=xxx&sortvotes=1 a db error occurs.



I'm trying to guess what might be wrong. Thank you anyway for taking your time to write such detailed instructions, that's for sure the good starting point and it would probably work but some detail is missing.
I will try to test it tomorrow on clean installation.

Ted S 05-19-2012 02:26 AM

Quote:

Originally Posted by Chris8 (Post 2330575)
I'm trying to guess what might be wrong. Thank you anyway for taking your time to write such detailed instructions, that's for sure the good starting point and it would probably work but some detail is missing.
I will try to test it tomorrow on clean installation.

You can try adding back ORDER BY post.dateline $postorder to the first instance although I'm not sure how that will impact the ordering.

Alternatively you'd need to add the JOIN request to that query as well.

Chris8 05-19-2012 06:04 PM

Yes! It works now like a charm! Thank you! :)
So simple though I wouldn't figure it myself.
Absolutely precious feature, at least for me.

eternal_ 06-07-2012 03:12 PM

Is there something like this for 4.x.x? I'm looking for a thumbs up option. It should be standard in vbulletin by now. It's a popular feature all over the web.

Simon Lloyd 06-07-2012 03:17 PM

Quote:

Originally Posted by eternal_ (Post 2337481)
Is there something like this for 4.x.x? I'm looking for a thumbs up option. It should be standard in vbulletin by now. It's a popular feature all over the web.

Yes of course there is, have you tried searching? or simply just clicking the coders name and view their profile?

Ted S 06-09-2012 06:31 PM

Quote:

Originally Posted by eternal_ (Post 2337481)
Is there something like this for 4.x.x? I'm looking for a thumbs up option. It should be standard in vbulletin by now. It's a popular feature all over the web.

You mean like the 4.x version of this mod posted in the 4.x section of this forum?


All times are GMT. The time now is 08:20 PM.

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.03077 seconds
  • Memory Usage 1,748KB
  • 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
  • (1)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
  • (3)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