Forum Replies Created
-
AuthorPosts
-
SupportMember
What you can integrate, it depends on plugin “Constant Contact” too. UM Advanced have most of the filter/action hooks which are being used by WordPress default system. So if your plugin use these hook it is easy to add them by just toggling the checkbox. Otherwise you will need to use UMP hook and call custom function inside the hook. http://user-meta.com/documentation/advanced/ , here you can find UMP hooks. “user_meta_after_form” might be helpful for you. Thanks.
SupportMemberHello, We are really sorry to disappoint you. There are several factors that could affect plugins functionality such as your server configuration, other installed plugin or your current theme or misconfiguration of the plugin. So it is hard to say why they are not working from outside. As we always improve functionality or add new features on it, it could introduce new bug too. Although we test every version before release but no software are beyond the bug. So when we find any bug, we tried to fix it immediately. However, we need to have a close look on your site to find what are causing these issues. Please set an temp admin account under email support(at)user-meta.com (if it is okay with you). After diagnosis, you can remove or disable that account. Thanks.
SupportMemberHello,
We are happy to know, you love the plugin. May be you can add a checkbox(from third party plugin) to UMP front-end registration. To try that, please install “User Meta Advanced” add-on (http://user-meta.com/add-ons/user-meta-advanced/ ). Go to User Meta >> Advanced
Checkd every checkbox from group “User Registration” under “Integrate Filter/Action Hooks”.Thanks.
SupportMemberHello,
Please use 1.1.6rc2 or 1.1.6rc3.Thanks.
SupportMemberIn which email notification you have used %password% placeholder? Please note, this placeholder will only work in “User Registration Email”.
Thanks.
SupportMemberHello, Which error are showing when you attempt to logout?
SupportMemberHello,
Please download pro version (1.1.6rc3) from http://user-meta.com/downloads/ and install the downloaded version. You will have validation options there.
Thanks.
SupportMemberHi,
Can you get $user->user_login ?
SupportMemberHello,
By default filter “login_redirect” are disabled for avoiding plugin conflict. To enable this please use dev version.
Dev Version (login to download)
and put following code to functions.php to enable the filter
function allow_login_redirect_hook( $isEnable, $hookName ) { if ( 'login_redirect' == $hookName ) $isEnable = true; return $isEnable; } add_filter( 'user_meta_wp_hook', 'allow_login_redirect_hook', 10, 2 );
Thanks.
SupportMemberHello, Please try dev version. You can find dev version from http://user-meta.com/download/?package=user-meta-pro&version=dev
To install dev version, first disable and remove existing UMP (your data won’t be deleted)
Then go to Settings >> General
There is a checkbox that says “Anyone can register”, uncheck this checkbox and save your changes.Bots are using http://example.com/wp-login.php?action=register to register in your site.
Thanks.
SupportMemberHello,
This happened when your server can not communicate with user-meta server. However try http://user-meta.com/activation/ for remotely validate the plugin. If that also fail, send an email to support(at)user-meta.com with your site url.Thanks.
SupportMemberHello,
Put following code to your functions.php (under your current theme)
show_admin_bar(false);
Thanks.
SupportMemberWe’ll take care of it. Thanks.
SupportMemberHello,
You can apply own css to every field into “CSS Style” and unfortunately, multiselect dropdown is not yet provided by UMP, you can use checkbox instead.
Thanks.
-
AuthorPosts