mansurahamed
Forum Replies Created
-
Hi @spectraeden,
Please go to Ultimate Member->Settings->General->Page Setup, inside your dashboard and see if you have setup the registration page correctly there.
This could be caused by and cache plugin/ server-side cache you are using exclude the registration page from any cache you are using and see if that solves your issue.
It may also be because of a plugin/theme conflict. Can you do a conflict test and see if the issue goes away? This doc explains how to do a conflict test if you are not sure: How to do a plugin/theme conflict test?
Thanks.
Hi @sakibxvz,
Please follow our documentation on choices callback here
https://docs.ultimatemember.com/article/1486-how-to-use-choices-callback
Thanks.
Hi @alehandro96,
Do you see any error in your browser console? You can right click the button in google chrome, click on Inspect and then view the error in console tab.
This issue may also be because of a plugin/theme conflict. Can you do a conflict test and see if the issue goes away? This doc explains how to do a conflict test if you are not sure: How to do a plugin/theme conflict test?
Thanks.
Hi @breedersspot,
Your link is broken and doesn’t exist. Seems like you need to change placeholder text color, some custom css like this https://www.w3schools.com/howto/howto_css_placeholder.asp needed.
Thanks.
Hi @djmancho,
UM provide hooks for creating your custom email tag. Here is an example of how to create your own custom tag. You can create one for the fields you want to show and use your tag in the welcome email instead of {submitted_registration}.
add_filter( 'um_template_tags_patterns_hook', 'my_template_tags_patterns', 10, 1 ); function my_template_tags_patterns( $placeholders ) { $placeholders[] = '{my_custom_tagname}'; return $placeholders; } add_filter( 'um_template_tags_replaces_hook', 'my_template_tags_replaces', 10, 1 ); function my_template_tags_replaces( $replace_placeholders ) { $replace_placeholders[] = um_user('my_custom_field_value'); return $replace_placeholders; }
Thanks.
Hi @alexplay5,
Seems like a Jquery/css conflict between um and jnews theme. Please contact the theme authors about this this issue and see if they are able to provide a solution. It’s not a free theme, so can’t check this issue.
Thanks.
Hi @jcavery,
“When a user attempts to save their account information”, did you mean saving information in UM account page? If not saving from where?
This may be because of a plugin/theme conflict. Can you do a conflict test and see if the issue goes away? This doc explains how to do a conflict test if you are not sure: How to do a plugin/theme conflict test?
Thanks.
Hi @natgo,
You can modify your homepage template and create custom function to fetch restricted post/page content. That should work.
Thanks.
Hi @mctenold,
Please go to Ultimate Member->User Roles->Author->Edit, inside your dashboard and check “Can access WP admin” there. If that user have multiple role make sure all of those roles have this checked.
Thanks.
Hi @natgo,
If you want to show your restricted content in homepage, the restriction will take over even though you haven’t set any restriction in homepage. Hope it’s clear.
Thanks.
Hi @eframx,
No it’s not possible at this moment. If you use “Show”, if your condition isn’t true it will hide.
Thanks.
Hi @seb33300,
UM doesn’t have this option for security reason. If this setup incorrectly, user may find himself in redirection loop and won’t be able to login again. You can use custom php code to get this done.
Thanks.
Hi @gwmbox,
You can use different profile form for different role, but user page url can’t be changed. See this documentation https://docs.ultimatemember.com/article/100-unique-profiles-for-different-user-roles
Thanks.
Hi @babakras.
You need to use full url like https://www.google.com , if you don’t want to use the http, change the validation method to alphanumeric or custom code your custom validation.
Thanks.
Hi @ammartello97 ,
This may be because of a plugin/theme conflict. Can you do a conflict test and see if the issue goes away? This doc explains how to do a conflict test if you are not sure: How to do a plugin/theme conflict test?
Try deactivating other plugins first and then install UM.
Thanks!