Archived topic
WP Generate Press make logo clickable for click to call (telephone)
2 replies · Started by Eddy on September 28, 2018
Hi,
I am trying to make a logo clickable for for click to call (telephone)
for my friend (Dutch Woodstove Dealer).
add_filter( ‘generate_logo_href’,’generate_custom_logo_href’ );
function generate_custom_logo_href()
{
// Enter the URL you want your logo to link to below
return ‘tel:+31999999999’;
}
I tried to add the snippet in the Code Snippet plugin
but that didn’t work.
Any suggestions !? Thanks !
Please note that the main page is not powered by Generate Press (Just-The-Page Plugin) (html).
Please add /houtkachel/ to the earlier provided url. Thanks
What if you do this?:
add_action( 'after_setup_theme', function() {
add_filter( 'generate_logo_href', function() {
return 'tel:+31999999999';
} );
} );
Let me know :)