Rahul Gandhi
Forum Replies Created
-
Hi,
You can easily do that by overriding the template file in your currently active theme and then modify it accordingly. The template file in the plugin is /templates/bootstrap/posts-post.php which you will need to copy in your theme in the userswp/bootstrap/posts-post.php folder and modify it. You can easily hide the excerpt using CSS display:none property as well.
Regards,
PatrikHi,
For every password field in the form, you will see an eye icon on click of which will display the password in plain text. Is that what you are looking for?
Regards,
PatrikI would suggest you create a new ticket and provide a site URL where we can see the buttons and we will reply with the solution.
Regards,
PatrikHi,
WordPress by default doesn’t allow special characters in the username. You can try this plugin https://ww.wp.xz.cn/plugins/wordpress-special-characters-in-usernames/. Let me know if it helps or not.
Regards,
PatrikI will need your website link, please. If you don’t want to provide it here then you can also create a support request on our site http://userswp.io/support.
Regards,
PatrikHi,
Yes, we are still using sessions and not transients yet. You can confirm with your server provider that if the session is enabled on your server and session path is writable?
Regards,
PatrikHi,
Can you provide a site URL or screenshots of the errors so we can check if it’s coming from our plugin or not? If it’s from our plugin we will surely help you fix it.
Regards,
PatrikHi,
We have fixed this and will be available in the next plugin update release.
Regards,
PatrikYou are welcome!
Regards,
PatrikHi,
This should work for you.
[#site_name#] [#sep#] [#user_name#] [#sep#] Maybe some generic text about a platform.If it doesn’t work then create a support ticket on our site http://userswp.io/support for further assistance.
Regards,
PatrikHi,
Here is the code you can put in functions.php file of the currently active theme:
add_filter('uwp_account_available_tabs', 'uwp_account_available_tabs_cb', 10, 1); function uwp_account_available_tabs_cb($tabs){ $tabs['new-tab'] = array( 'title' => __( 'My new tab', 'userswp' ), 'icon' => 'fas fa-user', ); return $tabs; } add_filter('uwp_account_page_title', 'uwp_account_page_title_cb', 10, 2); function uwp_account_page_title_cb($title, $type){ if ( $type == 'new-tab' ) { $title = __( 'My new tab title', 'uwp-messaging' ); } return $title; } add_filter('uwp_account_form_display', 'uwp_account_form_display_cb', 10, 1); function uwp_account_form_display_cb($type){ if ( $type == 'new-tab' ) { echo 'Your custom content goes here...'; } }Let me know if it helps.
Regards,
PatrikHi,
Can check from the page source? I see the <title></title> tag has the same format as you set in the settings. You can check by hover over the tab in the browser as well it’s a page title.
Regards,
PatrikHi,
Is it a user cover image widget or something else? It will generally follow the 16:9 aspect ratio while cropping. Can you try clearing the cache if you are using any?
Regards,
PatrikHi,
Can you please create a support ticket on our site https://userswp.io/support for further assistance?
Regards,
PatrikHi,
Try using following code in functions.php file of the currently active theme or via Code Snippets plugin and let me know if it helps:
add_filter('uwp_get_field_placeholder', 'uwp_get_field_placeholder_cb', 10, 2); function uwp_get_field_placeholder_cb($placeholder, $field){ if(isset($field) && isset( $field->form_type ) && $field->form_type == 'login' && $field->htmlvar_name == 'username' ){ $placeholder = __( "Username or Email", 'userswp' ); if ( isset( $field->is_required ) && ! empty( $field->is_required ) ) { $placeholder .= ' *'; } } return $placeholder; }Regards,
Patrik