• ਵਰਡਪ੍ਰੈੱਸ ਬਾਰੇ
    • ਵਰਡਪ੍ਰੈੱਸ ਬਾਰੇ
    • WordPress.org
    • ਕਾਗਜ਼ਾਤ
    • ਸਹਿਯੋਗ
    • ਸੁਝਾਅ/ਸ਼ਿਕਾਇਤ
  • ਦਾਖਲ ਹੋਵੋ
  • ਰਜਿਸਟਰ ਹੋਵੋ
ਸਿੱਧਾ ਸਮੱਗਰੀ 'ਤੇ ਜਾਓ

WordPress.org

ਪੰਜਾਬੀ

  • ਮੁੱਖ ਪੰਨਾ
  • ਸਾਡੇ ਬਾਰੇ
  • ਸਥਾਪਿਤ ਕਰੋ
  • ਵਾਧੇ
  • ਥੀਮਾਂ
  • ਸੰਪਰਕ
  • ਸਾਡੇ ਬਾਰੇ

ਪਲੱਗਇਨਾਂ

  • ਮੇਰੇ ਪਸੰਦੀਦਾ
  • ਬੀਟਾ ਪਰਖ
  • ਵਿਕਾਸਕਾਰ
ਡਾਊਨਲੋਡ ਕਰੋ

WP Frontend Profile

Glowlogix ਵੱਲੋਂ
  • ਵੇਰਵਾ
  • ਸਮੀਖਿਆਵਾਂ
  • ਸਥਾਪਤੀਕਰਨ
  • ਸਹਿਯੋਗ
  • ਵਿਕਾਸ

ਵੇਰਵਾ

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]
  • Register page with role [wpfep-register role="desired_role"]
  • 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. 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.

ਅਕਸਰ ਪੁੱਛੇ ਜਾਂਦੇ ਸਵਾਲ

For more information and more extensive documentation about this plugin checkout the 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.

ਸਮੀਖਿਆਵਾਂ

I love it

SVPelakova 3 ਸਤੰਬਰ 2016
Hello from France, This plugin perfectly matches my expectations! Thank you for your work. 🙂
Read all 3 reviews

ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“WP Frontend Profile” is open source software. The following people have contributed to this plugin.

ਯੋਗਦਾਨੀ
  • Glowlogix
  • Mark Wilkinson

“WP Frontend Profile” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।

ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

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

ਤਬਦੀਲੀ-ਚਿੱਠਾ

For the plugin’s changelog, please see the changelog page on GitHub.

ਮੈਟਾ

  • ਸੰਸਕਰਨ: 1.2.3
  • ਆਖਰੀ ਨਵੀਨਤਾ: 3 ਮਹੀਨੇ ਪਹਿਲਾਂ
  • ਸਰਗਰਮ ਸਥਾਪਤੀਆਂ: 400+
  • ਵਰਡਪ੍ਰੈੱਸ ਸੰਸਕਰਨ: 4.0.1 ਜਾਂ ਇਸ ਤੋਂ ਉੱਚਾ
  • Tested up to: 5.4.0
  • PHP ਸੰਸਕਰਨ: 5.2.17 ਜਾਂ ਇਸ ਤੋਂ ਉੱਚਾ
  • ਭਾਸ਼ਾ:
    English (US)
  • ਟੈਗ:
    loginprofileregisteruser metausers
  • Advanced View

ਦਰਜਾਬੰਦੀ

ਸਾਰੇ ਦੇਖੋ
  • 5 ਤਾਰੇ 1
  • 4 ਤਾਰੇ 1
  • 3 ਤਾਰੇ 1
  • 2 ਤਾਰੇ 0
  • 1 ਤਾਰਾ 0
ਸਮੀਖਿਆ ਜਮ੍ਹਾਂ ਕਰਵਾਉਣ ਲਈ ਦਾਖਲ ਹੋਵੋ।

ਯੋਗਦਾਨੀ

  • Glowlogix
  • Mark Wilkinson

ਸਹਿਯੋਗ

ਪਿਛਲੇ ਦੋ ਮਹੀਨਿਆਂ ਦੌਰਾਨ ਹੱਲ ਕੀਤੇ ਮਸਲੇ:

2 ਵਿੱਚੋਂ 1

ਸਹਿਯੋਗ ਫੋਰਮ ਦੇਖੋ

ਦਾਨ ਦਿਉ

Would you like to support the advancement of this plugin?

ਇਸ ਪਲੱਗਇਨ ਨੂੰ ਦਾਨ ਦਿਉ

  • ਸਾਡੇ ਬਾਰੇ
  • ਬਲੌਗ
  • ਮੇਜ਼ਬਾਨੀ
  • ਦਾਨ ਦਿਉ
  • ਸਹਿਯੋਗ
  • ਵਿਕਾਸਕਾਰ
  • ਸ਼ਾਮਿਲ ਹੋਵੋ
  • ਸਿੱਖੋ
  • ਸ਼ੋ-ਕੇਸ
  • ਪਲੱਗਇਨਾਂ
  • ਥੀਮਾਂ
  • ਵਰਡਕੈਂਪ
  • WordPress.TV
  • ਬਡੀਪ੍ਰੈੱਸ
  • ਬੀਬੀਪ੍ਰੈੱਸ
  • WordPress.com
  • ਮੈਟ
  • ਪਰਦੇਦਾਰੀ
  • Public Code
  • @WordPress
  • WordPress

ਕੋਡ ਕਵਿਤਾ ਹੈ।