PDA

View Full Version : Ratings/Reviews Registration Required?


ziggywigged
08-13-2009, 04:19 PM
Is it possible to allow guests (unregistered) users submit ratings and reviews to the system? Also, where can I test/review the admin of phpLD 3?

Thx.

David
08-13-2009, 05:45 PM
I will send you a login to a test admin now. Yes, it is possible to allow ungrestiered users to rate. In the admin panel, click on
Setting > Link Ratings > Required Registered User > No
(same for articles)

ziggywigged
08-13-2009, 06:22 PM
Thx, that answered a lot of questions I had.

Last one, would it be fairly simple to add category and/or link title as h1 tags in the templates?

James
08-13-2009, 06:33 PM
The templates are fairly easy to edit with a standard text editor.

for example in the professional template
for link title you edit link.tpl

<span id="edittitle_{$link.ID}" class="link">{$link.TITLE|escape|trim}</span>

simply add your h tags to the code

<span id="edittitle_{$link.ID}" class="link"><h1>{$link.TITLE|escape|trim}</h1></span>


and you can then of course edit the css file to change the look etc.