Difference between revisions of "JReviews:Tips & Tricks"

From JReviews Documentation
Jump to: navigation, search
Line 25: Line 25:
 
<?php endif;?>
 
<?php endif;?>
 
</source>
 
</source>
 +
 +
=== How to change the rating star images? ===
  
 
== Troubleshooting ==
 
== Troubleshooting ==
 
*[[Modules missing from content pages]]
 
*[[Modules missing from content pages]]
 
 
 
 
__NOTOC__
 

Revision as of 13:04, 5 September 2009

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;?>

How to change the rating star images?

Troubleshooting