PhotoPost Photo Gallery Sales PhotoPost Sales Toll Free Phone Number
Mon-Fri 9am-4pm EST
  PhotoPost Photo Sharing Photo Gallery    Visualize community tm
| | | | | | | | |

Go Back   PhotoPost Community > PhotoPost Support > ReviewPost Pro Support Forums > ReviewPost How do I...?

ReviewPost How do I...? Wondering how to do something in ReviewPost?

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old January 29th, 2006, 12:11 PM   #1 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
Top Rated instead of Most Popular?

I've noticed that ReviewPost displays the "Most Popular" items. How do I change it to display the "Top Rated" items (the items with the highest score)?

Also, would it be possible to check to make sure there's more than one review, so that way any item that has received only one review and a 10 wont be listed on top.

The only thing similar I was able to find in a search was this thread:
Top Rated Bar and Highest Ratings PAL

But it seems to be out of date.

Thanks
BryanG is offline   Reply With Quote
Old January 30th, 2006, 09:33 AM   #2 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
$query[] = "INSERT INTO {$rp_db_prefix}sort VALUES (1,'Most Active','ORDER BY disporder,lastpost DESC')";
$query[] = "INSERT INTO {$rp_db_prefix}sort VALUES (4,'Most Popular','ORDER BY disporder,rating DESC, views DESC')";


Most popular is highest rating sorted by views secondary. It has nothing to do with lastpost

The thread noted has already been changed in the current reviewpost
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.

Last edited by Chuck S; January 30th, 2006 at 09:35 AM.
Chuck S is online now   Reply With Quote
Old January 30th, 2006, 01:05 PM   #3 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
My top product that's showing up has been viewed 12,000+ times but only has a 5.5 rating where the second product has 10,000+ views and a 9.1 rating.

It's not listing the highest rated first...it's showing the one with the most views.
BryanG is offline   Reply With Quote
Old January 30th, 2006, 03:31 PM   #4 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
This is what is in the reviewpost index file. Most popular is views here but you can change it like noted in that thread if you want it to operate differently

Code:
Content visible to verified customers only.
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old February 2nd, 2006, 09:40 AM   #5 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
I tried changing it and for some reason it's still showing the product with 12,000+ views and only a 5.5 rating.

I think it has to do with the fact that the average score is figured out on the showproduct page and the query is basing the rating on what's in the database, which is a 10 for the first review (but the second review was only a "1").
BryanG is offline   Reply With Quote
Old February 2nd, 2006, 09:51 AM   #6 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
The average rating is stored in the products table

Just change the query noted to whatever ORDER BY you want
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old February 2nd, 2006, 03:03 PM   #7 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
I did that:

Code:
Content visible to verified customers only.
It still shows the one with the 12,000 views but 5.5 rating first. I even tried "ORDER by rating" by itself and I still get the same results.
BryanG is offline   Reply With Quote
Old February 2nd, 2006, 03:23 PM   #8 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
Have you made sure to turn off the cache in Global Options so your seeing the results in real time?
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old February 2nd, 2006, 03:28 PM   #9 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
Yes. I even tried doing a complete refresh of the page (CTRL+R). Also tried clearing my browser cache.

Edit: Wanted to add that this is for the "Show Most Popular images on Index page?" option, not the "Most Popular PAL".

Changing the query option does change the PAL, but doesn't change the "Most Popular images on Index page" box.

Last edited by BryanG; February 2nd, 2006 at 03:35 PM.
BryanG is offline   Reply With Quote
Old February 2nd, 2006, 03:45 PM   #10 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
This thread is about a PAL

If your trying to change the most popular images thats a whole separate file etc

pp-inc.php edit the display_gallery function
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old February 2nd, 2006, 09:04 PM   #11 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
Got it. It's changing now.

I fixed it by changing the order to:

ORDER BY ratings DESC, numreviews DESC

And now it gives me the top rated items with the most reviews in descending order.

But, I seem to have run into another problem...It's not changing the products on the showcat page even though, from what I understand from showcat.php, it's calling the same function from pp-inc.php as index.php does. Am I right?
BryanG is offline   Reply With Quote
Old February 2nd, 2006, 09:11 PM   #12 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
Did you modify the proper query There are multiple queries in each case for specific aspects
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Old February 2nd, 2006, 09:17 PM   #13 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
Yup. I modified case "most_views", and that's what showcat.php calls.

From showcat.php:

Code:
Content visible to verified customers only.
BryanG is offline   Reply With Quote
Old February 2nd, 2006, 09:21 PM   #14 (permalink)
Member
Verified Customer
 
Join Date: Sep 2002
Posts: 201
Nevermind...there's another query for catviews.
BryanG is offline   Reply With Quote
Old February 3rd, 2006, 06:01 AM   #15 (permalink)
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,683
Yep there is a spefic query to limit the reviews by cat
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Top Rated jfspam How Do I? - vBulletin 3.0.X 1 July 25th, 2005 01:27 AM
top rated images clearchannel Installs and Upgrade - vBulletin 3.0.X 6 May 12th, 2005 04:49 PM
Highest Rated/Most Popular ghinton General Discussion 3 August 13th, 2004 12:44 PM


All times are GMT -5. The time now is 06:48 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0