PDA

View Full Version : Pet description


Koppa
04-04-2010, 06:01 AM
When I add a pet, I put a description.
But in the list of the adoptables pets, there is not description!
How to show it?

Tequila
04-04-2010, 06:34 AM
First find
//If we can adopt the adoptable, show the image and adoption link...

Then place this code in the adopt page:
$article_content = $article_content."
<a href='adopt.php?id=".$aid."'><img src='".$eggimage."' border='0'></a><br /> ".$description."&nbsp;&nbsp;";

if($isloggedin == "yes"){
$article_content = $article_content."&nbsp;";
}
else{
$article_content = $article_content."<p><b>".$guesterror."</b></p>";
}

Should work after that.

Koppa
04-04-2010, 07:17 AM
Thank you, the file is adopt.php

Tequila
04-04-2010, 02:15 PM
Thank you, the file is adopt.php


Yeah, it's in that one. Sorry, we've had quite the week today...

Koppa
04-05-2010, 01:44 PM
Can i do the same effect in the pets that appears in the promo page?

Tequila
04-05-2010, 03:07 PM
Can i do the same effect in the pets that appears in the promo page?


I don't see why it wouldn't. The ".$description." element is the key to making it show up.

Koppa
04-05-2010, 03:36 PM
Can you help me to modify the file please?