Results 1 to 4 of 4

Thread: Editing the rating options?

  1. #1
    Join Date
    Aug 2001
    Location
    Toronto, Ontario
    Posts
    678

    Default Editing the rating options?

    How do I edit what it says in the drop down menu for the reviews? Currently it says.. excellent , good, poor.

    I don't want to add any stars icon, or anything.

    I just want to change the selection in the drop down menu in the reviews.html I just can't seem to find where to edit it.

  2. #2
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    1. go to admin area, drop rating table
    2. edit admin/db_create.php3 line 158-167, change the value to any text

    PHP Code:
              $query "INSERT INTO rating VALUES (1,'Poor')";
              
    $result mysql_query($query);
              
    $query "INSERT INTO rating VALUES (2,'Fair')";
              
    $result mysql_query($query);
              
    $query "INSERT INTO rating VALUES (3,'Good')";
              
    $result mysql_query($query);
              
    $query "INSERT INTO rating VALUES (4,'Very Good')";
              
    $result mysql_query($query);
              
    $query "INSERT INTO rating VALUES (5,'Excellent!')";
              
    $result mysql_query($query); 

  3. #3
    Join Date
    Aug 2001
    Location
    Toronto, Ontario
    Posts
    678

    Default Re Create the Rating Table?

    When I drop the rating table and edit the db create.php3 file, I had to recreate the rating table or my ratings don't show up.

  4. #4
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    Sorry, I forgot it. Yes, you have to recreate rating table again.

Similar Threads

  1. order by rating, hits, etc. hack.
    By scheetz in forum Blocks and Modification
    Replies: 28
    Last Post: 07-09-2006, 07:58 AM
  2. Replies: 6
    Last Post: 02-23-2004, 10:40 AM
  3. importance of link rating
    By tjoerg in forum v5.x
    Replies: 13
    Last Post: 01-03-2004, 09:51 PM
  4. Replies: 1
    Last Post: 03-03-2003, 09:01 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •