Regarding display of last modified on (1 viewing) (1) Guest
Favoured: 0
|
|
|
TOPIC: Regarding display of last modified on
|
snip07 (User)
Fresh Boarder
Posts: 7
|
|
Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 0
|
|
Hi I need help on the after content sample code I tried it but it wont display anything on my site. I use joomla 1.5.
I want the Last modified on displayed at the bottom of every title of the article when an article is modified. Thanks!
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
admin (Admin)
Admin
Posts: 475
|
|
Re:Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 10
|
|
Which event did you add the code to, onprepare?
Could you post the code please.
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
snip07 (User)
Fresh Boarder
Posts: 7
|
|
Re:Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 0
|
|
The sample on your page. this one
1. <?php
2. if (isset($row->created)) {
3. echo '<p>';
4. echo '<b>Created on</b>: '.$row->created;
5. if (isset($row->modified) && $row->modified) {
6. echo ' <b>Last modified on</b>: '.$row->modified;
7. }
8. echo '</p>';
9. }
10. ?>
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
admin (Admin)
Admin
Posts: 475
|
|
Re:Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 10
|
|
Is that in Joomla1.5?
It would be $article for every $row in Joomla1.5
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
snip07 (User)
Fresh Boarder
Posts: 7
|
|
Re:Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 0
|
|
its Joomla 1.5
Ok thanks!
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
snip07 (User)
Fresh Boarder
Posts: 7
|
|
Re:Regarding display of last modified on 3 Years, 1 Month ago
|
Karma: 0
|
|
It worked so how do I display the date like this?
Last modified on: 17 December 2008
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
|