is it possible to have Partner/Logo Element title under elements (not only on hover elements) ?
Hey ceubri!
Edit config-templatebuilder > avia-shortcodes > logoslider.php, find this code on line 465:
$output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
$output .= "</div>";
Replace it with:
$output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
$output .= "<div class='logo-title'>".$hover."</div>";
$output .= "</div>";
Best regards,
Ismael
Great !
last questions ;)
– is it possible to keep same the links ?
– how to update the logoslider.php via my enfold child theme ?
Hi!
You can upload the modified logoslider.php into the child theme folder. However you must add some code into the child theme functions.php file to overwrite the original parent theme code – see: https://kriesi.at/support/topic/have-easyslider-fill-up-entire-column-with-no-padding-or-margins/#post-205281
Regards,
Peter
Cool, the .php in child theme works !
– is it possible to keep the same links than the thumbnails?
e.g. : the title “Reprographie” go to http://www.repromoselle.com/wordpress/prestations/reprographie/
Thanks for your usefull responses (great support) !!!
Hey!
If I am not mistaken, you can replace the code above with this:
$output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
$output .= "<a href='{$link}' title='{$linktitle}' {$blank}><div class='logo-title'>".$hover."</div></a>";
$output .= "</div>";
Cheers!
Ismael
Yes you’re right !!!
THX :)))