Results 1 to 3 of 3

Thread: Firefox Problem

  1. #1
    Thread Starter
    Senior Member jakesterz's Avatar
    Join Date
    Aug 2009
    Posts
    194
    Thanks
    0
    Thanked 1 Time in 1 Post

    Firefox Problem

    Just started seeing this problem. Not sure what is causing it. The only thing I changed was the code that expires ads at the bottom of index.php.

    In IE, everything looks fine.



    But in Firefox, the blue bar and labels for the list keep disappearing.



    Any idea what could cause this and how to fix?

    If it helps, here's what I changed.

    This line:

    Code:
    $sql = "SELECT `ID` FROM $wpdb->posts WHERE `post_date`<'".date('Y-m-d h:i:s', strtotime("-$prun_period days"))."' AND `post_status`='publish' AND `post_type`='post' LIMIT 10";
    To this:

    Code:
    $prun_exp_time = date('Y-m-d', time());
    
    $sql = "SELECT * FROM $wpdb->posts
    LEFT JOIN $wpdb->postmeta ON($wpdb->posts.ID = $wpdb->postmeta.post_id)
    WHERE `meta_key`='e_date'
    AND `meta_value` != ''
    AND '$prun_exp_time' > `meta_value` AND `post_status`='publish' AND `post_type`='post' LIMIT 10";

  2. #2
    Thread Starter
    Senior Member jakesterz's Avatar
    Join Date
    Aug 2009
    Posts
    194
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Firefox Problem

    I replaced the index.php with the original one and it's still doing this so that's ot the issue. Any idea?

  3. #3
    Thread Starter
    Senior Member jakesterz's Avatar
    Join Date
    Aug 2009
    Posts
    194
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Firefox Problem

    When there are no ads posted, the bar reappears.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Problem with Featured Listings in Firefox and Ggle Chrome
    By davea in forum Help Using ClassiPress
    Replies: 41
    Last Post: June 27th, 2015, 01:07 PM
  2. How to stop Firefox download
    By rubella in forum ClassiPress General Discussion
    Replies: 1
    Last Post: May 14th, 2010, 08:43 PM