Troubles with WOOT and Elementor
If you want to place products table into the page created by Elementor you should add next code into the file functions.php:
add_filter('run_wptexturize', function() {
if (is_page(13778)) {
return false;
}
return true;
});
13778 in the code – is the page ID, where you want apply WOOT tables and Elementor constructor.
