WP Frontend Profile
by Glowlogix 4.3 (9 reviews)

WP Frontend Profile

WP Frontend Profile allows users to edit/view their profile and register/login without going into the dashboard to do so.

WP Frontend Profile ranks #14,493 among WordPress.org plugins with 100+ active installations, is #1,750 of 8,548 in the Customization category, a 4.3/5 rating from 9 reviews, and was last updated Feb 21, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.8 (Current: 7.1)
v1.3.9 Current Version v1.3.9
Updated 6 months ago Last Update on 21 Feb, 2026
Refreshed 13 hours ago Last Refreshed on
#1,750 of 8,548 in Customization Top 25% by installs Downloads -30.5% this week
View on WordPress.org
Rank
#14,493
+1102 this week
Active Installs
100+
-44.4%
KW Avg Position
105.3
0.4 better
Downloads
22.3K
+34 today
Support Resolved
0%
No change
Rating
86%
Review 4.3 out of 5
4.3 (9 reviews)

Next Milestone 200

Total Progress 36%
100+ 200+
7,809
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 64 more installs to reach 200+

Rank Changes

14,227 14,459 14,691 14,922 15,154 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
14,007 14,301 14,595 14,889 15,183 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Current #14,493
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

10 20 30 40 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
10 20 30 40 50 60 70 01-09-2026 02-09-2026 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.3
9 reviews
Overall 86%
5
6 (67%)
4
1 (11%)
3
1 (11%)
2
1 (11%)
1
0 (0%)

Security History

Source: WPVulnerability

14 known vulnerabilities on record · 3 in the last 24 months · checked 1 month ago

  1. WP Frontend Profile [wp-front-end-profile] < 1.3.9

    CVE-2026-1644 · Fixed in v1.3.9

  2. UNPATCHED

    WP Frontend Profile [wp-front-end-profile] <= 1.3.9 (unfixed)

    CVE-2026-39688 · No fix released

  3. WP Frontend Profile [wp-front-end-profile] < 1.2.6

    CVE-2022-4974 · Fixed in v1.2.6

  4. WP Frontend Profile [wp-front-end-profile] < 1.3.2

    CVE-2023-51483 · Fixed in v1.3.2

  5. WP Frontend Profile [wp-front-end-profile] < 1.3.1

    CVE-2023-33999 · Fixed in v1.3.1

  6. WP Frontend Profile [wp-front-end-profile] < 1.2.5

    Fixed in v1.2.5

  7. WP Frontend Profile [wp-front-end-profile] < 1.2.6

    Fixed in v1.2.6

  8. WP Frontend Profile [wp-front-end-profile] <= 1.2.5

    Affected <= 1.2.5

  9. WP Frontend Profile [wp-front-end-profile] < 1.2.2

    Fixed in v1.2.2

  10. WP Frontend Profile [wp-front-end-profile] < 1.2.2

    Fixed in v1.2.2

Showing the 10 most recent of 14 records.

TL;DR

AI summary of the plugin's readme

WP Frontend Profile is for WordPress site owners who want visitors to manage accounts without accessing the wp-admin dashboard. It solves this by providing frontend shortcodes and extensible tabs for profile editing, password changes, registration, and login.

  • Edit profile from frontend
  • Register and login shortcodes
  • Change password tab
  • Extensible tabs via filters
  • Multiple field types support
  • Login widget
  • Mailchimp addon
  • Content restriction for paid members

Frequently Asked Questions

Common questions about WP Frontend Profile

Tabs can be added using the wpfep_tabs filter provided. Below is an example of how to add a tab after the default Profile and Password tabs. <?php function wpmark_add_tab( $tabs ) { /* add our tab to the tabs array */ $tabs[] = array( 'id' => 'wpmark_tab', 'label' => 'Testing', 'tab_class' => 'testing-tab', 'content_class' => 'testing-content', ); /* return all the tabs */ return $tabs; } add_filter( 'wpfep_tabs', 'wpmark_add_tab', 30 ); ?> Note here the priority of 30 which means after the Profile tab (10) and the Password tab (20).
Fields can be added to a tab using a dynamic filter named wpfep_fields_$tab_id. The tab ID is the id of tab as declared when adding the tab (see FAQ above). This means that you can add fields to any tab even the default tabs. Below is an example of how you would add fields to a tab with the ID of wpmark_tab: <?php function wpmark_add_tab_fields( $fields ) { $fields[] = array( 'id' => 'testing_field', 'label' => 'Testing', 'desc' => 'Just testing.', 'type' => 'text', 'classes' => 'testing', ); return $fields; } add_filter( 'wpfep_fields_wpmark_tab', 'wpmark_add_tab_fields', 10 ); ?>
Yes there are two field IDs reserved which are user_email and user_url. This is because you should not save new meta data with these keys are they already exist, but not in the user_meta table.

Sign In / Register

You need to sign in or register to use this feature.