Issue with classic card element after latest upgrade

Hello there, i’m experiencing a quite big issue with classic card elements on my homepage.
After some tweaking, till the update, they were expecting to open links when clicking on them…now this is not working anymore and don’t know how to fix it…leaving username and password into a secure note hoping you can help me…
thanks in advance!!
A.

I think i got panic too early, solved this myself. I was using this js code to make the whole card linkable (instead only the click me button)

    jQuery(document).ready(function($){
	$('div[data-x-element="card"]').each(function(){
		var btn_link = $(this).find('.x-face-button').attr('href');
		$(this).wrapInner('<a href="'+ btn_link +'" target="_blank"></a>');
	});
});

so after inspecting the page, i noticed that was only needed to replace “card” with “classic_card” .

Thank you!

Howdy @asteriaspace, thanks for writing in!

Glad you were able to figure things out and a big thank you to letting us know all is well along with the solution you found, that is always appreciated. Yes, we did indeed change that element reference some time back, so glad you were able to get that back up and running.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.