Patrik

Forum Replies Created

Viewing 15 posts - 886 through 900 (of 1,063 total)
  • Author
    Posts
  • in reply to: Bio is Cut Short #2964

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    Can you please provide us with FTP details in private reply? I am not able to regenerate the issue as it works fine on my test site.

    Regards,
    Patrik

    in reply to: User Profile Website Link Opens in Same Windoow #2963

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    You can use jQuery to add target into the URL. Try the following code in your current theme’s functions.php file:

    
    
    add_action('wp_footer', 'wp_footer_cb');
    function wp_footer_cb(){
        if(is_uwp_profile_page()) {
            ?>
            <script type="text/javascript">
                jQuery('.uwp-profile-extra').find('a').attr("target", "_blank")
            </script>
            <?php
        }
    }

    Let me know if it works for you or not.

    Regards,
    Patrik

    in reply to: Registration form not work #2962

    Patrik
    Moderator
    Post count: 1971

    Hi,

    You are not using any SMTP WordPress plugin. I see following error in your cPanel which you need to resolve first.

    Attention! Please register your email IDs used in non-smtp mails through cpanel plugin. Unregistered email IDs will not be allowed in non-smtp emails sent through scripts. Go to Mail section and find "Registered Mail IDs" plugin in paper_lantern theme.

    Follow the process from link https://wpgyan.com/how-to-resolve-please-register-your-email-ids-used-in-non-smtp-mails-through-cpanel-plugin-in/

    You can use the WP Mail SMTP plugin and configure it using your Gmail credentials to send email from your site.

    Regards,
    Patrik

    in reply to: Registration form not work #2948

    Patrik
    Moderator
    Post count: 1971

    Hi Mahavir,

    Please provide us the admin and FTP details in private reply here and we will look into it. You will need to tick the checkbox called “Set as private reply” while replying here to make it private reply which only our staff can see.

    Regards,
    Patrik

    in reply to: Understanding User Roles #2943

    Patrik
    Moderator
    Post count: 1971

    Hi Marius,

    If you want to assign only single role on registration then you can change default user role WordPress settings from Settings->General->New User Default Role and if you want to assign multiple roles then you will need to do it programmatically via hook or filter. You can use ‘user_register’ hook which fires after registration on your site and assigns multiple roles to user id by using add_role($role) function. You can use any plugins also if you want to assign role manually via GUI.

    Let me know if you need any further information.

    Regards,
    Patrik

    in reply to: Geodirectory Listings #2941

    Patrik
    Moderator
    Post count: 1971

    Hi Alanna,

    Admin details are not working. Can you please recheck admin details? Also, please provide us the FTP details in private reply to look more into this issue.

    Regards,
    Patrik

    in reply to: Cover Size Varies #2938

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    We will try to apply other solutions to have a permanent fix in the future version of the plugin. Thanks for letting us know about this.

    Regards,
    Patrik

    in reply to: Cover Size Varies #2929

    Patrik
    Moderator
    Post count: 1971

    Hi Jeff,

    That should be because of the aspect ratio of the uploaded image by the users. It can be fixed by the CSS. Please provide us the admin and FTP details in private reply to troubleshoot this and fix it for you.

    Regards,
    Patrik

    in reply to: Social Login error #2927

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Regarding errors in Twitter social login, it is due to debugging enabled by your hosting provider and it should be disabled. If you can ask your provider to disable it then it will be removed and the login will work properly. I have fixed it by placing the following code in a php.ini file on root folder:

    
    
    display_errors = Off
    display_startup_errors = Off
    log_errors = On
    ignore_repeated_errors = On
    ignore_repeated_source = Off
    html_errors = Off

    This will override the default configurations of hosting provider for your site. You can keep this as well and it will not affect anything on your site. Please check the things and let me know if this resolved your issue or not.

    Regards,
    Patrik

    in reply to: Social Login error #2926

    Patrik
    Moderator
    Post count: 1971

    Hi,

    ERROR: Session path doesn’t exist:

    This can be fixed by your hosting provider as this error displays when the session directory is not available or writable on your hosting.

    If you are self-hosted:
    It is telling us the folder does not exist, you can use this code to check where it is checking

    
    
    $foldername = session_save_path();
        if (is_writable($foldername)) {
            echo '<br>The Sessions folder is writable:'.$foldername;
        } else {
            echo '<br>The Sessions folder is not writable:'.$foldername;
        }

    Let me know if any questions.

    Regards,
    Patrik

    in reply to: wpDiscuz compatibility with login urls #2925

    Patrik
    Moderator
    Post count: 1971

    Hi Brian,

    We are adding this to our tasks list and will work on it and release in next update soon. Thank you for reporting.

    Regarding, Author page, it should redirect to the user profile page because we already have that functionality in UWP core. Can you please check if you have set any redirects from .htaccess or not? When I checked it redirects to the home page which is not the correct behavior.

    Let me know if you have any queries.

    Regards,
    Patrik

    in reply to: plugin wont delete… stuck at deleting #2889

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: plugin wont delete… stuck at deleting #2887

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Tranlastion Strings – Tipos, Bugs and Questions #2881

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
    in reply to: Tranlastion Strings – Tipos, Bugs and Questions #2873

    Patrik
    Moderator
    Post count: 1971
    This reply has been marked as private.
Viewing 15 posts - 886 through 900 (of 1,063 total)