borisv
Forum Replies Created
-
You mean the code is at the functions.php of your style theme. Did you paste it at the very end? Maybe you didn’t paste it correctly. As I said, the code works on my site (I suppose you checked it out using the link I gave you), so that’s not a UM issue.
when I paste manually something like http://sitename.xyz/logout/?redirect_to=/index.php i can logout.
So that is resolved. There is nothing wrong with UM. I suspect you have a server configuration problem that would be off topic discussion here.
Turn require strong password off. Then the only requirement to remind is that at least one lowercase letter, one capital letter and one number is necessary.
There doesn’t appear to be a problem with that url query string. I would check the user role and change the log out to “Go to custom url” then enter a different location (e.g. /index.php or /member/) and see what happens.
UM is a community builder, not a blogger. If you want to have a way to allow your users to post you can try a plugin for that or hire a developer who can help you with that.
Perhaps you have a corrupt JS AJAX file. I would clone your site and delete UM, then install an old copy first, then update to the latest. If it works, then you know what the problem was. I work with UM version 1.3.26, BTW, so no problems for me.
This doesn’t appear to be a UM issue. You are at the wrong forum.
- This reply was modified 9 years, 7 months ago by borisv.
You could ask a developer to code all that for you. Some of us work for small donations for small projects such as this…
Did you make sure to have visibility set to everyone in those fields? As far as having to type in those fields again, I think that indicates a bigger issue.
If your site is live and big, I would clone it and uninstall UM. Then install this plugin to test and see if it’s UM or not:
https://simple-membership-plugin.com/simple-membership-form-builder-addon/Try this code instead:
add_filter('um_user_profile_tabs', 'custom_tab' ); function custom_tab($tabs) { //Add tab $tabs['test_tab'] = array( 'name' => 'Test Tab', 'icon' => 'um-faicon-users', 'count' => 0 ); return $tabs; } add_filter('um_profile_content_test_tab', 'custom_tab_content' ); function custom_tab_content($args) { echo do_shortcode('[ultimatemember form_id=81]'); }You are supposed to enter the content inside ‘Custom Tab Content’.
echo 'Custom Tab Content';You can not enter a shortcode
- This reply was modified 9 years, 7 months ago by borisv.
I’m not sure what you mean. The modification you ask is unnecessary since the login page consists of 2 buttons: login and register.
Are these custom fields what you added to the registration form?
WP nonces are security tokens. What’s the url to your registration page?
Can you elaborate further?