• The Northern Web Coders theme that worked fine in 1.5 is returning a database error (completely clean install x2 to make sure I wasn’t messing up…).

    Here’s the error message:
    WordPress database error: [Unknown column ‘time_modified’ in ‘order clause’]
    SELECT * FROM waitepost_posts WHERE post_status = ‘static’ ORDER BY time_modified ASC

    This can temporarily be seen at https://www.waitepost.com until I either find a fix or change themes.

    The theme is available at https://www.alexking.org/software/wordpress/theme_browser.php.

    Would appreciate any ideas on how to fix this–my database knowledge is, shall we say, limited!

Viewing 16 replies (of 16 total)
  • I had the same problem with :

    https://www.usefulnetstuff.com
    and https://www.retrocore.co.za

    To delete those original pagelinks , delte the whole code after , and before of everything that looks like it relates to the links.

    The database issue can be solved by using this as the header file : ( for nothern coder theme only ) :

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml”&gt;
    <head profile=”https://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
    <meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” /> <!– leave this for stats please –>
    <style type=”text/css” media=”screen”>
    @import url( <?php bloginfo(‘stylesheet_url’); ?> );
    </style>
    <link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”alternate” type=”text/xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
    <link rel=”alternate” type=”application/atom+xml” title=”Atom 0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_get_archives(‘type=monthly&format=link’); ?>
    <?php //comments_popup_script(); // off by default ?>
    <?php wp_head(); ?>
    </head>
    <body>
    <div id=”rap”>

    <h1 id=”header”>“><?php bloginfo(‘name’); ?></h1>

    <div id=”navcontainer”>

      <li class=”page_item”>

      <?php wp_list_pages(‘sort_column=post_modified&title_li=’); ?>

    </div>

    <div id=”content”>
    <!– end header –>

Viewing 16 replies (of 16 total)
  • The topic ‘Northern Web Coders theme breaks in 1.5.1’ is closed to new replies.