Skip to content

Instantly share code, notes, and snippets.

View sourov-am's full-sized avatar

Sourov Chowdhury sourov-am

View GitHub Profile
@sourov-am
sourov-am / elementor-product-views-fix.php
Last active August 30, 2022 16:17
Elementor template for product details page - product views fix snippet.
// Snippet by MI team - start.
add_action( 'woocommerce_after_single_product', function() {
if ( class_exists( 'MonsterInsights_eCommerce_WooCommerce_Integration' ) ) {
$mi_ec_woo = MonsterInsights_eCommerce_WooCommerce_Integration::get_instance();
if ( method_exists( $mi_ec_woo, 'product_detail' ) ) {
$mi_ec_woo->product_detail();
}
}
} );
// Snippet by MI team - end.