İçeriğe geç
  • Giriş
  • Kayıt ol
WordPress.org

WordPress Türkiye

  • Temalar
  • Eklentiler
  • Haberler
  • Hakkında
  • Facebook
  • Twitter
  • WordPress edin
WordPress edin

Eklentiler

  • Beğenilerim
  • Beta Testi
  • Geliştiriciler

Bu eklenti, WordPress'in son 3 ana dağıtımı ile test edilmemiş. Artık bakımı yapılmıyor veya desteklenmiyor olabilir ve WordPress'in daha güncel sürümleriyle birlikte kullanıldığında uyumluluk sorunları olabilir.

İndir

WP User Profile Avatar

WP Event Manager tarafından
  • Detaylar
  • İncelemeler
  • Kurulum
  • Geliştirme
Destek

Açıklama

WP User Profile Avatar allow you to change default WordPress avatar or User profile picture. You can use any photos uploaded into your Media Library or use custom photo url as an avatar instead of using Gravatar.

Plugin Features

  • Lightweight and easy to use.
  • Upload an avatar image from media library or local computer.
  • Set avatar image using custom path url.
  • Visibility option whether show avatar or not.
  • Display user profile avatar shortcode [user_profile_avatar].
  • Upload avatar shortcode [user_profile_avatar_upload].
  • Allow anyone (Contributors & Subscribers) can upload avatar.
  • Disable Gravatar and use own custom avatars.
  • You can rate avatar as G, PG, R, X based on your appropriateness.
  • Allow to set default avatar. Default Avatar Allows you to pick a default image when no avatar exists.
  • SEO & Developer Friendly.

Set new user profile avatar from admin panel.

  • Go Admin Dashboard -> Users -> All Users –> Select any user profile you would like to edit.

  • Find “WP User Profile Avatar” section, You can give new avatar url path or you can upload avatar using media library.

  • Update User.

Display new user profile avatar at frontend side.

To retrieve the user avatar/photo on the front-end use one of the following approach in your template page(s).

1. Using shortcode and pass parameters based on your need.

 Shortcode: [user_profile_avatar]
 Parameters: userid, size, align, link, target and caption.
 userid : id of the user.
 size: original,medium,large,thumbnail.
 align: alignleft,aligncenter,alignright.
 link: image, attachment, custom.
 target: _blank, self,
 caption: you can give any text value in between shortcode bracket and it will display below user avtar profile.


1.1  Display default avatar using visual editor.

    You can use the following shortcode in any page and it will show default avatar of the plugin.

    [user_profile_avatar] 

1.2 Display avatar for the perticular user using visual editor.

    if you want to show user profile for the user id 1.

    [user_profile_avatar user_id="1"] 

    You can also set other parameters like size, align, link, target and caption in this shortcode.

    Example: 

    [user_profile_avatar user_id="1" size="original" align="aligncenter" link="image" target="_blank"] Display Name [/user_profile_avatar]

1.3 if you want to assign dynamic user id in shortocde without using visual editor

<?php
         //for the logged user, Current user object
        $user = wp_get_current_user();

        echo do_shortcode('[user_profile_avatar user_id="<?php $user->id ?>" size="original" align="aligncenter" link="image" target="_blank"]'. $user->display_name .'[/user_profile_avatar]');

?>

2. Using the function get_wpupa_url.

You will need to place below code in each area of your theme where you wish to add and retrieve your theme’s custom avatar image.

2.1 At Author page
-------------------

<?php

    // Get The Post's Author ID
    $authorID = get_the_author_meta('ID');
    $authorname = get_the_author_meta('display_name', $authorID);

    // Set the image size. Accepts all registered images sizes and array(int, int)
    $size = 'thumbnail';
    $imgURL='';

    // Get the image URL using the author ID and image size params
    if (function_exists('get_wpupa_url'))  
        $imgURL = get_wpupa_url($authorID, ['size' => $size]);

    // display image on the page
    echo '<img src="'. $imgURL .'" alt="'. $authorname .'">';

?>

2.2 Except Author page
----------------------

<?php

    // Current user object
    $user = wp_get_current_user();

    // Set the image size. Accepts all registered images sizes and array(int, int)
    $size = 'thumbnail';
    $imgURL='';

    // Get the image URL using the author ID and image size params
    if (function_exists('get_wpupa_url'))  
        $imgURL = get_wpupa_url($user->id, ['size' => $size]);

    // display image on the page
    echo '<img src="'. $imgURL .'" alt="'. $user->display_name .'">';

