Hi, I built http://www.wayofthegun.us/ for a client and we are getting feedback from visitors that they are not able to click the icons. Really, I think these icons should have the same link as the title. They are what you would expect to click. How can I do that in the Avia Layout Builder?
Thanks!
Hi,
I did not test this mod but you probably you can apply a link to the icon easily. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesiconbox.php and replace
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
with
if(!empty($link))
{
$output .= "<a href='$link' title='".esc_attr($title)."' $linktarget>";
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
$output .= '</a>';
}
else
{
$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
}
That worked! Thanks.