• I added below function in fuinction.php its block this wish list functionality.

    function redirect_non_admin_users() {
    if ( ! current_user_can( ‘manage_options’ ) && ‘/wp-admin/admin-ajax.php’ != $_SERVER[‘PHP_SELF’] ) {
    wp_redirect( home_url() );
    exit;
    }

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘wordpress ajax blocks this plugin.’ is closed to new replies.