PATH:
home
/
lab2454c
/
incforce.com
/
wp-content
/
plugins
/
paid-memberships-pro
/
includes
/
compatibility
<?php /** * WP Engine Compatibility * * In addition to this code to fix the PMPro password reset form, note that * WP Engine also has aggressive caching that your login page * should be excluded from, especially if you experience issues * with your login page. * https://wpengine.com/support/cache/#Cache_Exclusions * * @since 2.4.1 */ /** * Add wpe-login parameter when sending lost password email. * * @param string $url of lost password page. */ function pmpro_wpe_fix_lostpass( $url ) { if ( strpos( $url, 'wpe-login=true' ) === false ) { $url = add_query_arg( 'wpe-login', true, $url ); } return $url; } add_filter( 'lostpassword_url', 'pmpro_wpe_fix_lostpass' ); /** * Add wpe-login parameter when resetting password. * * @param string $url of reset password page. * @param string $path to lost password page from site domain. */ function pmpro_wpe_fix_resetpass( $url, $path ) { if ( strpos( $path, 'action=resetpass' ) !== false && strpos( $path, 'wpe-login=true' ) === false ) { $url = add_query_arg( 'wpe-login', 'true', $url ); } return $url; } add_filter( 'site_url', 'pmpro_wpe_fix_resetpass', 10, 2 );
[-] woocommerce.php
[edit]
[+]
..
[-] bluehost-wordpress-plugin.php
[edit]
[-] siteorigin.php
[edit]
[-] wp-engine.php
[edit]
[-] elementor.php
[edit]
[-] jetpack.php
[edit]
[-] lifterlms.php
[edit]
[-] avada.php
[edit]
[-] oxygen-builder.php
[edit]
[-] theme-my-login.php
[edit]
[+]
elementor
[-] divi.php
[edit]
[-] buddypress.php
[edit]
[-] beaver-builder.php
[edit]