One tutorial I found was this:
https://www.likoma.com/setting-up-a-memberuser-directory-in-wordpress/
However this user did this tutorial waaay back when WordPress was still pre-2.0. I tried to follow it but setting up code on a new page (called Members) proved unsuccessful. Its probably because this is so outdated.
So, how do I get a directory listing to show up (including the User Avatar) on a page (not blog)? Note that I would like fields to self-omit if user never filled it out.
Found this page which shows the PHP code yet again (like the first link I showed does) but it doesnt say if I need to put that in functions.php or another file altogether. Thought maybe it could be less hard coded and more just a code to place into a brand new page where you want your directory listing to show up.
]]>One tutorial I found was this:
https://www.likoma.com/setting-up-a-memberuser-directory-in-wordpress/
However this user did this tutorial waaay back when. I tried to follow it but setting up code on a new page (called Members) proved unsuccessful. Its probably because this is so outdated.
So, how do I get a directory listing to show up (including the User Avatar) on a page (not blog)? Note that I would like fields to self-omit if user never filled it out.
]]>Is there a way for this to work??
Thank you.
]]>I went into the function and created an additional setcookie statement inside the function to create a test dummy cookie and nothing happened. I’ve refreshed and removed the cookies and still cannot figure out why the other two cookies (for username and password) will create while my little test cookie won’t. Any ideas on how to get an extra cookie to create on login?
Here’s part of the code I’m using, this is inside the wp_setcookie function:
`
if ( $remember )
$expire = time() + 31536000;
else
$expire = 0;
setcookie(USER_COOKIE, $username, $expire, $cookiepath, COOKIE_DOMAIN);
setcookie(PASS_COOKIE, $password, $expire, $cookiepath, COOKIE_DOMAIN);
setcookie(‘UserMetaZip’, ‘Test’, $expire, ‘/’, COOKIE_DOMAIN);
If there’s a plugin available to modify what session data is held I’d much prefer that but otherwise what pages need to be modified in order to store this info inside the session/cookie?
]]>https://www.finungdom.com/wordpress/?author=24
I have installed and activated the plugins; userextra and usermeta. How do i fetch userextra fields by using usermeta plugin?
When i edit my profile, I get the extra fields up, and I can edit them, but they dont appear on the profilepage! (Link above)
]]>My question is:
can anybody construct a php code to do the following:
In my comments.php I want a particular field from the Extended profile form added next to the users name, but only when that user filled the field on his profile.
So basically its like the comment_author_link, but for an extended field.
Can anybody help me?
]]>Just asking the forum members here if they’ve had any trouble installing userextra and usermeta plugins on WordPress 2.0.4. I uploaded the userextra.php and usermeta.php files to wp-content/plugins but I don’t see the plugins at all in my plugins list in the administration panel.
Any reason why? How do I fix this?
Thanks.
]]>I’ve installed the usermeta and userextra plugins, but I now find I get “headers already sent” error messages at various places:
E.g. On the “Write” page, instead of the Image upload section, I see:
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-admin/inline-uploading.php on line 5
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-admin/inline-uploading.php on line 140
and if I try to logout I get:
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-login.php on line 9
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-includes/pluggable-functions.php on line 286
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-includes/pluggable-functions.php on line 287
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-includes/pluggable-functions.php on line 288
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-includes/pluggable-functions.php on line 289
Warning: Cannot modify header information - headers already sent by (output started at /home/glugtest/public_html/wp/wp-content/plugins/userextra.php:2) in /home/glugtest/public_html/wp/wp-includes/pluggable-functions.php on line 247
Any suggestions would be very welcome – I plan to use WP for a club blog, and want to be able to store members contact information.
]]>