Is it possible to hack the code to make it so jrating doesn't show up on a specific page? In my case I don't want it to appear on the homepage.

Comments

hickory’s picture

You could use CSS to hide the form - it'll still be generated, but no-one will see it - try this:

In your page.tpl, within <head>, add

<?php if ($is_front) : ?>
<style type="text/css">
div.rating-item { display: none; }
</style>
<?php endif; ?>
sisconda’s picture

Thanks for the quick response. Worked perfectly!

hickory’s picture

Assigned: Unassigned » hickory
Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)