Enfold theme adds hover animation & lightbox effect to almost images on every pages, including images in View output.
To disable it, please add this code to file functions.php of your active theme:
// Content Views Pro - Disable image hover animation and lightbox of Enfold theme add_filter( 'pt_cv_wrapper_class', 'cvp_theme_disable_enfold_theme_hover' ); function cvp_theme_disable_enfold_theme_hover( $args ) { $args .= ' noLightbox'; return $args; }
Thank you,