Viewing 2 reply threads
You must be logged in to reply to this topic.
Hi,
I would like to make the service square icon clickable as well. I saw the solution for the service square but cant seems to find the exact code in the php file.
Can you sent me the code to replace as well as where?
thanks
Mike
Hello,
Edit the services_large.php file.
Find the code:
$output .= '<div class="icon_wrapper"><span class="top"></span><span class="left"></span><span class="right"></span><span class="bottom"></span><i class="'.esc_attr($icon).'"></i></div>';
and replace with:
$output .= '<a href="'.esc_url($data['link']).'"><div class="icon_wrapper"><span class="top"></span><span class="left"></span><span class="right"></span><span class="bottom"></span><i class="'.esc_attr($icon).'"></i></div></a>';
Best regards!
You must be logged in to reply to this topic.