JReviews:Tips & Tricks
From JReviews Documentation
General
How do I display the list of users with the most reviews?
To get a Top 10 users page, create a menu item for this link:
http://www.example.com/index.php?option=com_jreviews&url=reviewers
Submit Form
How do I fix the wysiwyg editor's background problem?
Add this to your joomla template's css file:
* TinyMCE specific rules */ body.mceContentBody { background: #FFF !important; background-image: none; }
Themes
How to make part of theme visible only to administrators?
<?php if($this->Access->isAdmin():?> // Everything here will be available only to admins <?php endif;?>
Troubleshooting