If you upload and enable the child theme, please paste this into the child theme functions.php
file:
remove_action('woocommerce_before_shop_loop','add_before_products_div',0);
remove_action('woocommerce_after_shop_loop','add_after_products_div',999);
add_filter('sod_ajax_layered_nav_product_container', 'aln_product_container');
function aln_product_container($product_container){
//Enter either the class or id of the container that holds your products
return '#products';
}