Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 6 of 6
I have re-read ticket 64 only to find out it is meant for 0.9 and not 0.8.
Is there another way to do this or this can only be achieved in version 0.9 of Akelos?
Thank you.
I got it to work. Seems like ticket 64 is suffering a bit from cut-and-paste from a different tutorial
Follow the first two steps but when you edit app/views/book/listing.tpl do it like below
{loop books}
<tr {?book_odd_position}class="odd"{end}> // <-- After this line
<td>{book.author.name?}</td> // <-- Insert this line
{loop content_columns}
And if you want a Column header for that, you'll need to do something like this:
<?php $content_columns = array_keys($Book->getContentColumns()); ?> // <-- After this line
<th scope="col">Author</th> // <-- Insert this line
1 to 6 of 6