
06-13-2009, 12:01 AM
|
Premium Member
|
|
Join Date: Feb 2009
Posts: 373
Gender: Female
Credits: 21,216
|
|
RE: FAQ - LOOK HERE FIRST or risk being ignored!
General Questions:
- - Question I would like to use PNG images, will there be a function later when PNG files can also be used for GD signatures?
Answer As for PNG images, in the future Brandon may expand the fancy signature option to work with png and jpg images in a future release.
- - Question I'd love to install a forum for my pet site, but I want both to recognize the users so they don't have to register twice, how can I do it?
Answer It should be possible to bridge these details with a few modifications. Brandon will post a guide soon on how to bridge the PHPAdopts program with another application, such as a forum.
- - Question Is it possible to choose between languages for members?
Answer Right now it is not possible to select between languages as the script currently is meant to be used in only one language at a time.
- - Question Is it possible to have more then one alternate outcome per adoptable?
Answer Right now it is only possible to have ONE alternate outcome per adoptable. Also as of right now alternate outcomes can only be visible on the level 1 stage or above, NOT on the egg stage! If eggs are to have different images it MUST be a different adoptable!
- - Question I would like to add a chat box to my site. How can I do this?
Answer Chat boxes are NOT recommended for ANY FREE site and are warned against for paid sites.! The constant refresh to maintain a chat box uses a lot of server resources and if you site grows to a decent number of members/visitors you run a HIGH risk of being SHUT DOWN by your host!
- - Question Is it possible to put a link on the menu only visible to admins?
Answer Yes there is go to your functions.php page and in your sidebar function place this(right before the $sidebar = "):
Code:
$group = getgroup();
$cancp = cancp($group);
if($cancp == "yes"){
$admin = "<a href='admin.php'><b>ACP</b></a><br>";
}
else{
$admin = "";
}
$sidebar = "<b><u>".$loggedinname."'s Links:</u></b><br><br>
|