carlosbronze
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] Mass Block usersalso in the subject of blocking users.
i did a test, and while logged in, the blocked users can still access the site.
it only forbids them from loggin in.is there a way i can force check if the user is blocked, even if they are already logged in?
thank you for your help!
Forum: Plugins
In reply to: [Theme My Login] Mass Block userson the users page, Theme My Login adds a button while hovering over a user to block their access to the site, right?
i was wondering if there was a way to block more than 1 user at once.
i mean, instead of clicking block on each user i want to, i could just click a checkbox and say “block all of these”
in a similar fashion as to when altering the roles of various people.Forum: Fixing WordPress
In reply to: Displaying list of author descriptions@badgefarmer the code on the page you linked does just that.
lists all authors, with their avatar and a list of posts.Forum: Plugins
In reply to: [User Avatar] Update picture linking – Thickbox!might be a jquery conflict.
you could try to disable prettyphoto for the frontend upload page, or look around for how to implement both.
hard to know more without seeing the errorForum: Plugins
In reply to: [User Avatar] Update picture linking – Thickbox!you can see on https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script that wordpress doesnt come with prettyphoto, thats why it doesnt work.
but right, sorry, i had to enqueue it in theme my login.
where is prettyphoto screwing you?Forum: Fixing WordPress
In reply to: Displaying list of author descriptionsthis code has helped me A LOT.
ive made a little tweak to it, to display pics of people who has posted OR commented.foreach ($blogusers as $bloguser) { $user = get_userdata($bloguser->ID); if(!empty($hide_empty)) { $numposts = count_user_posts($user->ID); $comments = get_comments('user_id='.$user->ID); $comments_counted = count($comments); if(($numposts < 1) AND ($comments_counted < 1)) continue; } $authors[] = (array) $user; }
Forum: Plugins
In reply to: [User Avatar] Update picture linking – Thickbox!i uninstalled the thickbox plugin, and edited the user-avatar.php file on the plugin.
added both bold lines on the file, since wordpress already comes with thickbox, to just show up on the avatar page.function user_avatar_admin_print_styles() {
global $hook_suffix;
wp_enqueue_script(“thickbox”);
wp_enqueue_style(“thickbox”);
wp_enqueue_style(‘user-avatar’, plugins_url(‘/user-avatar/css/user-avatar.css’), ‘css’);
}that might help you. or maybe editting the same file to switch any references of thickbox to prettyphoto…
Forum: Plugins
In reply to: [Theme My Login] Adding media and admin conflictIm using the p2 theme and realized the upload tool it uses is the wp-admin’s one.
if i restrict access to the admin area it stops working.
Not a conflict with the Theme My Login plugin afterall. Sorry for the confusion.Forum: Plugins
In reply to: [WP-Activity] [Plugin: WP-Activity] Roles and CapabilitiesHi Dric
I actuallt wanted to do the opposite, to allow Editors to see this plugin, is there a way?
ive tried Role Scooper and Capability Manager but they didnt do the trick.Forum: Plugins
In reply to: Retreive First Image From Postim getting my image thumbnail ive inserted in the post
can i change it so i get the image’s link to the higher quality version?Forum: Requests and Feedback
In reply to: [Plugin: Register Plus] Whitelisting email domainsIm looking for this solution as well.
It seems its only available for wordpress MU.Anyone out there with an answer for this?
Thanks in advance.Forum: Fixing WordPress
In reply to: How to make the_content respect <!more> tag inIf you insist on using a Page template – it will not be easy. The “more” tag doesn’t work on Pages – by default.
damn…
I am trying to get a page to display the posts on a specific category, with the ‘more’ link to their single pages.
Does this mean that cant be done?
I am currently using the_excerpt on the template for that (new template i created and chose for the page) as a workaround…