tjmapes
Forum Replies Created
-
Forum: Alpha/Beta/RC
In reply to: Fatal error: Call to undefined function get_dirsize() in …THANK YOU!
Forum: Plugins
In reply to: [Plugin: Capability Manager] Integrating with User CommunityActually Txanny, I achieved this very thing. All I did was make a role called “ARTIST”, so this might help you for coding that out:
Check it out over at http://riptapparel.com/community http://riptapparel.com/artists
<?php $roles = array('artist'); /* Loop through users to search for the admin and editor users. */ foreach( $roles as $role ) { // all users with artist role if($role == 'artist') { $this_role = "'[[:<:]]".$role."[[:>:]]'"; $query = "SELECT * FROM $wpdb->users WHERE ID = ANY (SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'wp_capabilities' AND meta_value RLIKE $this_role) ORDER BY user_nicename ASC LIMIT 10000"; $users_of_this_role = $wpdb->get_results($query); if ($users_of_this_role) { foreach($users_of_this_role as $user) { $curuser = get_userdata($user->ID); $author_post_url=get_author_posts_url($curuser->ID, $curuser->nicename); echo "<ul class='userList'>"; echo "<li>"; echo "<a href='/community/user/$curuser->nickname' title='.$curuser->display_name'>"; echo get_avatar($curuser->user_email, '50', $avatar); echo '</a>'; echo "<a href='/community/user/$curuser->nickname' title='.$curuser->display_name'>"; echo "<p>$curuser->display_name</p>"; echo '</a>'; //echo '<p>'.$curuser->description.'</p>'; echo '</li>'; echo '</ul>'; } } } } ?>Forum: Plugins
In reply to: [Plugin: User Community] Unable to resize image (avatar)If i wanted to change this? could I? since I’m not going to use the gallery? And actually, if I did use the gallery, what does it do? Does it let users put images on their personal profile pages?
thanks again Txanny! you are so great for answering these questions!
Forum: Fixing WordPress
In reply to: display info of user with certain role or level ini WP 2.7@jim de Groot
your code there (so far) helped me more than you ever know. With the combination of the USER COMMUNITY plugin where I can create my own roles, I can now use this to separate out the roles on different pages (ie members / artists)…
Amazing!! Thank you so much
Forum: Plugins
In reply to: [Plugin: Capability Manager] Integrating with User CommunityThanks for your response Txanny…
So.. on top of having the regular subscriber role listings of all the comunity members, I could have a separate page with only the people marked as “Artist” and list all of them and their avatars etc?
Is that possible with your solution above?
Thanks so much! Amazing plugin and something WP really lacks
Forum: Plugins
In reply to: Custom Field in RSSI’d love to know this as well… I have actually gotten this to work on my site CssScoop.com .. but I had to do some major trickery. I used this:http://justintadlock.com/archives/2008/01/27/custom-fields-for-feeds-wordpress-plugin
I also just found this yet haven’t tried it yet: http://dodesign.us/blog/custom-field-images-in-wordpress-feeds/
If you find a nice solution, PLEASE by all means, let me know!
Forum: Plugins
In reply to: [Plugin: Capability Manager] Integrating with User CommunityIs there a way I can list all the users from a new role I’ve made?
I just want to output a list on a page called “Artists”
@txanny – Thank you for your reply. I never have seen the capsman plugin. I’m going to go try it out now! Thank you so much again for your responses.
TJ
Amazing plugin! It solved basically EVERYTHING I was looking for for my community purposes. I wish there was an ability to build user roles and display them on different pages etc…. IE: Artists, Non-Artists 🙂
any thoughts Txanny….
and who is in your avatar? I’ve seen that guy before…an actor right?Forum: Themes and Templates
In reply to: display x number of days worth of postsI’m looking to show a BUY button on my site only on the most recent post (and the homepage, because that will be the most recent post anyways. I’m only showing one post at a time).
For posts that have been expired for 24 hours, the buy button needs to be hidden.
I think this is possible with the above, but I can’t get it to work.
could someone please help? Thank you so much!! I’m desperate since I have to launch this very soon! Thanks.
Forum: Fixing WordPress
In reply to: sort according to dateI’m looking to show a BUY button on my site only on the most recent post (and the homepage, because that will be the most recent post anyways. I’m only showing one post at a time).
For posts that have been expired for 24 hours, the buy button needs to be hidden.
I think this is possible with the above, but I can’t get it to work.
could someone please help? Thank you so much!! I’m desperate since I have to launch this very soon! Thanks.
Forum: Plugins
In reply to: Display custom field only on most current post (and its single page)NOthing from anyone? Please… 🙂
Forum: Plugins
In reply to: Logged User PhotoI’m having the exact same issue… would someone please help?
Thanks so much! I really hope someone does! email me if there is a solution or want to talk about it: tjmapes [at] gmail.com
Forum: Installing WordPress
In reply to: error after upgradingGot it figured out with the help of jford.
over on the wordpress 5 minute install page…. it tells you what files not to delete/overwrite.. well i tried this and it didn’t work..
so i basically overwrote everything in there (making backups of my wp-content folder first) and once i had uploaded all the files for WP 2.7, then i uploaded plugins folder, activated them, i then i uploaded my theme.
works now 🙂 hope it works for the next person. Thanks again JFord
Forum: Installing WordPress
In reply to: error after upgradingIt seems to work every other time I load the site, but not too sure why. Please help or post a solution if you’ve had this issue and resolved it, thanks!!!!