Hi.
I have two queries regarding a simple listing of all entries which have been rated:
1. I am unable to get the page which lists all entries which have been rated to ‘paginate’ e.g. limit number shown to 15, then click for next 15
2. Also, although my current listing ‘works’ except for 1. above, the link back to the original entry doesn’t i.e. if ...
<a href="{title_permalink=keynotes_central/comments}">{title}</a>
... doesn’t work, what does?
The code being employed is ...
- - - - -
<div class="hp_entries_list">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
{exp:rating:entries weblog="weblogname" orderby_ratings="date" sort="desc" limit="15" dynamic="off" backspace="6"}
<tr>
<td width="99%" valign="top"><div class="hp_entries_items" onmouseover="this.style.backgroundColor=’#F5F5F5’; “onmouseout="this.style.backgroundColor=’#FFFFFF‘“>http://www.domainname.com/weblogname/kc_img/arrowS_orange.gif {title}</div>
<div class="summary_listall">{stars}{rating}{/stars}</div>
<div class="summary_listall">{review}</div>
<div class="posted_by">Posted by <span class="orange">{rating_name}</span> on {rating_date format="%d/%m/%y"} at {rating_date format=’%h:%i%a’} GMT+1
</div>
</td>
<td width="1%" valign="top"><div align="right" class="hp_entries_list_date">{rating_date format=’%d/%m/%y’}</div></td>
</tr>
<tr>
<td valign="top">{paginate}
<div align="left" class="pagecount_L_coms"><div class="paginate_read_more_coms">Page {current_page} of {total_pages} pages</div>
<div align="right" class="pagecount_R_coms">{pagination_links}</div></div>
{/paginate}{/exp:rating:entries}</td>
<td valign="top"> </td>
</tr>
</table>
</div>
- - - - -
What am I missing?
Thanks in advance.
