For the devs

Hide compare Button for Specific Products


If you want to hide the Add to Compare button for specific products you can use the following filter hook: add_filter( 'woocommerce_better_compare_show_add_to_compare_button' ,'hide_compare_btn', 10, 2); function hide_compare_btn( $show,...

Modify Products inside the Compare Table on single Product Page


To modify the Query, that show the compare with similar products compare table on a single product page you can use the following filter: $args = apply_filters('woocommerce_better_compare_single_product_compare_products_query_args', $args,...