How to remove sidebar for Dazzling theme with WooCommerce?

@sbeaver

I see that you have already resolved this problem.

For others looking to change “Add to Cart” button with one that says “Read More” and opens product listing itself you can use code like this via Child Theme functions.php file.

/* Code to change "Add to Cart" button to button that links directly to a product */

add_filter( 'woocommerce_loop_add_to_cart_link', 'dazzling_change_add_to_cart_loop' );

function dazzling_change_add_to_cart_loop( $product ) {
    global $product; // this may not be necessary as it should have pulled the object in already

    return '<a href="' . esc_url( $product->get_permalink( $product->id ) ) . '" class="btn btn-default">Read More</a>';
}

A sample Dazzling Child Theme can be downloaded from here.