I haven't found an answer for this in the forums. Someone apparently got an answer, but now that forum post is missing. :/
I just need to change the branding link from root to root/home to bypass a landing page.
How might I do that?
Best Answer Danny , 18 February 2013 - 05:42 PM
Hi Thom,
PHP isn't my forte at this moment in time but you can try adding the following to your child theme or customise plugins functions.php file.
add_filter( 'pagelines_site_logo', 'my_logo_url' );
function my_logo_url( $site_logo ) {
return '<a class="plbrand" href="Add URL Here" title=""><img class="mainlogo-img" src="Add URL to Image Here" alt="" /></a>';
}
Posted 18 February 2013 - 05:07 PM
I haven't found an answer for this in the forums. Someone apparently got an answer, but now that forum post is missing. :/
I just need to change the branding link from root to root/home to bypass a landing page.
How might I do that?
Posted 18 February 2013 - 05:42 PM Best Answer
Hi Thom,
PHP isn't my forte at this moment in time but you can try adding the following to your child theme or customise plugins functions.php file.
Posted 18 February 2013 - 06:02 PM
That did the trick, Danny. Thanks!