Hi,
How can I make the Team Member Image and Team Member Name on the meet the team module clickable? I am trying to achieve something like this
http://www.melbournestars.com.au/players
Hey navindesigns,
Please provide a link to the site/page in question, and the admin info so we can look into this further.
Best regards,
Jordan Shannon
Hi,
Please turn on custom CSS field – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your column element a custom CSS class and then add following code to Functions.php file in Appearance > Editor
function add_custom_div(){
?>
<script>
jQuery(".your-custom-css-class").click(function(){
window.location = jQuery(this).find("a:first").attr("href");
return false;
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_div');
Best regards,
Jordan Shannon
I trying to do the same thing, but cant see where i should put in my link to the individual page on the Team Member block
Hey gallagro,
Are you using the latest Enfold version?
Best regards,
Jordan Shannon