Function to Change URL of Main Logo on Newspaper Theme

Posted in: Newspaper
Post count: 103

Hi, I’m looking for a function that I can use in a plugin to change the destination of the main logo URL. We use a reverse proxy setup and need to change the URL of the main logo. We did this for Enfold (see example code below), but are looking for one for Newspaper.

Thanks so much!

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Example (for Enfold theme):

function av_change_logo_link($link)
{
$link = “https://www.mysite.com”;
return $link;
}
add_filter(‘avf_logo_link’,’av_change_logo_link’);

Post count: 20688

Hi,

If you want to change the link destination for the logo you will have to edit these files from the theme, and modify the default home link to what you want
https://www.screencast.com/t/huYiWOZ1
https://www.screencast.com/t/0Ys8OZfze
There is no function I could provide to make this automatically, unfortunately.

Thanks

Post count: 103

Thanks. If there’s a way to include changing this in the theme itself as an option, that would be fantastic!

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.