Hi, you can use these filters for that:
add_filter( 'wjecf_free_cart_item_price',
function ( $text, $price_html, $cart_item, $cart_item_key )
{
return "<del>" . $price_html . "</del> <strong>" . __('Free!', 'woocommerce') . "</strong>";
}, 10, 4);
add_filter( 'wjecf_free_cart_item_subtotal',
function ( $text, $price_html, $cart_item, $cart_item_key )
{
return "<del>" . $price_html . "</del> <strong>" . __('Free!', 'woocommerce') . "</strong>";
}, 10, 4);