Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TC.K

    (@wp_dummy)

    Because there are conflicts in the plugins.
    You can try add this to your theme’s functions.php:

    if ( function_exists( 'theme_my_login' ) ){
    add_action('init','remove_tml_filter','',1);
    function remove_tml_filter(){
    	if ( isset($_GET['s']) && $_GET['s'] == 'uwpsfsearchtrg' ){
    		$TMLclass = Theme_My_Login::get_object();
    		remove_filter( 'pre_get_posts', array($TMLclass, 'pre_get_posts' ) );
    
    	}
    
    }
    }

    Or, you can just use Ajax result template instead.

    Thread Starter miras72

    (@miras72)

    It’s working. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin doesn't work with Theme My Login’ is closed to new replies.