Title: WP Frontend Profile
Author: Glowlogix
Published: <strong>ડિસેમ્બર 6, 2014</strong>
Last modified: ફેબ્રુવારી 21, 2026

---

પ્લગીન શોધો

![](https://ps.w.org/wp-front-end-profile/assets/banner-772x250.png?rev=2183427)

![](https://ps.w.org/wp-front-end-profile/assets/icon-256x256.png?rev=2183427)

# WP Frontend Profile

 [Glowlogix](https://profiles.wordpress.org/glowlogix/) દ્વારા

[ડાઉનલોડ](https://downloads.wordpress.org/plugin/wp-front-end-profile.1.3.9.zip)

 * [વિગતો](https://gu.wordpress.org/plugins/wp-front-end-profile/#description)
 * [સમીક્ષાઓ](https://gu.wordpress.org/plugins/wp-front-end-profile/#reviews)
 *  [સ્થાપન](https://gu.wordpress.org/plugins/wp-front-end-profile/#installation)
 * [ડેવલપમેન્ટ](https://gu.wordpress.org/plugins/wp-front-end-profile/#developers)

 [સપોર્ટ](https://wordpress.org/support/plugin/wp-front-end-profile/)

## વર્ણન

WP Frontend Profile gives you the ability to add a extensible user profile section
to the frontend of your WordPress website. By default the plugin adds two tabs to
the frontend profile. One of these tabs, titled profile, allows a user to edit their
user data including email, first and last names, URL and bio (description). The 
password tab allows a user to change their password for the site.

#### Plugin Extensibility

As the frontend profile is rendered with tabs you can easily add your own tabs with
your own fields to store user meta data. Tabs and fields are added through filters
and all the saving of the data is taken care of for you.

You can add the following field types:

 * WYSIWYG
 * Select
 * Multi Select
 * Radio
 * Text Area
 * Checkbox
 * Password
 * Email
 * Text

See FAQs for how to add our own fields and tabs.

#### Profile Output

To output the frontend profile feature you can use the following shortcodes in editor:

 * Profile page `[wpfep-profile]`
 * Edit profile `[wpfep]`
 * Register page `[wpfep-register]`
 * Login page `[wpfep-login]`

#### Features

 * Added Login Widget
 * Addon for Mailchimp
 * Added Content Restriction feature for paid members.

## સ્ક્રીનશોટ

 * [[
 * WP frontend profile edit page.
 * [[
 * WP frontend profile register page.
 * [[
 * WP frontend profile login page.
 * [[
 * WP frontend profile setting area.
 * [[
 * WP frontend profile tool area.
 * [[
 * WP frontend profile system status area.

## બ્લોક્સ

આ પ્લગિન 1 બ્લોક આપે છે.

 *   Frontend Profile

## સ્થાપન

 1. Upload the plugin folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

After having installed the plugin:
 1. Create a new Page “Profile” for profile and
insert shortcode [wpfep-profile] 2. Create a new Page “Edit Profile” for editing
profile and insert shortcode [wpfep] 3. Create a new Page “Login” for login form
and insert shortcode [wpfep-login] 4. Create a new Page “Register” for registration
form and insert shortcode [wpfep-register] 5. Set the Edit Page option from Pages
tab on settings page.

## એફએક્યુ (FAQ)

For more information and more extensive documentation about this plugin checkout
the [WP Frontend Profile Wiki](https://github.com/wpmark/wp-frontend-profile/wiki)
on Github.

### How do I add my own tab to the profile output?

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).

### How do I add fields to a tab?

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 );
    ?>
    ```

### Are there any field IDs I cannot use?

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.

## સમીક્ષાઓ

![](https://secure.gravatar.com/avatar/46b32823043043088d1ad5f0b0de6a73efad2f88c5bf202f37a1416921ca7f64?
s=60&d=retro&r=g)

### 󠀁[Frontend Profile](https://wordpress.org/support/topic/frontend-profile/)󠁿

 [lordkahler](https://profiles.wordpress.org/lordkahler/) એપ્રિલ 6, 2026 1 reply

One of the easiest plugins to use

![](https://secure.gravatar.com/avatar/da78e0f125efd8c27e2c36615348a954be82b9d8dedcaac48db8799586d98246?
s=60&d=retro&r=g)

### 󠀁[AIO admin pack](https://wordpress.org/support/topic/aio-admin-pack/)󠁿

 [Hossein](https://profiles.wordpress.org/hosseinkh/) જુલાઇ 7, 2023

Hi,Thanks for creating this good and super useful plugin.

![](https://secure.gravatar.com/avatar/de0bd06a751036e7e0554ae2d3087413547086e6043decbc9ac761184206b171?
s=60&d=retro&r=g)

### 󠀁[Suggestion](https://wordpress.org/support/topic/suggestion-320/)󠁿

 [Hermann Matthias](https://profiles.wordpress.org/matthy99/) જૂન 2, 2022

Basicly a vey good idea, but it should have options to choose: – yes/no LOGIN page–
yes/no REGISTER page – yes/no those 2 PROFILE PAGES in many cases the user has already
a special styled login or register page, the profile form ist not really fitting,
but that we can ajust with the editor and nice regards from the Philipines

![](https://secure.gravatar.com/avatar/3e722edcc0b3baa76791f4031c4bba7668f2d3966cd63e1e59d1af4bb4fb010d?
s=60&d=retro&r=g)

### 󠀁[Good Plugin](https://wordpress.org/support/topic/good-plugin-5650/)󠁿

 [sorenaphysio](https://profiles.wordpress.org/sorenaphysio/) ડિસેમ્બર 20, 2021

Simple and Easy to use with many options

![](https://secure.gravatar.com/avatar/5da663d28083486dc2d1df4ad86e20717606b3e8f732b7a4b950089d0c65cdc0?
s=60&d=retro&r=g)

### 󠀁[Works but have some feedback here…](https://wordpress.org/support/topic/nice-4030/)󠁿

 [Liang](https://profiles.wordpress.org/liang1216/) નવેમ્બર 27, 2021 1 reply

The newest version causes some conflict with my website and I have to use the 0.2.2
version. Overall, I do recommend the author, developer focus on improving the “frontend
user editing” instead of the “login page”. The “frontend user editing” is the thing
we only needed. Thanks for developing such an awesome plugin.

![](https://secure.gravatar.com/avatar/7ee5701c5350b9ccee90d9771f22741228e37b290e2bbd16c09fda55bfecd2a4?
s=60&d=retro&r=g)

### 󠀁[Not good enough](https://wordpress.org/support/topic/not-good-enough-18/)󠁿

 [Claudio](https://profiles.wordpress.org/claudio65/) નવેમ્બર 24, 2021

There is no form customization. Apparently there is no way to user upload a picture
for their own profile. It would be good if the pages created by the plugin could
be shown under the user profile picture as a user menu. I hope I am helping to increase
the plugin capability.

 [ 9 સમીક્ષાઓ વાંચો ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/)

## ફાળો આપનાર & ડેવલપર્સ

આ ઓપન સોર્સ સોફ્ટવેર છે. નીચેના લોકો એ આ પ્લગિન માટે ફાળો આપ્યો છે.

ફાળો આપનારા

 *   [ Glowlogix ](https://profiles.wordpress.org/glowlogix/)
 *   [ Mark Wilkinson ](https://profiles.wordpress.org/wpmarkuk/)

[“WP Frontend Profile” ને તમારી ભાષામાં અનુવાદ કરો.](https://translate.wordpress.org/projects/wp-plugins/wp-front-end-profile)

### વિકાસમાં રસ ધરાવો છો?

[કોડ બ્રાઉઝ કરો](https://plugins.trac.wordpress.org/browser/wp-front-end-profile/),
જોવો[અસ્વીએન રેપોઝિટરીમાંથી](https://plugins.svn.wordpress.org/wp-front-end-profile/),
અથવા સબ્સ્ક્રાઇબ કરો[ડેવલપમેન્ટ](https://plugins.trac.wordpress.org/log/wp-front-end-profile/)
દ્વારા[આરઅસઅસ](https://plugins.trac.wordpress.org/log/wp-front-end-profile/?limit=100&mode=stop_on_copy&format=rss).

## ચેન્જલૉગ

For the plugin’s changelog, please see [the changelog page on GitHub](https://github.com/glowlogix/wp-frontend-profile/CHANGELOG.md).

## મેટા

 *  વર્ઝન **1.3.9**
 *  છેલ્લી અપડેટ: **2 મહિના પહેલા**
 *  સક્રિય સ્થાપનો: **100+**
 *  વર્ડપ્રેસ વર્ઝન ** 4.0.1 અથવા ઉચ્ચતર **
 *  **6.8.5** સુધી પરીક્ષણ કર્યું
 *  PHP સંસ્કરણ ** 5.2.17 અથવા ઉચ્ચતર **
 *  ભાષા
 * [English (US)](https://wordpress.org/plugins/wp-front-end-profile/)
 * ટૅગ્સ:
 * [login](https://gu.wordpress.org/plugins/tags/login/)[profile](https://gu.wordpress.org/plugins/tags/profile/)
   [register](https://gu.wordpress.org/plugins/tags/register/)[user meta](https://gu.wordpress.org/plugins/tags/user-meta/)
   [users](https://gu.wordpress.org/plugins/tags/users/)
 *  [વિગતવાર દૃશ્ય](https://gu.wordpress.org/plugins/wp-front-end-profile/advanced/)

## પૉઇન્ટ્સ

 4.3 out of 5 stars.

 *  [  6 5-star reviews     ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/?filter=5)
 *  [  1 4-star review     ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/?filter=4)
 *  [  1 3-star review     ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/?filter=3)
 *  [  1 2-star review     ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/#new-post)

[બધા  સમીક્ષાઓ જુઓ](https://wordpress.org/support/plugin/wp-front-end-profile/reviews/)

## ફાળો આપનારા

 *   [ Glowlogix ](https://profiles.wordpress.org/glowlogix/)
 *   [ Mark Wilkinson ](https://profiles.wordpress.org/wpmarkuk/)

## સપોર્ટ

કંઈક કહેવું છે? મદદ જોઈએ છે?

 [આધાર ફોરમ જુઓ](https://wordpress.org/support/plugin/wp-front-end-profile/)

## દાન

શું તમે આ પ્લગિનની પ્રગતિને સમર્થન આપવા માંગો છો?

 [ આ પ્લગિનને દાન કરો ](https://www.glowlogix.com)