How to remove a plugin filter’s priority on specific loops (custom queries)?

How about doing remove_filter( 'posts_orderby', 'rs_weighted_orderby' );? If that doesn’t work, you could apply your own filters with higher priorities…but that’s sorta hackey, and I would avoid it if possible.

tech