Alex Rollin
Forum Replies Created
-
AuthorPosts
-
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.
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?
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, .moMore info and details here:
We recommend you use the code snippets plugin.
Search the string ‘banner’, let us know
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 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.
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; }
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
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!
When [uwp_login] is shown to a logged in user, the default behavior is to show the dashboard.
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.
Please share WP Admin and login URL so we can check the settings.
Please share WP Admin and login URL so we can check the settings.
This reply has been marked as private. -
AuthorPosts