Patrik
Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the delay in reply. Regarding the admin-ajax.php file calling multiple time, it is mostly used for AJAX functionality by plugins and themes. So it will be called frequently by plugins or theme. Calling “wp_1_uwp_updater” function is done when the plugin UsersWP is activated to sync the data of users already existing on the site. This will run only single time.
Regarding message Yoast SEO had turned off “user profiles”, it is because there is a setting in the Yoast SEO plugin to disable author which will disable user profile from the sitemap.
Are you sure you are getting the more CPU usage only if UsersWP is active? I may suggest try installing UWP on the same server but on another site which will allow us to troubleshoot the issue. We didn’t get such a request from our other customers so we wanted to fix it for you asap.
Regards,
PatrikThis reply has been marked as private.Hi,
Redirecting to your profile is due to the theme modifying the user parameter in the URL. So as I said before in my reply that I have to remove the condition to work my fix for the theme in profile page only so it can work on all the pages of the site. I have done this change so please check and let me know. You can’t see those buttons on your own profile so check now and let me know.
Regards,
PatrikThis reply has been marked as private.Hi,
We are working on advanced search add on for UsersWP which will be similar to Geodirectory and will have more user meta fields to search for users. I would say wait for some time.
Regards,
PatrikHi Jeff,
We need FTP details in private reply to troubleshoot the issue.
Regards,
PatrikHi,
The theme is modifying the author URL which is breaking our functionality. I have added the following code in functions.php file of child theme and it is specific to the profile page so that the theme’s functionality doesn’t break on other pages:
add_action('template_redirect', 'invideo_init_cb'); function invideo_init_cb(){ if(is_uwp_profile_page()){ remove_action('author_link', 'invideo_new_author_link'); } }
Let us know if there is an issue on other pages as well and I can remove the condition to fix it on all the pages.
Regards,
PatrikHi,
The FTP works fine but there are no files and folders showing. Can you choose the proper path to the root of the website so I can access all the files and folders of your site?
Regards,
PatrikThis reply has been marked as private.This reply has been marked as private.December 9, 2019 at 11:45 am in reply to: E-Mail-notification with content, when User changed his Account-Information. #6150Hi,
There is no any quick code for that but you can use several hooks to do it. What you can do is modify account email template content by adding a tag like [#account_fields#] and on sending email use filter “uwp_send_mail_message” to replace that tag with the account form fields.
Regards,
PatrikHi,
You can check the setting at UsersWP->Addons->Geodirectory->CPT listings in profile.
Regards,
PatrikHi,
Can you tell me the exact hook you are using or provide code? We can help to provide a hint but as per our policy, we don’t provide support for customization. You have to hire a developer for that.
Regards,
PatrikHi,
It looks like your theme is changing the default WordPress author URL which is causing issues for the followers and friends add-ons not showing tabs data. We will need FTP details in private reply to troubleshoot more.
Regards,
PatrikHi,
You can do that from the UsersWP->Form Builder->Profile Tabs on the admin side. Just add the listing from the left panel and configure it as required. You can remove posts if not required.
Regards,
Patrik -
AuthorPosts