gtarek
Forum Replies Created
-
Forum: Hacks
In reply to: Counting the number of users based on roleThanks again!
Forum: Hacks
In reply to: Counting the number of users based on roleThanks a lot bcworkz. Works like a charm! Here’s my final code:
<?php
$result = count_users();
$show = array(‘subscriber’, ‘administrator’);
echo ‘We currently have:’;
foreach($result[‘avail_roles’] as $role => $count){
if( in_array($role, $show)) {
echo ‘
‘, $count, ‘ ‘ , $role, ‘s’;
}
}
?>Forum: Hacks
In reply to: Counting the number of users based on roleHi bcworkz,
Thanks for your response. It doesn’t seem to be entering the IF loop. I get “.” as an output. Here’s the final code I used to test it:<?php
$result = count_users();
$show = array(‘Administrator’);
foreach($result[‘avail_roles’] as $role => $count){
if( in_array($role, $show)) {
echo ‘
‘, $count, ‘ are ‘, $role, ‘s’;
}
}
echo ‘.’;
?>Any help is appreciated.
Forum: Fixing WordPress
In reply to: Auto create a post from each image in upload directory?Same here. Anyone got anything? Thx.
Forum: Fixing WordPress
In reply to: How to remove posted date and by…Hello moserengineering,
The best place to remove the code is at Single.php. Look for the code around line 62 that looks like this: <?php twentyten_posted_in(); ?> and either remove it or turn it to a comment. There’s no need to edit the functions.php or any other file as this is where the function is called.This removes both things you asked in one shot. Good luck! 😀
Forum: Themes and Templates
In reply to: Need to change WP-Brown 2.1 theme text field border (CSS)Done back then.. Hehe, thx!
Forum: Themes and Templates
In reply to: Need to change WP-Brown 2.1 theme text field border (CSS)Gotcha.. Works now. Thx again!!
Forum: Themes and Templates
In reply to: Need to change WP-Brown 2.1 theme text field border (CSS)I was wondering Email again about the wpcf7. I tried placing it in front of each property and it doesn’t work. Can you give an example of the same code but form Contact form 7 only? Thx…
Forum: Themes and Templates
In reply to: Need to change WP-Brown 2.1 theme text field border (CSS)I did govpatel, no property exists in the widget css. Emil, you’re the man!! That works great, thx a lot!!