0
votes
0answers
26 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
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
3answers
66 views

How to pull user/author profile data in a plugin?

My site has a user profile page. For some reason I would like to pull user profile data in my plugin. I know I can pull logged in user profile data using get_currentuserinfo();. For example I would ...
1
vote
1answer
113 views

Password protected Profile View

I have extended the user profile page in the backend so that each user profile has several extra custom fields for data such as favorite movies, birthday and so on can be stored. Creating a dating ...