Patrik

Forum Replies Created

Viewing 15 posts - 571 through 585 (of 1,063 total)
  • Author
    Posts
  • in reply to: Errors translating #4786

    Patrik
    Moderator
    Post count: 1971

    You can put the following code in the functions.php file of the currently active theme:

    
    add_filter('uwp_template_form_title', 'uwp_template_form_title_cb');
    function uwp_template_form_title_cb($title){
        return __($title, 'userswp');
    }
    

    This will make the title translatable and you can use .po file to translate the page title displaying in the form.

    Regards,
    Patrik

    in reply to: Errors translating #4784

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The title is coming from the register.php template file which you can override in your theme and make changes accordingly. We also have provided a filter ‘uwp_template_form_title’ which you can use to translate the title of any forms.

    Regards,
    Patrik

    in reply to: Errors translating #4782

    Patrik
    Moderator
    Post count: 1971

    Hi,

    The text you are saying is in the form or it’s a page title? We already have all the strings translatable in all the forms. If you are talking about the form title then you have to change the page title to the translated text. If you can provide screenshots then it would be helpful for us to fix the issue.

    Regards,
    Patrik

    in reply to: Well done guys!! So happy with UsersWP #4772

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You have custom requirements and we do not provide support for customization but you can hire a developer to do that easily.

    You can try the following code in your currently active theme’s functions.php file:

    add_shortcode('uwp_wc_products', 'uwp_wc_products_cb');
    function uwp_wc_products_cb(){
    
        if(!is_user_logged_in()){
            return;
        }
    
        $user = get_userdata(get_current_user_id());
        $output = '';
        if(function_exists('uwp_generic_tab_content')){
            ob_start();
            uwp_generic_tab_content($user, 'product', __('Products', 'uwp-wc'));
            $output = ob_get_clean();
        }
    
        return $output;
    }

    You can then use the “[uwp_wc_products]” shortcode for displaying current logged in user’s products.

    Regards,
    Patrik

    in reply to: Social Login Error #4762

    Patrik
    Moderator
    Post count: 1971

    Hi,

    I have fixed issue on your site. The issue was due to the session. When one redirects to FB from your site and come back to your site then the session data is not available due to session destroyed so I have made changes in our plugin to fix. Please review it and let me know if it works for you or not?

    Regards,
    Patrik

    in reply to: Social Login Error #4761

    Patrik
    Moderator
    Post count: 1971

    Hi,

    We are doing the troubleshooting for this issue on your site. We will update you as soon as we find the issue and fix it. Thanks for your patience.

    Regards,
    Patrik

    in reply to: Redirect to Last User Page not working #4760

    Patrik
    Moderator
    Post count: 1971

    Hi,

    I have checked on your site and when I logged in with your given details I got redirected back to the previous page. Can you explain the steps to regenerate the issue so I can do some troubleshooting and fix it for you?

    Regards,
    Patrik

    in reply to: No registration email to new users #4759

    Patrik
    Moderator
    Post count: 1971

    Hi,

    It seems like there is some issue with your site as the default email sent after the registration contains “[#client_name#]” which is not in UWP as UWP supports “[#user_name#]” so there is something changed either in your core files or in the database by other plugins may be.

    If possible, you can try uninstalling UsersWP plugin with erasing all data-enabled and install it again and check if it works or not. You can do this on the staging site instead of on live first.

    Regards,
    Patrik


    Patrik
    Moderator
    Post count: 1971

    Hi,

    You have to use the WP Easy Updates plugin which will display a notice whenever a new update is available. You can get the plugin from here: https://wpeasyupdates.com/

    Regards,
    Patrik

    in reply to: No registration email to new users #4729

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Currently, if you have password field in the registration form then it will not send activation link and will send only new registration email but if you want to force send an email activation link to users then let me know the FTP details in private reply and I will apply some fixes for you. Your above FTP is not working.

    Regards,
    Patrik


    Patrik
    Moderator
    Post count: 1971

    Hi,

    You are using the old version of ReCaptcha add on as we have implemented the new settings interface in UsersWP core plugin, you have to update all the add ons to use the new settings interface. Currently, you have installed latest UsersWP v1.1.3 but Recaptcha add-on v1.0.3 which is an older version. Please update and let me know if any issues.

    Regards,
    Patrik

    in reply to: Profile page not working #4721

    Patrik
    Moderator
    Post count: 1971

    You are welcome!

    in reply to: No registration email to new users #4720

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Can you explain in detail about how you want to use with WP Geodirectory? “Require Email Activation” is the feature of UsersWP and you can set up it for registration form so that users can log in only after email verification.

    Regards,
    Patrik

    in reply to: Profile page not working #4715

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You have disabled the author URL redirect to UsersWP profile page in settings UsersWP->General->Profile->Show Advanced and when I untick it then if fixes the redirect loop issue. Can you check from your side? I have disabled it on both live and staging site.

    Regards,
    Patrik

    in reply to: No registration email to new users #4708

    Patrik
    Moderator
    Post count: 1971

    Hi,

    I have applied the fixes. Please review it and let me know how it works for you.

    Regards,
    Patrik

Viewing 15 posts - 571 through 585 (of 1,063 total)