Forum Replies Created

Viewing 15 replies - 106 through 120 (of 1,218 total)
  • In the linked image below I have a page called Test Page. I am going to edit it and call it Test Page Two.

    http://img.photobucket.com/albums/v479/Hedgehog67/wp-forum/test_page.png

    Sorry for all of the pics. I find it easier to explain things with the help of visual aids. πŸ™‚

    @loopme

    This may or may not be theme specific. Is this your site? –> bebackonmonday.com

    If so, that info may be hardcoded in your sidebar or may be simply a widget. If it’s a widget, just remove the widget named Meta. If it’s hardcoded into the theme (that’s a paid theme so I can’t download it to take a look) just edit the file that controls that sidebar.

    @mjblake

    The code you’re looking for is in sidebar.php Open that file and at the top you will see this …

    <div id="subscribe">
    
    	<p><img style="vertical-align:-2px;" alt="RSS" src="<?php bloginfo('template_directory'); ?>/images/feed-icon-16x16.gif" /> &nbsp;<a href="<?php bloginfo_rss('rss2_url') ?>"><?php _e('Entries RSS'); ?></a> | <a href="<?php bloginfo_rss('comments_rss2_url') ?>"><?php _e('Comments RSS'); ?></a></p>
    
    </div>

    Simply delete it. A caveat: If you delete that bit you may want to adjust your style sheet. Why? Because that DIV is defined in the style sheet and deleting it will leave an empty space where it used to be. Which means the left and right sidebars won’t be evenly matched with respect to the navigation above them.

    To fix that, look in the style sheet (style.css) and you will see this …

    #left {
    width: 190px;
    float:left;
    margin: 0;
    padding: 5px 0 10px 0;
    overflow:hidden;
    }

    #sidebar {
    padding: 0;
    margin: 0 0 0 740px;
    background: #fff;
    }

    The DIV named LEFT controls all elements in the left sidebar while the DIV named SIDEBAR controls those in the right sidebar.

    Note the padding for the DIV LEFT –> 5px 0 10px 0;

    That means it has a top padding of 5px, no right padding, bottom padding of 10px and no left padding. (it reads clockwise)

    Now note the DIV SIDEBAR has no padding at all –> padding: 0;

    So, simply give it a top padding of 5px. It should now look like this …

    #sidebar {
    padding-top: 5px;
    margin: 0 0 0 740px;
    background: #fff;
    }

    This will line things up evenly once you have deleted the earlier stuff.

    Issue #1 – It appears you have a wayward <div> tag. Looking at the source code of the post called “Review – First, Break All the Rules: What the World’s Greatest Managers Do Differently” I see this …

    <p>Some people are strategic thinkers. Some people are mathematicians. Some people are analytical. Trying to fit a person into the wrong position will be disastrous and unproductive for the employee, the manager, and the company.</p>
    
    <div>
    
    <p>This book goes a long way towards examining what really makes great managers great. A wise student of management would include it in their collection. Heck, I’ve read it twice already!</p>

    Where did that tag come from? You must have inadvertently inserted it in your post.

    Issue #2: – When clicking on the other 2 post titles I get 404 errors. When you edit the permalink be sure to update the post.

    Haha, I have a full time job – I’m a roofer. I have no desire to make money from this. I just like helping out when I can. πŸ™‚

    Glad to see you have things working the way you want.

    Navigate to Settings > Bad Behavior. In this screen, at the top, you will see … “Display statistics in blog footer”. Uncheck that box.

    Forum: Plugins
    In reply to: Add separate blog page

    Once blog.php contains the necessary code (The Loop) for displaying posts it will do just that.

    Most themes have an index.php file which automatically acts as a site’s home page. Therefore it will output that site’s posts. However, if you are using blog.php, with a Static Page, whenever someone clicks on the page called Blog (which uses the blog.php file) THAT page will output the posts. Have a look at Template File Hierarchy.

    If you wish to display comments then yes you will need a comments.php file for that AND call that file in blog.php if that is where you want them displayed.

    Okay, I’m fairly certain we’re talking about the same thing here. These 2 lists, one under Articles and the other under Book Reviews, are pages and not posts, yes?

    Make note of the individual Page IDs as you’ll need them.

    You’ll be using 2 Page Widgets for this. Insert the first Page Widget and call it whatever you want – List of Articles if that’s what you want. Now, WordPress will automatically include ALL of your site’s pages and display them as a list via that widget. However, you have the ability to OMIT pages from appearing. Look at the bottom of that particular widget and you’ll see an option for excluding certain pages by inserting the applicable Page ID(s). In other words, if you don’t want the pages with the IDs of 4,5 and 6 from appearing in the List of Articles page widget then insert those IDs in the appropriate field.

    Do the exact same thing in a second pages widget. Take a look at the linked image below for clarification …

    http://img.photobucket.com/albums/v479/Hedgehog67/wp-forum/page-widgets.png

    In this image I have 2 page widgets – 1 called List of Articles and the 2nd Book Reviews. The first widget will display all pages EXCEPT for the pages with the IDs of 1,2 and 3. The 2nd widget will display all pages EXCEPT for those with the IDs of 4,5 and 6.

    I’ve already reported it to the forum mailing list so a mod will see it soon.

    Hi jon73,

    If you ever come across a post that you think the moderators should see (such as spam) tag the post with “modlook” (without the quotes)

    When the mods log in that tag is often the first thing they look at. Additionally, many of them subscribe to that particular tag’s RSS feed.

    BTW, I just tagged the post you cited.

    Forum: Plugins
    In reply to: Add separate blog page

    Okay, now keeping in mind what the Codex says about creating Page Templates, you can create a new Page Template and call it blog.php

    At the very top you will need to insert this …

    <?php
    /*
    Template Name: Blog
    */
    ?>

    Now, in the Add Page screen, write a new page, call it whatever you want (Blog) and select blog.php from the drop down menu. This will assign your newly created blog.php template file to the newly created Blog page.

    For this to work, you must have the code for generating posts present in blog.php (The Loop)

    Hi zechmann,

    I haven’t tried any of these plugins so I can’t vouch for them. The one called Relevanssi looks like it might be close to what you want?

    Hi mohawktraditionalcouncil,

    All I see at the link you provided is a standard HTML page.

    Hi jgdeweese,

    There is an error message at the bottom of your site pointing to an error in sidebar.php at Line 26.

    Forum: Plugins
    In reply to: Add separate blog page

    Hi elbalazo,

    I’m assuming this theme you built includes a standard theme file like index.php?

Viewing 15 replies - 106 through 120 (of 1,218 total)