Flip Card Full Image no Text

I am creating Fullfront Image Flipcards with no Text.

But if i leave Title and Text field empty there apears a Text from your Developers.

I will create a lot of those cards everywere on the page. what is a simply solution?

1 Like

I’ve come across the same issue, today I will be making my own element to get around this. There is a detailed guide https://theme.co/apex/forum/t/cornerstone-custom-elements/217 here for custom elements.

Hi There,

Yes, you can create your own element as @MarvinTheMouse suggested or we can remove those text on the fly using the following JS code. Try adding this on Cornerstone > Custom JS:

  jQuery(document).ready(function($) {
	$(".front .x-face-inner p").remove();
	$(".front .x-face-inner h4").remove();
  });

Remove .front from the code if you want to remove text on both front and back of the card.

Hope this helps.