W3Counterdeveloper
Philadelphia, PA
Awio Web Services LLC
Male
Excluding ONE category from the ratings
There already are no ratings on pages on that theme. There's nothing to change.
To not display ratings on posts in the credit category, you have to edit up to 3 files:
1) index.php to not display the ratings for those posts on the home page
2) single.php to not display the average ratings above the post text
3) comments.php to not display/collect ratings with the comments
In each file, you'll see calls to WPRS functions where the ratings currently appear, such as ratings_list() or ratings_input_table(). The full function reference is available by clicking "Documentation" at the top of this page.
Surround the code with a condition so it is only called when the category is not credit. Example:
if (!in_category("Credit")) {
ratings_table();
}
Posted 28 Nov 08 in WP Review Site
Hi. The package includes a "Top Rated Posts" widget that lets you choose a single category to display, but WordPress does not let you display the same widget more than once in the sidebar. You would have to code one yourself based on that one.
Posted 28 Nov 08 in WP Review Site
Details remain in comment fields!!!
That's WordPress behavior, and usually desirable. Why are you concerned over this?
Posted 27 Nov 08 in WP Review Site
Something like this... <?php visit_site_link("http://www.example.com/index.php?sid=" . $var); ?>
Posted 27 Nov 08 in WP Review Site
Review stars not showing up on blog 'Home' page
First, ensure the comment is not held for moderation. Then, check that you placed this code within The Loop.
Posted 23 Nov 08 in WP Review Site
You're using auto-embed? Then it's adding ratings to your posts and pages like it says. You will have to uncheck that and put the code in the theme yourself to have it only display on parts of the site.
It should take you less than 5 minutes to add this to your own theme. You literally just copy and paste from the code on the documentation page into a few files depending on where you want the ratings.
Posted 23 Nov 08 in WP Review Site
brobinson: You have the boxes in the autoembed checked off. See how you have two sets of stars for each comment, and a place to click stars above and below the comments form? Uncheck those boxes and save the settings.
Posted 22 Nov 08 in WP Review Site
Newb taking over a project - categories question
Wrap that function call in a check:
if (in_category('66')) {
ratings_input_table();
}
Posted 21 Nov 08 in WP Review Site
Unfortunately that domain doesn't resolve to a site!
Posted 21 Nov 08 in WP Review Site
Adding thumbnail photo on home page of AWH theme
Either put the image in the body of the post, or set its URL as a custom field and access that field in the theme.
Posted 21 Nov 08 in WP Review Site
Total Messages: 173
Topics Created: 4
Forums Created: 2