Hi there,
Please consider that this is a customization and such a feature is not available in our theme. Customization requests are outside of our support scope and we will not be able to implement or maintain the code in future releases.
We will do our best to give you correct suggestion on how to achieve the result.
Please kindly add the code below to X > Launch > Options > JS:
jQuery('.x-face-button').on('click', function(e) {
e.preventDefault();
var theItem = jQuery(this).closest('.x-card-outer');
theItem.closest('.x-column').find('.x-card-outer').removeClass('flipped');
theItem.next().trigger('click');
});
The Javascript code above registers an event handler for each back button of a flip card:
jQuery('.x-face-button').on('click'
Then prevents the link of the button to go to the top of the screen as normal #
href value would do:
e.preventDefault();
After that it finds the parent card of the button and stores it in a variable:
var theItem = jQuery(this).closest('.x-card-outer');
Then it finds the closest column which all the cards are there and searches for each card and makes sure that if they are already flipped, they go to the original position by removing the flipped HTML class:
theItem.closest('.x-column').find('.x-card-outer').removeClass('flipped');
And finally the code goes to the next flip card item and simulates the click event to flip the next card:
the item.next().trigger('click');
Hope it helps.