Dynamically generate meta tags and titles for a wordpress page

Either deactivate the filter from the SEO plugin for that page with remove_filter() or use a later priority argument like this:

add_filter( 'the_title', 'ecom_title_filter', PHP_INT_MAX );
add_filter( 'wp_title',  'ecom_title_filter', PHP_INT_MAX );