Hello! I have an unclosed div on categories of products page:
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.tanato-flor.com%2Fcategoria-producto%2Fcoronas-de-flores%2F
http://www.tanato-flor.com/categoria-producto/coronas-de-flores/
I have researched and I saw next problem:
– In includes/swift-framework/sw-commerce lines 17 and 18 we can see:
add_action('woocommerce_before_main_content', 'my_theme_wrapper_start', 10);
add_action('woocommerce_after_main_content', 'my_theme_wrapper_end', 10);
I try to change this function
function my_theme_wrapper_end() {
echo '</div>';
}
to this
function my_theme_wrapper_end() {
echo '</div> <!-- Cierre page-content -->';
}
And in source code of webpage I see that this div doesn’t show.
Can you help me to fix it? 🙂