Flip card link (back + link)

Hi there,
first of all, thank for the theme, very good job !
I actually have a question regarding the flip card feature.
In fact, I have set up the feature on my homepage and it works like a charm.
However, what i’m looking for is to add a link (ont the back of the card) but not only on the back button area, I d like the link to be displayed on the global back card.

Any ideas ? thanks !

Hi there,

Please kindly add the JS code below to X > Launch > Options > JS:

jQuery('.x-face-button').each(function() {
	var theHref = jQuery(this).attr('href');
	jQuery(this).closest('.x-face-outer.back').on('click', function() {
		window.location.href= theHref;
	});
});

Thank you.

Good morning, thank you
I tried the code you just sent but i’m affraid it doesn’t work …
In fact the link area is only located on the button …
thanks in advance if you have any advice !

Forget my message !
it works perfectly !
thanks !

You are most welcome. :slight_smile: