Patrik
Forum Replies Created
-
AuthorPosts
-
Hi,
The CSS you suggested is not the valid one. You have to use the following CSS:
.uwp-account-form label {display:block !immportant;}
Also, let me know if you are using our legacy design or Bootstrap design? The above CSS should work for legacy design. For bootstrap you can try following CSS:
.bsui .uwp-account-form label.sr-only {position: initial;height: auto;width: auto;}
Regards,
PatrikHi,
That is due to font awesome icon changes the <i> tag to <svg> and due to that our JS is not able to remove the loader and instead it only appends the loader. We have made a fix for this. We are looking into the hide/show issue as it is for your site only and not generated on our test site.
Regards,
PatrikDecember 13, 2019 at 10:21 am in reply to: UsesWp prevents Divi backend from loading correctly #6240Hi,
We will take care of this in the next update of the plugin. We will check if we are in the editing or preview mode of the divi page then we will prevent the redirection.
Regards,
PatrikThis reply has been marked as private.Hi,
The minimum character limit is not possible in textarea but the maximum character limit is possible. You can try using JS to count the characters input in the text area and show/hide the submit button accordingly or just show error on textarea blur event. This is a part of customization so I have given you a hint. This can be also managed from the code using a filter but that will require help from a developer.
Regards,
PatrikDecember 13, 2019 at 5:34 am in reply to: Split: Column change failed, you may have too many columns. #6233This reply has been marked as private.Hi,
I have added this as a custom JS code with the name “JS to limit vegan story characters on users page” in the Custom CSS & JS.
Please review it and let me know your inputs.
Regards,
PatrikHi,
You can limit the content using the following JS code:
jQuery(".uwp-users-loop div.d-inline-block").text(function(index, currentText) { return currentText.substr(0, 175); });
Change the 175 to the number of characters you want to limit.
Regards,
PatrikHi,
Currently, tabs are available for limited things like posts, GD listings, Invoices, WooCommerce products, orders, bbPress forums, topics etc. For custom post types, if your theme provides shortcode to display posts of the video custom post types then you can do add a profile tab from UsersWP->form builder->Profile Tabs
Regards,
PatrikDecember 12, 2019 at 10:50 am in reply to: Split: Column change failed, you may have too many columns. #6200This reply has been marked as private.December 12, 2019 at 10:44 am in reply to: Link details are not showing up in the forgot password email. #6199This reply has been marked as private.Hi,
The following are the hooks you can use while processing registration form:
‘uwp_before_validate’ => Triggers before fields validation
‘uwp_validate_result’ => Filter for additional validations
‘uwp_after_validate’ => Triggers after validation
‘uwp_before_extra_fields_save’ => Filter for modifying custom fields before save
‘uwp_after_extra_fields_save’ => Filter for modifying custom fields after save
‘uwp_after_custom_fields_save’ => Triggers after custom fields saved
‘uwp_after_process_register’ => Triggers after registration is complete which you can use.Regards,
PatrikHi,
We have fixed this issue on your site. Please review it and let me know.
Regards,
PatrikHi,
We have fixed other issues but regarding account update showing 404 error, we need to troubleshoot by deactivating the plugins as it may be due to conflicts. Kindly let us know the details of your staging server and we can do troubleshooting there without affecting your live users.
Regards,
PatrikHi,
We have fixed this and it will be available in the next release. Let us know the FTP details so that we can make changes to your site as well.
Regards,
Patrik -
AuthorPosts