Hey,
the WP gallery doesn't offer a link option and you can only hardcode your image links into footer.php - open up the file and replace:
if(is_front_page() || avia_get_option('footer_logo_where') == 'everywhere')
$attachment_holder = avia_get_post_by_title( "avia_smart-logo-gallery");
if(!empty($attachment_holder['ID']))
{
$attachments = get_children(array('post_parent' => $attachment_holder['ID'],
'post_status' => 'inherit',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'menu_order ID'));
if(is_array($attachments))
{
echo "<div class='footer-logos'><div class='container'>";
foreach($attachments as $key => $attachment)
{
echo avia_image_by_id($attachment->ID);
}
echo "</div></div>";
}
}
?>
with:
if(is_front_page() || avia_get_option('footer_logo_where') == 'everywhere') {
echo "<div class='footer-logos'><div class='container'>";
?>
<a href="http://google.com"><img alt="" title="1" src="http://www.kriesi.at/themes/abundance/files/2011/10/1.png"></a>
<a href="http://google.com"><img alt="" title="2" src="http://www.kriesi.at/themes/abundance/files/2011/10/2.png"></a>
<?php
echo "</div></div>";
}
?>
And replace the sample images/links with your logos/links.