Youzify (formerly Youzer)

Hosted Youzify on WP Engine?

Actually Youzify compatible with almost hosting server system and provide. But actually Youzify has some troubles with WP Engine. But don't worry, we already created some snippets to fix the issue. Please do these steps

1. Go to your FTP, and go to folder "wp-content/plugins"

2. Create a PHP file there and name it with "bp-custom.php". But if you already have it, you don't need to create a new one. Just open it

3. Put these snippets on the file and save

Fix Activity and Upload error >> https://gist.github.com/KaineLabs/ac97b95c90c496ff445f24e9e859adba#file-yz_fix_wpengine_scripts_fix-php

Fix Login and Reset Password error >> https://gist.github.com/KaineLabs/9328e334a75a6170fcd8438c252c4eed#file-yzc_wpengine_change_login_url_form-php

Fix Comments (comment button can not be clicked) >>

add_filter( 'wpe_heartbeat_allowed_pages', function( $pages ) {
    global $pagenow;
    $pages[] =  $pagenow;
    return $pages;
});