
10-19-2007, 07:51 AM
|
|
Clueless
|
|
Join Date: Oct 2007
Posts: 23
|
|
Mod to view description & clickable link in admin
Hi,
I was finding it a real pain to have to click on the link to see the details of the persons listing - ex: Description and clickable url to their site, and reciprocal link to validate, so here's what I did so I could see it up front:
Find this code admin/pages/pending.php:
Code:
<td><a href="detail.php?recordID=<?php echo $row_pages['id']; ?>" class="rowLink"><?php echo $row_pages['title']; ?></a> <br>
And place this code, right after it:
Code:
<?php echo $row_pages['description']; ?><br>
<a href="<?php echo $row_pages['url']; ?>" title="click to view page" target="_blank" class="rowLink"><? echo $row_pages['url']; ?></a><br>
Reciprocal link: <a href="<?php echo $row_pages['rLink']; ?>" title="click to view page" target="_blank" class="rowLink"><?php echo $row_pages['rLink']; ?></a>
Now you won't have to click on a link to see the description, go to their site, or check the reciprocal link.
Here's what it looks like:
Joanne
Last edited by jojomart : 10-27-2007 at 03:11 PM.
|