Get a beautiful and better product flipper image to your store, 100% Responsive, Give your customers a glimpse of another image from your product.
This plugin get your product featured image with the first gallery image and flipp between them on mouse over.
Click Here to Get the Pro Version
TP Product Image Flipper is using woocommerce image size called: woocommerce_thumbnail, if you want to change this size you can do it with our new filter:
add_filter('tppif_image_size', 'your_function');
The following example is using full image size. You can add this function to your functions file.
<?php
add_filter('tppif_image_size', 'tp_change_fliper_image_size');
function tp_change_fliper_image_size($default_image_size) {
return 'full';
}
?>