joeye
Forum Replies Created
-
Forum: Plugins
In reply to: Members ListI have created a template page for a member list. But I do wish it was a plugin. Can’t wait for this GamerZ. I enjoy all the plugins you make.
You can see an example of what I did: here
Clicking on the user’s name will link you to their modified author page. View my profile example or click on other user names.
Forum: Plugins
In reply to: XDFORUM HELPThe easiest way to fix this, Patricia, is to move the two files found in /wp-content/plugins/xdforum/
1) xdforumtemplate.php
2) xdforumposttemplate.phpmove those two files into your theme directory:
/wp-content/themes/YOURTHEME/
That should bypass that error. If not please post any concerns/questions at http://www.xdweb.net and we will do our best to help you further. Hope this helped.
Forum: Plugins
In reply to: Forum PluginI posted this bit of code here, among a few other modifications to xdf:
http://viscomcreatives.org/?a=xdforum&xdforum_action=viewthread&xf_id=17&xt_id=59Hope this helps.
Forum: Plugins
In reply to: Get Authors Profile Pagewhew! that’s good to know; thanks for testing that. now all i gotta do is understand what i did! hahah
Forum: Plugins
In reply to: Get Authors Profile PageHmm… apparently it is not fully compatible with WP2.0 quite yet. I tried to use it but it gave me errors.
Forum: Plugins
In reply to: Get Authors Profile PageWow, ask and you just may recieve:
I just saw this new plugin: http://wordpress.org/support/topic/45124?replies=9 it may be exactly what I need/want. I’m going to d/l it and test it.
Forum: Plugins
In reply to: Get Authors Profile PageCool addition, Dax!! Thanks for adding that.
Forum: Plugins
In reply to: Get Authors Profile PageLike I mentioned before, this is kinda of an band-aid ugly fix. I’m sure some of these WP gurus would probably tell me that this is way wrong. However, it did work for me.
Make BACKUP FILES!!!
/wp-admin/profile.php
Locate:
<label><?php _e('Jabber / Google Talk:') ?>
<input type="text" name="jabber" value="<?php echo $profileuser->jabber ?>" />
</label>
Post after:
<label><?php _e('MSN:') ?>
<input type="text" name="msn" value="<?php echo $profileuser->msn ?>" />
</label>
<label><?php _e('ICQ:') ?>
<input type="text" name="icq" value="<?php echo $profileuser->icq ?>" />
</label>
/wp-admin/admin-functions.php
Locate:
if (isset ($_POST['yim']))
$user->yim = wp_specialchars(trim($_POST['yim']));
Post after:
if (isset ($_POST['icq']))
$user->icq = wp_specialchars(trim($_POST['icq']));
if (isset ($_POST['msn']))
$user->msn = wp_specialchars(trim($_POST['msn']));
/wp-includes/registration-functions.php
Locate:
update_usermeta( $user_id, 'yim', $yim );
Post after:
update_usermeta( $user_id, 'msn', $msn );
update_usermeta( $user_id, 'icq', $icq );
/wp-content/themes/myTheme/author.php
I just put this in my author page to display the msn. Just change the value for icq, etc.
<?php echo $curauth->msn; ?>
Nothing was adjusted on my Db. I believe that things like the icq, msn, etc. are stored through metadata keys. Like I said before… it just worked for me this way. I didn’t say I totally understood what I did.. heheh.
I wish they could just make an admin option to have those messenger fields active/deactive and add a way for custom profile fields that would dynamically add template tags. (wishful thinking)
Anyway, I don’t think I messed with anything else. Hopefully it will work for you too.
Forum: Requests and Feedback
In reply to: Apply theme to registration page.It is as “easy” as opening up the wp-register.php and wp-login.php (if you want) and applying some of the same markup that is from your template files (header + index + footer– or however your template is setup) and inserting it in the different places in the wp-register page.
For example:
My Register and My LoginForum: Plugins
In reply to: Get Authors Profile PageWell, I have managed to “activate” the MSN & ICQ and even added a field for an AVATAR URL. And it works fine however, I fudged somewhere or I am not understanding something:
I now can’t delete entirely a profile field. For example, if I have something in my YIM field then decide to delete it completely and leave a blank field and then update my profile it will still be there. HOWEVER, I CAN modify the entry and type in ‘n/a’ or whatever and it will update it that way. It just won’t allow an empty field… odd.
Soooo, at least I got it to this point. Now to figure out the empty field bit.
As for the memb last visit thing, I would favor to say that it would probably be best if that were in a plugin. I can try to include that in my hack but the way my profile code is turning out– it’s looking pretty damn ugly. 🙂 But it its working… kinda. 😉
Forum: Plugins
In reply to: Opinions on photo gallery solutionsThis is a similar post:
http://wordpress.org/support/topic/54767?replies=37Here is my example:
http://viscomcreatives.org/photo/index.php?cat=1I use coppermine and Stilglog’s integration plugin. It works great out of the box. I did allot of visual tweaking (css and removing some of the unneccessary menu links) to get it to the way I have it. But it’s an example nonetheless.
Forum: Plugins
In reply to: Get Authors Profile PageI am currently trying to work on a hack for this myself. I also am trying to add a field for users to add their avatar/gravatar url. (yea i know there are avatar plugins but sometimes a simple field is all you need.
I’ve added the field in the profile.php page, it can read the data from the db but I cannot write to the db. I must not have my sql insert statement correct. oh well… i’ll keep hacking at this one. I need all the messengers listed as well.
Forum: Your WordPress
In reply to: VisCom Creativesyea… my users have the freedom to post anything to their galleries. that particular user for some odd reason chose to upload a .bmp I need to just format it to a reasonable .jpg.
hehe… my silly users.
Forum: Your WordPress
In reply to: VisCom CreativesThanks. I still need to tweek a couple of plugins and try to validate the pages a little more.
Forum: Plugins
In reply to: WP and photo gallery integration – any examples?spider-mitch: cons? hmm… I havn’t had any problems recently and I just upgraded. However I think I will wait to answer that because I need to re-discover Gallery2 and see if I can get the same results with what I have.
I like coppermine because it, along with the integration plugin, allowed me and my users to have their own individual gallery that they could control on their own. My goal is to make a more automatic type of website. I don’t want to be responsible for uploading, formating, placing images and thumbnails. If Gallery2 or any other gallery can give me this functionality then thats what I want. I usually gut out allot of the progs i use on my site. I am a ‘simplicity addict’ so I strip out any “bloat-i-ness” from applications.
I’ll get back to ya. 😉