Tagged Questions
0
votes
0answers
27 views
Resize and crop image during upload
How to add more function to resize and crop image during upload?
I want to creat a avatar upload form on author profile.
And size of avatar: 150x150
If file size have width > height => resize by ...
0
votes
2answers
15 views
Show infos only to the author in the author.php
I need to be able to show some informations only to the author in his profile viewable in the front end, for istance I need to add a text under the avatar that only the author, if logged in, can see.
...
0
votes
1answer
47 views
Calling a custom profile field only it it exists
I've used this code to show custom fields if they're filled in a post using Custom Field Suite Plugin
<?php if($cfs->get('whatliked')){?>
<?php echo $cfs->get('whatliked'); ?>
...
0
votes
2answers
73 views
Author.php display profile for all types of users
I'm using wp-usersonline plugin with user links, when you click for subscribers it goes to a not found page but works fine for authors, im thinking is there a way to redirect subscribers to a profile ...
0
votes
1answer
45 views
All Posts Linking to Author Posts directly
I want to do "All Posts" hyperlinked to Author-Link so when user clicked All posts then user will be directed to Author's all posts, instead of "All Posts of: Author-Link"
I don't want repeatation of ...
0
votes
1answer
91 views
Profile Field In Admin Bar
I have added a field named "Current Status" in the user profile where the users fill their information e.g. E-mail, Website etc. How can I make this field displayed only for authors and also display ...
2
votes
1answer
110 views
Author must complete profile info before they can publish a post?
I am creating a real estate site where user info is essential part. The author info need to display under their post so that the visitor know how to contact them. Thus, the contact info in profile ...
1
vote
1answer
703 views
Is there any function available to echo current user's profile url?
As of now i'm using this code to echo user's profile url.
<?php echo esc_url( home_url( '/' ) ); ?>user/<?php echo $current_user->user_login ?>"><?php echo ...
1
vote
1answer
4k views
How to get a buddypress user profile link and a certain user profile field for the current post author?
I want to replace get_author_link() and get_the_author_meta($feld)
with something equivalent to point to the author of the current post Buddypress user profile page and retrieve a specific profile ...
1
vote
1answer
64 views
Multiple Unique Author Profiles
I'd like to create multiple user profiles are unique, without just using a "if/then/else" php statement on the author.php template?
All I need is the ability to create two different types of profiles.
...
1
vote
2answers
860 views
Permalink to user profile
How can I retrieve the permalink to a user (author) profile dynamically outside the loop by ID?
an alternative to the_author_link(), but for outside the loop.
Example:
get_author_link($user_id);
0
votes
1answer
119 views
WordPress comments on users profile
I have a profile page and I need to make a comment system on it. The comments system should work exactly the same way as standard WordPress comment system, but instead of posts it should work with ...
0
votes
2answers
212 views
Comments do not respect display_name setting, how to make plugin to overcome this
When I post something on Wordpress, it's posted with my display name. However if I change my display name, posts posted by me will be updated with the new author. Comments will stay with the old ...
1
vote
1answer
651 views
How to link avatar and nickname to profile
On the single post page I want to link the avatar function to the author profile, but I tried
<a href="<?php the_author_posts_link(); ?>">
<img src="<?php echo ...
0
votes
2answers
603 views
How to link to the current User/Author Profile page?
Is there a way to link to the authors profile page?
At the moment i can access the authors profile by visiting the url like this:
http://mysite.com/?author=1
Is there a function that i could use to ...
1
vote
1answer
277 views
Getting $curauth->ID to work inside a shortcode
Im wanting to show a profile/logo pic on author.php via a simple shortcode:
function wpaluploader_showauthorimage() {
$wpaluploader_authorlogo = '<img src="' . get_bloginfo('url'). ...
3
votes
1answer
1k views
Diplay a registered user profile page
I have a website where users can register, login and their edit profile, they can comment but not post.
What I am looking for is a way to display a user profile page (where I display the gravatar and ...