• marcusdewiltshire

    (@marcusdewiltshire)


    Hello…….I wish I could offer some kind of value exchange, like 3 jokes per problem resolved, or 4000 inane ebooks…..but I can’t so I am just hoping somebody will be kind enough to help me with this….Oh! I guess I could offer stuff like links, or advice ..just ask!

    Okay , I have 3 problems with my WP install, and I am not a programmer, so I’m stuck.

    1) My Comments aren’t showing.
    2) How do I activate my footer menu bar, as imported from artiseer.
    3) How do I make the rss feed in the footer work

    Thanks

    Marcus

Viewing 7 replies - 1 through 7 (of 7 total)
  • Samuel B

    (@samboll)

    1) is this your site?
    https://www.themarcuswest.com/stem-enhance/
    if so, they show on single post view – do you want them elsewhere?

    2) ???

    3) https://www.themarcuswest.com/feed/
    this works

    if this is not the site – could you supply a link?

    Thread Starter marcusdewiltshire

    (@marcusdewiltshire)

    Hi Samboll , it is indeed.

    I’m just digesting the replies.

    Thread Starter marcusdewiltshire

    (@marcusdewiltshire)

    Hi Samboll,

    thanks for the reply, much appreciated.

    RE 3) I’m embarrassed to be so stupid.

    RE 1) OK, I see but for
    https://www.themarcuswest.com
    the comments don’t show, which is where I guess I want them….lol……I think……don’t I?

    RE 2) I don’t know how to link the footer menu to anything….if you press them nothing happens..they are inactive

    Samuel B

    (@samboll)

    for comments on the front page – the the theme’s index.php needs the comment code added
    add this right below the_content code
    <?php comments_template(); ?>

    you will need to do same for page.php if you want it on pages

    by default most themes only have comments on the single view

    don’t feel like an idiot – there is always a learning curve

    I’ll try to grab the theme to see what you mean about the footer

    edit – doh! – you used artisteer

    I assume there is a widget
    admin – Appearance – Widgets
    or the links are hard-coded in the theme’s footer.php and you need to manually change them to the url of the page you created for these links

    Thread Starter marcusdewiltshire

    (@marcusdewiltshire)

    Hi Samboll,

    I’ll ask you one question at a time…..maybe easier for me.

    I have a footer tab in my appearance control panel. I have gone in and deleted some of the footer stuff.

    But I’ve left the ‘Contact Me’ and the ‘Privacy’ links.

    Okay, I have a Contact form Page, and I’ve also created a privacy page.

    I want the links from the footer to be active, and I also want the privacy page not to be on the top menu bar……….

    How do I proceed please?

    Regards
    Marcus

    Samuel B

    (@samboll)

    you will need to edit 2 theme files
    header.php
    look for this or similar
    <?php wp_list_pages('title_li=&depth=');
    change it to
    <?php wp_list_pages('title_li=&depth=&exclude=2');
    change 2 to whatever your privacy statement page id is
    this will remove that from top navbar

    footer.php
    find 2 the url’s
    https://www.themarcuswest.com/#////#

    change them to
    https://www.themarcuswest.com/privacy/
    and
    https://www.themarcuswest.com/contact-form/

    Thread Starter marcusdewiltshire

    (@marcusdewiltshire)

    Hi Samboll,
    Here is my header coding. I can’t see the line of code you mention……or anything similar..sorry

    Regards
    marcus

    <!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&#8221; <?php language_attributes(); ?>>
    <head profile=”https://gmpg.org/xfn/11″&gt;
    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <meta http-equiv=”X-UA-Compatible” content=”IE=EmulateIE7″ />
    <title><?php if (is_home () ) { bloginfo(‘name’); } elseif ( is_category() ) { single_cat_title(); if(get_bloginfo(‘name’) != “”) echo ‘ – ‘ ; bloginfo(‘name’); }
    elseif (is_single() ) { single_post_title(); }
    elseif (is_page() ) { bloginfo(‘name’); if(get_bloginfo(‘name’) != “”) echo ‘: ‘; single_post_title(); }
    else { wp_title(”,true); } ?></title>
    <script type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/script.js”></script>
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <!–[if IE 6]><link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/style.ie6.css” type=”text/css” media=”screen” /><![endif]–>
    <!–[if IE 7]><link rel=”stylesheet” href=”<?php bloginfo(‘template_url’); ?>/style.ie7.css” type=”text/css” media=”screen” /><![endif]–>
    <link rel=”alternate” type=”application/rss+xml” title=”<?php printf(__(‘%s RSS Feed’, ‘kubrick’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘rss2_url’); ?>” />
    <link rel=”alternate” type=”application/atom+xml” title=”<?php printf(__(‘%s Atom Feed’, ‘kubrick’), get_bloginfo(‘name’)); ?>” href=”<?php bloginfo(‘atom_url’); ?>” />
    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_head(); ?>
    </head>
    <body>
    <div id=”art-page-background-simple-gradient”>
    </div>
    <div id=”art-main”>
    <div class=”art-Sheet”>
    <div class=”art-Sheet-tl”></div>
    <div class=”art-Sheet-tr”></div>
    <div class=”art-Sheet-bl”></div>
    <div class=”art-Sheet-br”></div>
    <div class=”art-Sheet-tc”></div>
    <div class=”art-Sheet-bc”></div>
    <div class=”art-Sheet-cl”></div>
    <div class=”art-Sheet-cr”></div>
    <div class=”art-Sheet-cc”></div>
    <div class=”art-Sheet-body”>
    <div class=”art-Header”>
    <div class=”art-Header-jpeg”></div>
    <div class=”art-Logo”>
    <h1 id=”name-text” class=”art-Logo-name”>
    /”><?php bloginfo(‘name’); ?></h1>
    <div id=”slogan-text” class=”art-Logo-text”>
    <?php bloginfo(‘description’); ?></div>
    </div>

    </div>
    <div class=”art-nav”>
    <div class=”l”></div>
    <div class=”r”></div>
    <ul class=”art-menu”>
    <?php art_menu_items(); ?>

    </div>

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Stuck like a lemming in the headlights’ is closed to new replies.