Re: Logo & Favicon upload in dashboard
For the favicon portion, you could simply add similar to the below to the ClassiPress header.php file so it would simply autodetect whatever favicon was present:
// if favicon is present
if (file_exists($dirs['loc']['theme'] .'favicon.ico')) {
$favicon = $dirs['www']['theme'] .'favicon.ico';
?>
<link rel="shortcut icon" href="<?php echo $favicon; ?>" type="image/x-icon" />
<?php
}
I believe this would make life a lot easier for Classipress users.