Hi there
I've created a secondary website for a client as a squeeze page using Broadscope. He wants the logo to point to his other main website. How? I have tried changing the URL address on the logo when I load it but it doesn't work, it just keeps reloading the existing site. The Broadscope site is
http://myitsupportsydney.com.au/windows-server-data-recovery/
Kind regards
Fergie
How can I make the logo point to another site?
4 posts from 3 voices-
Posted 1 year ago #
-
Hey,
You can modify the output of the logo and its link by changing the function in /framework/php/function-set-avia-frontend.php around line 158.
Copy this code in place of the avia_logo function, and change the URL from MYSITE.COM to the URL you want to point the logo link to:
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='http://MYSITE.COM'>".$logo."</a></h1>"; } else { $logo = get_bloginfo('name'); $logo = "<h1 class='logo bg-logo'><a href='http://MYSITE.COM'>".$logo."</a></h1>"; } return $logo; } }Hope this helps!
James
Posted 1 year ago # -
Hi James,
Yes, it does - thanks so much!
Cheers
FergiePosted 1 year ago # -
Glad that James could help you :)
Posted 1 year ago #
Reply
You must log in to post.














