Alyson
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Flexible Upload] Not compatible with WordPress 2.6?thanks a lot!
Forum: Plugins
In reply to: [Plugin: Post Thumb Revisited] admin not working in 2.6i need update for this problem too
Forum: Plugins
In reply to: [Plugin: Search Everything] search author name?i need support to search author name too 🙁
Forum: Fixing WordPress
In reply to: Need to remove “Manage” and “Comment” from Author´s Dashboardthis topic help-me
http://wordpress.org/support/topic/54017?replies=1#post-295438
Forum: Fixing WordPress
In reply to: Link to the user logged in WPProblem resolved.
I do this:
in widgets.php
add this:< a href=”<?php bloginfo(‘url’); ?>/people/<?php get_username() ?>”>Your Profile</ a>
results in your site URL + /people/ + username🙂
Forum: Fixing WordPress
In reply to: link username to static web page?i need this too!
somebody?
Forum: Fixing WordPress
In reply to: Link to the user logged in WPup
Forum: Fixing WordPress
In reply to: Display visitor user name in widgetsI resolved this problem using:
in: user.php
insert this:function get_username() {
global $current_user;
if ( isset($current_user) )
echo $current_user->user_login;
}in widgets.php
insert this:Welcome <?php get_username() ?>
this is all 😀
cyaForum: Fixing WordPress
In reply to: Display visitor user namewith this global declaration, only i need use this?
<?php $current_user; ?>
for show username? somebody can help?
Forum: Fixing WordPress
In reply to: Display visitor user namethanks so much!