Guust
Forum Replies Created
-
AuthorPosts
-
January 27, 2018 at 12:25 pm in reply to: How to Set Default Login Redirect to Current User Location? #1431
But you can see the page without being logged in, so if you choose to go to the login page, instead of being forced to login, redirects do not work.
Do you have an example of a page that requires a login, meaning a page you cannot see unless you are logged in?January 27, 2018 at 12:00 pm in reply to: How to Set Default Login Redirect to Current User Location? #1427That page does not request a login?
Redirect to the previous page will only work if they visit a page that requires a login.
Can you give an example of such a page?
ThanksJanuary 27, 2018 at 10:28 am in reply to: How to Set Default Login Redirect to Current User Location? #1424If that is not the issue, post URL and WP admin details and we will have a look.
ThanksJanuary 27, 2018 at 1:34 am in reply to: How to Set Default Login Redirect to Current User Location? #1420Can you check your UsersWP settings please?
If that is not the issue, post URL and WP admin details and we will have a look.
ThanksJanuary 25, 2018 at 10:26 pm in reply to: Error: Something went wrong when sending email. Please contact site admin. #1415Please post the URL of your site and WP admin details in a private reply and we will investigate for you.
ThanksHave a look at WP Settings > General > Anyone can register > Yes
Thanks
David, your login details for https://userswp.io/your-account/ are the same as for https://wpgeodirectory.com/your-account/ and the downloads should be ready there.
Let us know.
You should not change any of the core files, but add the CSS to your child theme or a CSS plugin or at GD > Design > Scripts [that is where it works for me].
Otherwise, try adding !important like this:
@media screen and (max-width: 520px) { body.uwp_page .uwp-login, body.uwp_page .uwp-registration, body.uwp_page .uwp-forgot, body.uwp_page .uwp-account {width:auto !important;} }
Thanks
No ETA for the next update I am afraid.
We will add that the next update, and that code worked for me.
If you post your admin details in a private reply, we can check if you like.
Or try changing to@media screen and (max-width: 400px) { .uwp-login, .uwp-registration, .uwp-forgot, .uwp-account {padding: 0px !important;} }
Thanks
Try adding this CSS:
@media screen and (max-width: 400px) { .uwp-login, .uwp-registration, .uwp-forgot, .uwp-account {padding: 0px;} }
Adjust the width as required.
Thanks
It looks like you have changed your site from HTTP to HTTPS, so did you change the Facebook settings too to match?
Site URL should start withhttps://www.
Same for your “Facebook APP Callback URL”, that should start with HTTPS
Please check that the username and password is correct and that the account has admin privileges.
ThanksPlease post your URL and WP admin details in a private reply and we will have a look for you.
We don’t do customizations, you can try finding an expert at http://geodirectoryexperts.com/
But one of the developers wrote this snippet you can use in the Code Snippets plugin, see https://wpgeodirectory.com/docs/useful-plugins/#snippets
function _uwp_custom_profile_access( $access, $user ) { if ( ! ( current_user_can('manage_options') || ( !empty( $user ) && get_current_user_id() == $user->ID ) ) ) { $access = false; } return $access; } add_filter( 'uwp_profile_access', '_uwp_custom_profile_access', 10, 2 ); function _uwp_custom_profile_access_denied( $user ) { ?> <div><p><?php echo __( 'You are not allowed to view this profile!' ); ?></p></div> <?php } add_action( 'uwp_profile_access_denied', '_uwp_custom_profile_access_denied', 10, 1 );
Adjust as required. Thanks
-
AuthorPosts