freshyill
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: WP Facebook Open Graph protocol] Gallery ImagesI take that back. It was an error on my end.
Forum: Plugins
In reply to: [Plugin: WP Facebook Open Graph protocol] Gallery ImagesIt doesn’t do anything at all for me. If there’s something else that I need to do in order to get it to work, I don’t see any instructions.
Forum: Fixing WordPress
In reply to: Problem inserting XML tags in the page EditorSince nobody ever follows through on these craptacular WordPress boards, I figured I might as well weigh in and tell people how to actually go about disabling the rich editor.
Go to the Users tab, and then scroll all the way to the bottom. The option is there.
For what it’s worth, that’s a stupid place for it, and pretty hard to find.
Forum: Fixing WordPress
In reply to: trying to list stories on author pageOK, I figured it out. Just to make these forums a little less useless for the next poor guy who comes along, with the same question, I’ll actually answer it.
I just needed to use this in place of where I have the_time: <?php the_date(); ?>. Would it have been so painful to actually explain that?
Hopefully this will help somebody else in the future.
Forum: Fixing WordPress
In reply to: Previous Entries bug – but I only have 1 entryI suppose I’ll bring *another* dead thread back to life. Is there a fix for this? I get next and previous entries links even on the first page.
Forum: Installing WordPress
In reply to: Can’t change URI for blogWell I tried the instructions there, and things just broke. The site wouldn’t show up where I told it to, and it would show up at the old location, but with no styles, and links didn’t work because it couldn’t find index.php. I changed it back and things still work at the old location, so I know I didn’t do anything wrong.
Forum: Installing WordPress
In reply to: Can’t change URI for blogCan anybody tell me exactly how this was done? Nobody ever finishes their threads here, making them just about useless for people who come through later.
Please, any kind of help would be useful. I’m having the same issue. I change the URI of the blog, and nothing happens.
Forum: Fixing WordPress
In reply to: delete a useroops, sorry for the double post
Forum: Fixing WordPress
In reply to: Help me troubleshoot short Loop. It works, almost.Anybody?
Forum: Fixing WordPress
In reply to: Help me troubleshoot short Loop. It works, almost.OK, still not complete…. This is causing errors on a loop later on the page. When this is in place, It only shows the last three entries, and for some reason, they all take me to the same article, of the most recent one, even when the URL up top is different.
So I’ve definitely got some problem in this code. Come on, somebody here has to know something about WordPress.
Forum: Fixing WordPress
In reply to: Help me troubleshoot short Loop. It works, almost.I think I’ve got it. This is the code I used. Can somebody tell me if this is the right way to do what I’m trying to do, or if there’s a better method I might want to try?
<div id="promos" class="clearfix">
<?php $posts = get_posts( "category=22&number=3" ); ?>
<?php if( $posts ) : ?>
<?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<div class="promoitem">
<?php echo get_post_meta($post->ID, 'Feature promo image', true); ?>
<h2><?php echo get_post_meta($post->ID, 'Feature promo header', true); ?></h2>
<p><?php echo get_post_meta($post->ID, 'Feature promo text', true); ?></p>
</div>
<?php endforeach; ?>
<?php endif; ?>
</div>Forum: Fixing WordPress
In reply to: Help me troubleshoot short Loop. It works, almost.OK, I think I figured something out. This isn’t limiting the category to 22 and the number to the last 3, like I thought it was. This is showing *all* entries. The empty ones don’t have these fields.
How can I change it to show only the last 3 entries in category 22?
Forum: Fixing WordPress
In reply to: Help me troubleshoot short Loop. It works, almost.I had to take out the & at the end to get it to work, but it gives me the same result that I was getting before. Still no luck.
While I’m at it, I should mention that this prevents the next loop on the page from working. It gives me the not found in the else.
Forum: Fixing WordPress
In reply to: Can’t choose page templateYet again, I’ve solved my own question. Not sure how, but the header stuff at the top of the template got deleted. I replaced it and now things are working. Doh!
Forum: Fixing WordPress
In reply to: .htaccess not writable if blog is outside wordpress directoryI was having this problem. Putting a copy of the .htaccess file in my /blog folder fixed it. I’m assuming that it’ll fall back to the normal and correct spot when I eventually move the blog to the web root.