?>

You will need to place above code in each area of your theme where you wish to add and retrieve your theme’s custom avatar image.

Be a contributor

If you want to contribute, go to our WP User Profile Avatar GitHub Repository and see where you can help.

You can also add a new language via translate.wordpress.org. We’ve built a short guide explaining how to translate and localize the plugin.

Thanks to all of our contributors.

Feedback

  • We are open for your suggestions and feedback – Thank you for using or trying out one of our plugins!
  • Drop us a line.

More

  • Also please have look our other plugins or visit at WordPress.org plugin page.

Connect With US

To stay in touch and get latest update about WP User Profile Avatar’s further releases and features, you can connect with us via:

  • Facebook
  • Twitter
  • Google Plus
  • Linkedin
  • Pinterest
  • Youtube

Ekran Görüntüleri

  • Settings.

  • Default Gavatars & set custom default avatar.

  • Set custom avatar for user profile example 1.

  • Set custom avatar for user profile example 2.

  • Display avatar & upload avatar shortcode icon for Visual Editor.

  • Generate display user profile avatar shortcode.

  • Generate user profile avatar upload shortcode.

  • Upload shortcode GUI for the frontend side.

  • After uploading avatar successfully, show undo option.

  • After refreshing page, remove option show instead of undo option for uploaded avatar.

  • After removing uploaded avatar, show message successfully removed avatar.

Yükleme

Automatic installation

Automatic installation is the easiest option as WordPress handles the file transfers itself and you don’t even need to leave your web browser. To do an automatic install, log in to your WordPress admin panel, navigate to the Plugins menu and click Add New.

In the search field type “WP User Profile Avatar” and click Search Plugins. Once you’ve found the plugin you can view details about it such as the the point release, rating and description. Most importantly of course, you can install it by clicking Install Now.

Manual installation

The manual installation method involves downloading the plugin and uploading it to your web server via your favorite FTP application.

  • Download the plugin file to your computer and unzip it

  • Using an FTP program, or your hosting control panel, upload the unzipped plugin folder to your WordPress installation’s wp-content/plugins/ directory.

  • Activate the plugin from the Plugins menu within the WordPress admin.

SSS

How I can set new user profile avatar from admin panel?

  • Go Admin Dashboard -> Users -> All Users –> Select any user profile you would like to edit.

  • Find “WP User Profile Avatar” section, You can give new avatar url path or you can upload avatar using media library.

  • Update User.

How I can display new user profile avatar at frontend side?

You can show user profile avatar two ways.

1. Using shortcode and pass parameters based on your need.

 Shortcode: [user_profile_avatar]
 Parameters: userid, size, align, link, target and caption.
 userid : id of the user.
 size: original,medium,large,thumbnail.
 align: alignleft,aligncenter,alignright.
 link: image, attachment, custom.
 target: _blank, self,
 caption: you can give any text value in between shortcode bracket and it will display below user avtar profile.


1.1  Display default avatar using visual editor.

    You can use the following shortcode in any page and it will show default avatar of the plugin.

    [user_profile_avatar] 

1.2 Display avatar for the perticular user using visual editor.

    if you want to show user profile for the user id 1.

    [user_profile_avatar user_id="1"] 

    You can also set other parameters like size, align, link, target and caption in this shortcode.

    Example: 

    [user_profile_avatar user_id="1" size="original" align="aligncenter" link="image" target="_blank"] Display Name [/user_profile_avatar]

1.3 if you want to assign dynamic user id in shortocde without using visual editor

     //for the logged user, Current user object
    $user = wp_get_current_user();

    echo do_shortcode('[user_profile_avatar user_id="<?php $user->id ?>" size="original" align="aligncenter" link="image" target="_blank"]'. $user->display_name .'[/user_profile_avatar]');

2. Using the function get_wpupa_url.

You will need to place below code in each area of your theme where you wish to add and retrieve your theme’s custom avatar image.

2.1 At Author page
-------------------

// Get The Post's Author ID
$authorID = get_the_author_meta('ID');
$authorname = get_the_author_meta('display_name', $authorID);

// Set the image size. Accepts all registered images sizes and array(int, int)
$size = 'thumbnail';
$imgURL='';

// Get the image URL using the author ID and image size params
if (function_exists('get_wpupa_url'))  
    $imgURL = get_wpupa_url($authorID, ['size' => $size]);

// display image on the page
echo '<img src="'. $imgURL .'" alt="'. $authorname .'">';

2.2 Except Author page
----------------------

