Patrik

Forum Replies Created

Viewing 15 posts - 946 through 960 (of 1,063 total)
  • Author
    Posts
  • in reply to: Social Login Redirect #2503

    Patrik
    Moderator
    Post count: 1971

    You can put anywhere in functions.php but I recommend put at the bottom last. This is the filter which can be used for the website who has requirements to redirect to the custom page. This will overwrite the setting. This will not be added in the plugin core in next release.

    Regards,
    Patrik

    in reply to: Social Login Redirect #2501

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    We have provided a filter to set redirect after login which is available for login form and social login both. Please put the following code in active theme’s functions.php and let me know if it helps:

    
    
    add_filter('uwp_login_redirect', 'uwp_login_redirect_cb');
    function uwp_login_redirect_cb($redirect_to){
        if( ! isset( $_POST['uwp_login_nonce'] )){
            $redirect_to = site_url('add');
        }
        return $redirect_to;
    }

    Regards,
    Patrik

    in reply to: Login error #2498

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    We have recently released a new version of UsersWP. Can you update and let us know if it resolves your issue or not?

    Regards,
    Patrik

    in reply to: Login error #2494

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    Can you please let us know the FTP details so that we can make changes in the code for you. This is already fixed and will be released in next version soon.

    Regards,
    Patrik

    in reply to: Login error #2488

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: CSS CPTs on user account page #2479

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    Thanks for the information. We will look into this and add the class to the listing CPTs.

    Regards,
    Patrik

    in reply to: CSS CPTs on user account page #2474

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    Can you give an example or screenshot so that we can have more idea and make the required changes?

    Regards,
    Patrik

    in reply to: Errors on editing email #2473

    Patrik
    Moderator
    Post count: 1971

    Hi Kirill,

    Thanks for pointing this issue. We have fixed it and it will be available in next release. Let me know if you want to fix it on your site before the release.

    Regards,
    Patrik

    in reply to: Register Redirect Issue #2467

    Patrik
    Moderator
    Post count: 1971

    Hi Joy,

    We have applied the forced redirect after registration. Please review it and let us know if any issues.

    Regards,
    Patrik

    in reply to: Register Redirect Issue #2465

    Patrik
    Moderator
    Post count: 1971

    Hi Joy,

    The redirect will work for auto approve + auto login and you have selected auto approve in registration action settings which will show a message on the form after successful registration. If you want to force redirect after registration then we have provided a hook which you can use. If you want to do that then let me know and I will do it for you.

    Let me know your inputs.

    Regards,
    Patrik

    in reply to: Register Redirect Issue #2463

    Patrik
    Moderator
    Post count: 1971

    Hi Joy,

    Kindly share your FTP details in private reply to take a deeper look.

    Regards,
    Patrik

    in reply to: CSS CPTs on user account page #2459

    Patrik
    Moderator
    Post count: 1971

    Hi Alex,

    It is not possible right now with UWP but we will consider this for next release.
    Thanks for the suggestion.

    Regards,
    Patrik

    in reply to: Logout not actually logging out #2456

    Patrik
    Moderator
    Post count: 1971

    Hi boloboaca,

    It seems you have tried to install few plugins and deactivated them which is causing the problem. I suggest you uninstall those plugins with deleting their data option and reinstall the required plugins only. There are some redirection issues on your site which need to be fixed first.

    Regards,
    Patrik

    in reply to: Avatar link does not work #2442

    Patrik
    Moderator
    Post count: 1971

    Yes, it will be fixed in next release. Here is the PR for that: https://github.com/UsersWP/userswp/pull/213

    Regards,
    Patrik

    in reply to: Avatar link does not work #2440

    Patrik
    Moderator
    Post count: 1971

    Hi Virginie,

    Thanks for pointing this issue. It will be fixed in next release. If you want to fix this, just comment the code at line no. 218 like following:

    //add_filter( 'get_avatar', array($instance, 'uwp_modify_get_avatar') , 1 , 6 );

    We have replaced all the avatar with the profile photo to make it compatible with all the plugins which are using avatar image and if UsersWP is installed. We will try to find other solution to make this work as expected.

    Let me know if you have any questions.

    Regards,
    Patrik

Viewing 15 posts - 946 through 960 (of 1,063 total)