This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

EDD User Profiles

Description

EDD User Profiles adds a frontend user profile.

On [edd_profile_editor] will add two new fields: avatar and description

EDD User Profiles automatically adds tabs based on other EDD plugins. Current supported plugins are:

  1. EDD FES
  2. EDD Wish Lists
  3. EDD Downloads Lists

Includes toggleable options to override WordPress author url (to use the user profile url instead) and EDD FES vendor shop url.

Also has support SEO by Yoast plugin.

This plugin requires Easy Digital Downloads.

Screenshots

  • Screenshot from user profile page (Downloads tab)

  • Screenshot from [edd_profile_editor]

  • Screenshot from EDD settings page

Installation

  1. Unpack the entire contents of this plugin zip file into your wp-content/plugins/ folder locally
  2. Upload to your site
  3. Navigate to wp-admin/plugins.php on your site (your WP Admin plugin page)
  4. Activate this plugin
  5. That’s it!

OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name

FAQ

Installation Instructions
  1. Unpack the entire contents of this plugin zip file into your wp-content/plugins/ folder locally
  2. Upload to your site
  3. Navigate to wp-admin/plugins.php on your site (your WP Admin plugin page)
  4. Activate this plugin
  5. That’s it!

OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name

How can I customize a tab output?

First you need default action hook to desired content customization available hooks are:

  1. edd_user_profiles_load_downloads_tab_content
  2. edd_user_profiles_load_wish_lists_tab_content
  3. edd_user_profiles_load_favorite_list_tab_content
  4. edd_user_profiles_load_like_list_tab_content
  5. edd_user_profiles_load_recommend_list_tab_content

Example of custom downloads tab content:

remove_action( 'edd_user_profiles_load_downloads_tab_content', 'edd_user_profiles_load_downloads_tab_content' );

function custom_downloads_tab_content( $user_id ) {
    // Custom code here
}
add_action( 'edd_user_profiles_load_downloads_tab_content', 'custom_downloads_tab_content' );

Contributors & Developers

“EDD User Profiles” is open source software. The following people have contributed to this plugin.

Contributors

Translate “EDD User Profiles” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

1.0

  • Initial release