Alex Rollin

Forum Replies Created

Viewing 15 posts - 436 through 450 (of 1,075 total)
  • Author
    Posts
  • in reply to: Listing renew option missing #5456

    Alex Rollin
    Moderator
    Post count: 27815

    Hello,

    thanks for pointing that out, it is indeed a feature that should be considered for UsersWP. We are working on a number of new features for UsersWP right now and I will make sure that this issue is reviewed by the developers.

    in reply to: Woocommerce registration vs. UsersWP registration? #5452

    Alex Rollin
    Moderator
    Post count: 27815

    UsersWP uses custom tables for all user meta. All basic WP user info is in the normal WordPress tables, though.

    UsersWP profiles are ‘social’ and often used to show links to directory related functions like adding a new listing.

    Was there something more specific you are looking for?

    in reply to: Terms and Conditions #5446

    Alex Rollin
    Moderator
    Post count: 27815

    That text can be changed by translating the plugin.
    Download the plugin and look inside the folder for the language folder. Edit the po file with POEdit (program) to change the text, then upload to wp-content/uploads/languages/plugins/file.po, .mo

    More info and details here:

    https://userswp.io/docs/translate/

    in reply to: Moderation Question/Request #5394

    Alex Rollin
    Moderator
    Post count: 27815

    We recommend you use the code snippets plugin.

    https://wordpress.org/plugins/code-snippets/

    in reply to: Some strings not translated and avatar problem #5369

    Alex Rollin
    Moderator
    Post count: 27815

    Search the string ‘banner’, let us know

    in reply to: Moderation Question/Request #5368

    Alex Rollin
    Moderator
    Post count: 27815

    The speed of email sending is something to take up with your host. If your host is like most hosts these days, they would probably prefer that you do not use them for sending email and instead send using SMTP.

    The ‘fastest’ sending for email will be a commercial API service like SES or Sparkpost.

    
    
    
    add_filter('uwp_send_admin_email_to', 'uwp_send_admin_email_to_cb', 10, 2);
    function uwp_send_admin_email_to_cb($site_email, $message_type){
    
        $email_to = array();
        if('mod_admin' == $message_type){
            $email_to[] = get_option('admin_email');
            $email_to[] = '[email protected]'; // Change to your email address
            // $email_to[] = '[email protected]'; you can add more email addresses like this
            $site_email = $email_to;
        }
    
        return $site_email;
    }
    
    in reply to: It never logs in on first attempt… never! #5306

    Alex Rollin
    Moderator
    Post count: 27815

    In the past this type of issue is usually due to a cache of the page.

    Try excluding the login and register pages from your cache settings.

    If that doesn’t fix it please share WP Admin credentials and the login URL where you are seeing the issue.

    in reply to: Invitation only #5305

    Alex Rollin
    Moderator
    Post count: 27815

    If it is invite only, then you can disable registration on the site and the link will not be shown.

    Someone might still suss out the link if it is hidden with CSS, but you can try:

    
    
    
    .uwp-footer-link.uwp-register-now {
        display: none;
    }
    
    in reply to: different redirects set in shortcode #5295

    Alex Rollin
    Moderator
    Post count: 27815

    There isn’t an option for that yet, I will add it to the feature requests list.

    In the meantime you can use redirect_to which is a WP feature we support.

    https://wpgeodirectory.com/docs-v2/integrations/userswp/#customizing

    in reply to: dashboard.php shortcode #5271

    Alex Rollin
    Moderator
    Post count: 27815

    If it is on a page, yes, but it [uwp_login] can also be placed in a sidebar.

    There are a number of exciting changes coming to UsersWP in the next releases.

    Thanks for pointing this out!

    in reply to: dashboard.php shortcode #5263

    Alex Rollin
    Moderator
    Post count: 27815

    When [uwp_login] is shown to a logged in user, the default behavior is to show the dashboard.

    in reply to: dashboard.php shortcode #5261

    Alex Rollin
    Moderator
    Post count: 27815

    Please share a link to the page you want to change and we will try to help. Include WP Admin credentials in a private reply if needed.

    in reply to: social login #5240

    Alex Rollin
    Moderator
    Post count: 27815

    Please share WP Admin and login URL so we can check the settings.

    in reply to: Social login add-on #5239

    Alex Rollin
    Moderator
    Post count: 27815

    Please share WP Admin and login URL so we can check the settings.

    in reply to: UWP Profile Edit Capabilities #5229

    Alex Rollin
    Moderator
    Post count: 27815
    This reply has been marked as private.
Viewing 15 posts - 436 through 450 (of 1,075 total)