/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

add_filter( 'pewc_filter_checkbox', function( $checkbox, $child_product_id, $price, $id, $name, $item ) {

    $image_url = ( get_post_thumbnail_id( $child_product_id ) ) ?
        wp_get_attachment_image_url( get_post_thumbnail_id( $child_product_id ), 'thumbnail' ) : wc_placeholder_img_src();
    $image = '<img src="' . esc_url( $image_url ) . '" style="float: left; width: 40px">';

$pos = strpos( $checkbox, '<div class="pewc-checkboxes-list-desc"' );
    $checkbox = substr_replace( $checkbox, $image, $pos, 0 );

    return $checkbox;
}, 10, 6 );
/**
 * @snippet       Hide Clear Link | WooCommerce Variable Products
 */
 
add_filter( 'woocommerce_reset_variations_link', '__return_empty_string', 9999 );
