Hello,
Open up framework > php > function-set-avia-frontend.php. Look for this code.
if(!function_exists('avia_logo'))
{
/**
* return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
* otherwise display the logo file linked in the css file for the .bg-logo class
* @return string the logo + url
*/
function avia_logo()
{
if($logo = avia_get_option('avia, logo'))
{
$logo = "<img src=".$logo." alt='' />";
$logo = "<h1 class='logo'><a href='".home_url('/')."'>".$logo."</a></h1>";
}
else
{
$logo = get_bloginfo('name');
$logo = "<h1 class='logo bg-logo'><a href='".home_url('/')."'>".$logo."</a></h1>";
}
return $logo;
}
}
Replace it with this.
if(!function_exists('avia_logo'))
{
/**
* return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
* otherwise display the logo file linked in the css file for the .bg-logo class
* @return string the logo + url
*/
function avia_logo()
{
if($logo = avia_get_option('avia, logo'))
{
$logo = "<img src=".$logo." alt='' />";
$alt = get_bloginfo('name');
$logo = "<h1 class='logo'><a href='".home_url('/')."' alt='".$alt."'>".$logo."</a></h1>";
}
else
{
$logo = get_bloginfo('name');
$logo = "<h1 class='logo bg-logo'><a href='".home_url('/')."'>".$logo."</a></h1>";
}
return $logo;
}
}
Regards,
Ismael