// Current user object
$user = wp_get_current_user();

// Set the image size. Accepts all registered images sizes and array(int, int)
$size = 'thumbnail';
$imgURL='';

// Get the image URL using the author ID and image size params
if (function_exists('get_wpupa_url'))  
    $imgURL = get_wpupa_url($user->id, ['size' => $size]);

// display image on the page
echo '<img src="'. $imgURL .'" alt="'. $user->display_name .'">';

How to allow Contributors & Subscribers can upload avatar?

  • Go Admin Dashboard -> Users -> Profile Avatar Settings.

  • Find “Allow Contributors & Subscribers to upload avatars”, check it.

  • Save Changes.

İncelemeler

Avatars for the users are displayed all right

Jānis Elmeris 22 Kasım 2021
The post author and comment author gets the default avatar displayed all right. All the default avatar options listed in the discussion settings have the default avatar, not the image related to the option (plugin version 1.1). If I deactivate the plugin, the discussion default avatar options get their images back.

just works! forget the annoying Gravatar service!

yoadshani 14 Ağustos 2021
just works! forget the annoying Gravatar service! you don't need it any more!

Perfect for elementor

sri87 23 Ocak 2021
Tried many plugins but this does exactly what I wanted. Able to display user profile pictures on their custom dashboard using elemetor profile image dynamic tags. Thank you. Will be great if can be defined the field dynamically in a profile to fetch profile picture as many themes already come with custom profile images.

Number one in setting avatar for multisite from a single url

MEG 16 Temmuz 2020 1 yanıt
Thank you very much for this GREAT plugin. Being able to set avatar via url in network users page is an incredibly great privilege for those who use synchronized sites in a multisite network. Please update regularly to the latest version of wordpress. Please consider including the tags used by similar plugins to help plugin findability. Please consider adding the option of using custom avatars that are uploaded through Gravatar.
4 incelemeyi oku

Katkıda Bulunanlar ve Geliştiriciler

“WP User Profile Avatar” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye katkıda bulunmuşlardır.

Katkıda bulunanlar
  • WP Event Manager
  • Ashok Dudhat
  • Hitesh Makvana

“WP User Profile Avatar” 1 dile çevrildi. Katkıda bulundukları için çevirmenlere teşekkürler.

“WP User Profile Avatar” eklentisini dilinize çevirin.

Geliştirmeyle ilgilenir misiniz?

Kodu görüntüle, SVN deposuna göz at veya RSS ile geliştirme günlüğüne abone ol.

Değişiklik Kaydı

1.1 [Aug 16TH, 2020]

  • Fixed – Tweak Settings.

1.0 [May 23TH, 2020]

  • First stable release.

Meta

  • Sürüm: 1.0
  • Son güncelleme: 1 sene önce
  • Etkin kurulumlar: 10.000+
  • WordPress sürümü: 4.1 veya üstü
  • Test edilen sürüm: 5.8.6
  • PHP sürümü: 5.4 veya üstü
  • Diller:

    English (US) ve Swedish.

    Dilinize çevirin

  • Etiketler :
    avatarcustom profile photocustom profile picturegravataruser profile
  • Gelişmiş görünüm

Puanlar

Tümünü gör
  • 5 yıldız 4
  • 4 yıldız 0
  • 3 yıldız 0
  • 2 yıldız 0
  • 1 yıldız 0
İnceleme göndermek için oturum açın.

Katkıda bulunanlar

  • WP Event Manager
  • Ashok Dudhat
  • Hitesh Makvana

Destek

Son iki ay içinde çözülen sorunlar:

1 adetten 0 adedi

Destek forumunu görüntüle

Bağış yap

Bu eklentinin geliştirilmesini desteklemek ister misiniz?

Bu eklentiye bağış yap

  • Hakkında
  • Haberler
  • Barındırma
  • Bağış
  • Hediyelik
  • Belgelendirme
  • Geliştiriciler
  • Katılın
  • Öğren
  • Vitrin
  • Eklentiler
  • Temalar
  • Desenler
  • WordCamp
  • WordPress.TV
  • BuddyPress
  • bbPress
  • WordPress.com
  • Matt
  • Gizlilik
  • Herkese açık kod
WordPress.org
WordPress.org

WordPress Türkiye

  • Facebook sayfamızı ziyaret edin
  • Twitter hesabımızı ziyaret edin
  • Instagram hesabımızı ziyaret edin
  • LinkedIn hesabımızı ziyaret edin
Kod şiirdir.