Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @aldmor

    Please try adding the following code snippet to fix the compatibility issue with Slim SEO and SEOPress plugins:

    add_action('init','um_011022_seopress_compatibility');
    function um_011022_seopress_compatibility(){
        
         if( ! is_user_logged_in() && isset( $_REQUEST['q'] ) &&  strpos( $_REQUEST['q'],'sitemap') >= 0  ){
            remove_action( 'um_pre_profile_shortcode', 'um_pre_profile_shortcode' );
        }
    }

    You can add the code to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thread Starter aldmor

    (@aldmor)

    Hi, @champsupertramp
    SlimSEO team fix this problem in this commit

    Thanks for help ??

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Thanks for letting us know.

    Regards,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Ultimate member corrupts the site map’ is closed to new replies.