Where can I change the code that makes the logo link return you to the home page? I basically just want to have the logo in Coalition just be a stagnant image with no link.
Logo Link
3 posts from 2 voices-
Posted 9 months ago #
-
Open up coalition\framework\php\function-set-avia-frontend.php and search for following code:
if($logo = avia_get_option('logo')) { $logo = "<img src=".$logo." alt='' />"; $logo = "<h1 class='logo'><a href='".home_url('/')."'>".$logo."</a></h1>"; } else { $logo = get_bloginfo('name'); if($use_image) $logo = "<img src=".$use_image." alt='' title='$logo'/>"; $logo = "<h1 class='logo bg-logo'><a href='".home_url('/')."'>".$logo."</a></h1>"; }Replace it with:
if($logo = avia_get_option('logo')) { $logo = "<img src=".$logo." alt='' />"; $logo = "<h1 class='logo'>".$logo."</h1>"; } else { $logo = get_bloginfo('name'); if($use_image) $logo = "<img src=".$use_image." alt='' title='$logo'/>"; $logo = "<h1 class='logo bg-logo'>".$logo."</h1>"; }to remove the link.
Posted 9 months ago # -
Great...thanks!
Posted 9 months ago #
Topic Closed
This topic has been closed to new replies.














