vmpr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: User_login, User_identitySame problem here, any suggestions?
Forum: Plugins
In reply to: Get comment_author userlevel?Thanks a lot!
Forum: Fixing WordPress
In reply to: How can I do this? If userlevel >=1 then display this line<? get_currentuserinfo() ; global $user_level; if ($user_level >= 1) { echo 'hello world'; } ?>Forum: Plugins
In reply to: Table of Authors/Registered Usersanything new here, having the same wish 🙂
Forum: Fixing WordPress
In reply to: wp_list_pages and current_page_itemThank you, that worked really good 🙂
Forum: Fixing WordPress
In reply to: The current page…The currently selected page is always “<li class=”page_item current_page_item”>” while all the others are only “<li class=”page_item”>” 🙂
Forum: Plugins
In reply to: New Plugin: WordPress WidgetsTry my latest Theme: http://www.sosuechtig.de
It’s beta, took me 2 days to figure out some things and modify themForum: Plugins
In reply to: Widgets Plugin, Pages and Links list problemok, solved… it was a problem with before_widget and aftrer_widget. Leaving them blank solves the problem, even if it’s a little dirty 🙂
Forum: Plugins
In reply to: Widgets Plugin, Pages and Links list problemThat was almost perfect. Had to change some minor things, but well, it’s great! Only one thing left: All widgets appear in my first sidebar! They are set up correctly, so it must be something in your functions.php.
I modified the first lines, so it SHOULD work, but it doesn’t…
if ( function_exists('register_sidebars') )register_sidebars(2, array(
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
));You got a hint?
Forum: Plugins
In reply to: Widgets Plugin, Pages and Links list problemwill check that, thanks!