Forum Replies Created

Viewing 6 replies - 16 through 21 (of 21 total)
  • Thread Starter azparis

    (@azparis)

    I kept the theme but deactivated all plugins….now it shows as a valid feed, with only one error:

    This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

    line 12, column 8: title should not be blank [help]

    Thread Starter azparis

    (@azparis)

    would i upload them in the web root or the document root? Is there a way to do them all at once…or do I have to do them one by one?

    From what I can tell it looks as if since I’m moving the files from my test site to somebody else’s server with different address I’m going to hqve all kinds of issues. Would it be best if I simply install the themes I’m using on to her new site and then copy each one of the PHP files over from WordPress admin does that even make sense?

    Forum: Fixing WordPress
    In reply to: WordPress Newbie
    Thread Starter azparis

    (@azparis)

    Oh, and I’m using a purchased theme….”unfold”….

    Forum: Fixing WordPress
    In reply to: WordPress Newbie
    Thread Starter azparis

    (@azparis)

    I totally get the difference between viewing in browser vs. in themes….but my challenge is finding the code you mentioned above – I can’t find it in my theme. Here is my header.php code: I CAN see the code you mentioned in my browser code, but can’t find it all in my wordpress template code. Just wanna know where the heck it is so I can delete the duplicate code to remove my nav bar!

    <!doctype html>

    <html <?php language_attributes(); ?>>
    <head>
    <link href=”css/adipoli.css” rel=”stylesheet” type=”text/css”/>
    <script src=”js/jquery-1.7.1.js” type=”text/javascript”></script>
    <script src=”js/jquery.adipoli.min.js” type=”text/javascript”></script>

    <meta charset=”<?php bloginfo(‘charset’); ?>”>
    <meta name=”viewport” content=”width=device-width, initial-scale=1″>
    <title><?php wp_title(‘|’, true, ‘right’); ?><?php bloginfo(‘name’); ?></title>

    <!– CSS –>
    <link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘stylesheet_url’); ?>” media=”screen” />
    <?php ln_get_color_theme(); ?>
    <?php ln_get_responsive_css(); ?>

    <!– Fonts –>
    <?php ln_get_fonts(); ?>

    <!– Pingback –>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />

    <?php ln_get_favicon(); ?>

    <!– RSS –>
    <?php ln_get_rss(); ?>

    <!– Header Hook –>
    <?php wp_head(); ?>

    </head>

    <div id=”main-nav”>
    <?php wp_nav_menu(array(‘theme_location’ => ‘main_nav’, ‘container’ => ”)); ?>
    </div>
    <body <?php body_class();?> >

    <!– Header –>
    <header id=”main-header”>
    <div class=”wrap”>
    <div id=”logo”>
    <?php ln_get_logo(); ?>
    <?php ln_get_slogan(); ?>
    </div>
    <nav id=”main-nav”>
    <?php

    // main nav
    wp_nav_menu(array(‘theme_location’ => ‘primary’, ‘items_wrap’ => ‘<ul id=”menu-main” class=”%2$s”>%3$s’));

    if(has_nav_menu(‘primary’)){
    // mobile main nav
    wp_nav_menu(array(‘theme_location’ => ‘primary’,
    ‘container’ => false,
    ‘items_wrap’ => ‘<select id=”mobile-main-nav” class=”responsive-menu”><option value=”#”>’.__(‘ – Navigation’, ‘framework’).'</option> %3$s </select>’,
    ‘walker’ => new Ln_Responsive_Nav_Menu_Walker()
    ));
    }
    ?>
    </nav>
    </div>
    <div class=”clear”></div>
    </header>

    Forum: Fixing WordPress
    In reply to: WordPress Newbie
    Thread Starter azparis

    (@azparis)

    awesome – thank you for this info…seems to make perfect sense, and if I was still over on Blogger, I’d just go in and delete the second part of the code, but in WordPress I’m having a hard time finding this code. I’ve searched through every template – including header.php, style.css, and all of the others, using the “find” feature…and can’t find this code anywhere. Is there an easier way to search out the entire code instead of every template individually? I know I can see my source code in Firefox, but that does me no good when I still have to search WP and all of the different templates to find this lovely code.

    Simple I’m sure, but I’m new!

    Thanks!

Viewing 6 replies - 16 through 21 (of 21 total)