foolmars
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make a site like Digg?ShortGuy, I know that part. If there was a way for the user not to enter the ADMIN interface, it’d be better though.
Forum: Fixing WordPress
In reply to: Make a site like Digg?Would also like help on this one. Especially the part where registered users can contribute entries
Forum: Plugins
In reply to: Display Name as Full Name upon RegistrationI think the basic configuration is that the disabled option isn’t there… and you add it so that the user won’t be able to touch the field at all.
Forum: Plugins
In reply to: Display Name as Full Name upon RegistrationYou just need to hack profile.php in the admin folder. Look for this part:
<p><label><?php _e('Username: (no editing)'); ?><br /> <input type="text" name="user_login" value="<?php echo $profileuser->user_login; ?>" disabled="disabled" /> </label></p>And note the disabled variable.
PS. AS an addenum to my original query, I was wondering if it was possible (upon registering) for the code to automatically correct the caps on the first name and the last name so that it is properly cased. i.e. John Doe instead of john doe.
Forum: Plugins
In reply to: AJAX PostsHi! Thanks for replying but no, that’s not what I’m looking for. There’s already a plug-in that does that (make the content viewable inline through AJAX). I think it’s called AJAX’d WordPress. What I want is something more customized…
i.e. Imagine a post with these attributes:
Title: My post
Author: Person A
Filed in Categories: A and B
Tags: 1, 2, 3
Content: Lorem Ipsum <more> XXXXXXXXXThe default homepage would, through modifying the index.php file would only display: Title, Author, Categories, and Tags. Upon the user clicking on the Title Link though, an expanded post would show the words Lorem Ipsum. Upon clicking on the more link though, it would display the entire post including the content “XXXXXXXX”. Any ideas anyone?
Forum: Fixing WordPress
In reply to: Comment Author URL not updatingI don’t think I explained myself properly in the last post. My site only allows for registered members to comment so naturally each have their own profiles that they can edit. My problem is that when users update their profiles (specifically their website field), this modification doesn’t carry over to the comments section.
Forum: Plugins
In reply to: Looking for Advanced user profile pluginI second the motion!
Forum: Installing WordPress
In reply to: Empty NAVT management pageThanks for the quick reply! Reseting worked fine. Next time I’ll follow the back-up procedure. Thanks again!
Forum: Fixing WordPress
In reply to: How to display full name, not username for comments?I, too, would want to know how to apply a hack to this problem.