Forum Replies Created

Viewing 8 replies - 61 through 68 (of 68 total)
  • Hmmm… it’s showing up now, but there are two entries on the first line. I’m pretty green with PHP, any clue what might be wrong here?

    Any idea why IE doesn’t like it? I used some PHP from the codex (can’t remember which link I ended up on to grab it, but it involves The Loop), and it looks good in Firefox, but nothing from the PHP shows up in IE.

    Here’s what I used:

    <div id="latestnews">
    <?php
    $how_many=5; //How many posts do you want to show
    require_once("./wordpress/wp-config.php"); // Change this for your path to wp-config.php file ?>
    <ul id="whats-new">
    <li>Latest News From Indigo Springs</li>
    <?
    $news=$wpdb->get_results("SELECT
    ID,post_title FROM $wpdb->posts
    WHERE
    post_status= "publish" ORDER BY 'ID' DESC LIMIT ".$how_many);
    foreach($news as $np){
    printf ("<li><a href="wordpress/index.php?p=%s">%s</a></li>", $np->ID,$np->post_title);
    }?>
    </ul>
    </div>

    The page is at https://www.indigospringshoa.com/index_new.php

    Thanks!

    Thread Starter GOBLUE14

    (@goblue14)

    If it’s an image you’re looking to change, the easiest way is to make sure your new header image is the same size as the one it’s replacing, then save it in the “images” folder of your theme with the same filename as the one you want to get rid of.

    If you’re more familiar with CSS, you can save it with it’s own identifiable name, then find the name in the style.css file and change it there, and if you’re REALLY familiar with CSS, you can put any size image in there, and then change the CSS around it to make it fit.

    Same problem here. Anyone figure this one out yet?

    I’m on WP 2.0, have tried the hack mentioned above and got nothing. It’s a Firefox issue for me, as IE remembers my information.

    Forum: Fixing WordPress
    In reply to: Blogger import

    I’m having the exact same trouble. Looks like everything imports fine (shows up in FTP and I get the “Done!” message from Step 3 of the WP importer), but the imported posts aren’t showing up on the new WP blog.

    Thread Starter GOBLUE14

    (@goblue14)

    bumping… (by request)

    Still no luck. I’ve deleted cache and cookies on two separate computers with both IE6 and Firefox, but still get the same error. I deleted the wp-comments.php file and replaced it with one from a fresh download of WP, and made sure all plug-ins are deactivated. Still, I get the “Sorry, no posts matched your criteria.” error when trying to submit a comment.

    This has me thoroughly confused as well. (Sorry that this is my second thread about this, I couldn’t find this one again at first and didn’t get any attention at the other spot, either.) I tried the “unset author” line, but I don’t know if I had it in the wrong place, or what, but it didn’t work. And I don’t see my .htaccess file in my wordpress directory to make a change there.

    I only have one version of wordpress installed, and comments worked fine one day and I get the “Sorry…” error two days later, from both IE6 and Firefox, with and without cookies.

    Any help? Thanks!

    Thread Starter GOBLUE14

    (@goblue14)

    Okay, problems 2 & 3 solved. (I found the size for the comments box, it’s in the wp-comments.php script!) And fixing the size of that apparently fixes the second problem, which is good.

    Now for the biggie… I’m looking back through that other thread on this (first one if you search “criteria”), but no luck understanding it, much less applying it.

    My site is https://www.haveyoumettony.com if that helps.

    Thanks again!

Viewing 8 replies - 61 through 68 (of 68 total)