manstraw
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTML Input is changed in an ‘stupid’ waygotcha
the roles manager plugin give you access to a setting for unfiltered html. I haven’t tested it though.
there is also a setting in each user profile for using the visual editor, which you might need off.
and if those don’t do it, you can turn off filtering functions by adding something like this to functions.php in your theme:
remove_filter("the_content", "wpautop");cruise the wordpress file functions-formatting.php for to see what other filters you might be able to turn off.
Forum: Themes and Templates
In reply to: Comments showing up where they shouldn’t be!When you write or edit a page, there is an option on the right for turning off comments for it. Click the plus sign beside Discussion on the right.
Forum: Plugins
In reply to: How do I change the front page header picture?You change that picture by replacing the file in the theme you are using. You use an ftp program, or whatever method you used to install your wordpress and theme. If you posted a url, I could be more specific.
Forum: Fixing WordPress
In reply to: HTML Input is changed in an ‘stupid’ waynot enough info. where exactly is wordpress “changing” this.
Forum: Fixing WordPress
In reply to: Need Advise on My Feed – It Doesn’t Work?He might have some conflicting rewrite rules in another .htaccess file.
Did wordpress automatically make the .htaccess file? Or did you copy the code it recommended and install it yourself? If you installed it yourself, make sure you put it in /journal/, and not the html root.
Forum: Fixing WordPress
In reply to: problems making horiztonal ruleYou’ve added the border colour to the header id style. The only problem with that in this style is that the header is bigger than what the background image implies. A border in css always paints the entire side of the box. In this case, it would be more appropriate to edit the background image itself in photo editor. Don’t have photoshop? Try http://www.gimp.org/windows/
Forum: Plugins
In reply to: Adding a logged in user’s nameI don’t have time to study the whole script, but I can give you a quick tip on the code you posted.
if ( $user_nickname<> "" )
echo $user_nickname ;That bit can be changed to add the word welcome by changing it to the following:
if ( $user_nickname<> "" )
echo "welcome" . $user_nickname ;As far as asking a guest to register, I would assume this admin bar is only visible if a person is logged in right? If it’s always visible, the above code could be modified. If it’s not always visible, you’d need to find where it decides to display it or not. Most likely where the function is called.
Here is how that above could should be changed if the admin bar is always visible:
if ( $user_nickname<> "" ) {
echo "welcome" . $user_nickname ; }
else {
echo "please log in"; }You could change please log in to anything, and perhaps even code in an a tag to link to the login page.
Forum: Plugins
In reply to: Adding a logged in user’s nameto be sure your code isn’t messed up, put it between backticks ( the key at the top left ). what is showing up looks busted. if you repost it, I’ll take a crack at the modification.
Forum: Fixing WordPress
In reply to: Explorer Screwup?Well, it looks mostly correct in the Internet Explorer beta. (I don’t have 6 anymore). I notice you’re missing some
<ul>type stuff. The missing alt attributes shouldn’t affect display, but it would be good to include them. Fix up the tags for your lists and see if that solves your problem.Also, I thought the ie7 javascript tag needed to be in the within head. You have it in body. I’m not certain if it works where you’ve put it. And I also don’t see the js files on your server. Not going to work without them!
Forum: Fixing WordPress
In reply to: how come I never get answersI’m not inclinded to help you with all the shouting and ‘tude, but I’ve decided that if I do, you’ll be quieter.
Click this link > http://wordpress.org/support/ and scroll down to the bottom. Click any of the blue links you see under the word FORUMS. Here they are again if you still can’t find them.
http://wordpress.org/support/forum/2
http://wordpress.org/support/forum/3
http://wordpress.org/support/forum/5
http://wordpress.org/support/forum/10
http://wordpress.org/support/forum/4
http://wordpress.org/support/forum/11
http://wordpress.org/support/forum/7Once you’ve click one, scroll down to the bottom again. See that stuff under NEW TOPIC IN THIS FORUM? Fill it in and press the Send Post button.
Forum: Plugins
In reply to: Adding a logged in user’s nameThe key bit is the global variable $user_nickname. Try sticking that in in the right place. See that one line:
Welcome <?php echo $user_nickname ?>.I don’t know the plugin you are using, but you said you already found the place you want to have it show up, so I assume you can give this a shot.
Forum: Fixing WordPress
In reply to: how come I never get answersPeople answer when they know the answer. If you provide more details, the likelyhood someone will understand your question increases.
Also, when you do find a solution, do you reply to your own thread and inform everyone as to the solution? It would be very helpful to other people in the same boat as you.
Forum: Installing WordPress
In reply to: New Install and can’t loginglad you got it sorted.
it’s quite possible that the download was corrupt. ya never know.
Forum: Installing WordPress
In reply to: New Install and can’t loginwithout knowing more, starting fresh is the only advice I can offer.
if you have access to phpmyadmin, I would zonk out the mysql tables, remove all the wordpress files, and reinstall. If you have data there you want, back it up, that includes files and the mysql data.
when doing a reinstall, get a brand new download of wordpress first.
Forum: Installing WordPress
In reply to: Where do I host it?those automatic installs are not usually kept up to date. something to check before using them. as long as you can manually update/install, it would be fine.