Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • fishingfool’s suggestion did end up working for me, FYI

    pastormatt: doing that didn’t actually fix it for me, i was just pointing out a difference in URLs. weird that it fixed it for you.

    I have noticed this exact same thing. You have to go to the Site Admin area in order to Log Out. Very weird.

    In the admin panel, this is what the Log Out button links to:
    https://kurtiskronk.com/wp-login.php?action=logout&_wpnonce=d07d0f2fd9

    On the normal blog pages, it just links to:
    https://kurtiskronk.com/wp-login.php?action=logout

    Thread Starter kurtiskronk

    (@kurtiskronk)

    Upon closer inspection, the progress i made on the header affects all single-pages… is there a way to make this only happen on one specific page?

    and what would it take to get in the slideshowpro module for my portfolio (as seen on the portfolio page)…

    Thread Starter kurtiskronk

    (@kurtiskronk)

    I’ve made some progress now on a test page:
    https://kurtiskronk.com/porty/

    the secondary header bar is totally gone now, as is the sidebar… now I just have to get in the slideshowpro module for my portfolio (as seen on the portfolio page)…

    Forum: Plugins
    In reply to: Related Posts?
    Thread Starter kurtiskronk

    (@kurtiskronk)

    Oh, duh. I must have disabled that plugin at some point and forgot it wasn’t built into WordPress without a plugin. Re-enabled ‘Yet Another WordPress Plugin’ and it works like a charm without doing anything else.

    And…. resolved. ??

    Thread Starter kurtiskronk

    (@kurtiskronk)

    I went ahead and removed the table since I couldn’t get some parts of the border to go away and I got it looking good enough anyways with a couple quick alterations to the code, as seen below:

    <div class="navigation" style="padding-top: 15px; padding-bottom: 10px;">
    	<div style="float: left;"><?php previous_post_link('&laquo; %link') ?></div>
    	<div style="float: right;"><?php next_post_link('%link &raquo;') ?></div>
    </div>

    I ended up putting this at the top of the post and at the bottom as well, above the comments.

    Here’s the end result: https://kurtiskronk.com/2008/12/16/standing-in-wait/

    And for reference, for anyone else looking to do the same thing, here are the entire contents of my single_default.php for the Carrington theme:

    <?php
    
    // This file is part of the Carrington Theme for WordPress
    // https://carringtontheme.com
    //
    // Copyright (c) 2008 Crowd Favorite, Ltd. All rights reserved.
    // https://crowdfavorite.com
    //
    // Released under the GPL license
    // https://www.opensource.org/licenses/gpl-license.php
    //
    // **********************************************************************
    // This program is distributed in the hope that it will be useful, but
    // WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    // **********************************************************************
    
    if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); }
    if (CFCT_DEBUG) { cfct_banner(__FILE__); }
    
    get_header();
    
    ?>
    
    <div id="content">
    
    <div class="navigation" style="padding-top: 15px; padding-bottom: 10px;">
    	<div style="float: left;"><?php previous_post_link('&laquo; %link') ?></div>
    	<div style="float: right;"><?php next_post_link('%link &raquo;') ?></div>
    </div>
    
    <?php
    	cfct_content();
    ?>
    
    <div class="navigation" style="padding-top: 15px; padding-bottom: 10px;">
    	<div style="float: left;"><?php previous_post_link('&laquo; %link') ?></div>
    	<div style="float: right;"><?php next_post_link('%link &raquo;') ?></div>
    </div>
    
    	<div id="comments">
    <?php
    	comments_template()
    ?>
    	</div><!--#comments-->
    </div><!--#content-->
    
    <?php
    get_sidebar();
    
    get_footer();
    
    ?>

    Many thanks to figaro, jabecker, and dgold for help doing this. Ended up being more simple than I realized, but the fact that this theme’s code was so different from my other themes confused me thoroughly. ??

    Thread Starter kurtiskronk

    (@kurtiskronk)

    No no, I added the table, so that the next/previous would each be on one half of the same line, I don’t like it when they wrap one line on top of the other.

    And there is a problem that came from me putting your code before I modified it for some reason. Somehow, it messes up the placement of the post title, at least it does in Firefox, not sure about other browsers. For me, it would randomly indent it varying numbers of pixels

    Thread Starter kurtiskronk

    (@kurtiskronk)

    This is what it looks like now, if you want to see it, with the table border and all:

    https://kurtiskronk.com/2008/12/12/two-cubed/

    Thread Starter kurtiskronk

    (@kurtiskronk)

    figaro: The file you put up does exactly what I’m looking for with the previous/next links, but for some reason it messes with the placement of the title of the single post you’re in?

    I altered the code a bit to this:

    <div id=”content”>
    <div class=”navigation”>
    <table width=”100%” cellspacing=”10″ style=”border-width: 0px;”>
    <tr><td width=”50%”>
    <div style=”float: left;”><?php previous_post_link(‘« %link’) ?></div>
    </td><td width=”50%”>
    <div style=”float: right;”><?php next_post_link(‘%link »’) ?></div>
    </td></tr>
    </table>
    </div>

    only problem now is that it’s giving me a table border even though I tell it not to.

    Thread Starter kurtiskronk

    (@kurtiskronk)

    figaro: yes, that’s precisely what i’m looking for with the previous/next links at the top. how’d you do it? and any clue how i could link to related posts above the comments?

    jabecker: what file are you referring to for putting that code in? (I tried putting it in loop-default.php, after the while loop started, after the end of the loop, and in a couple other spots, and none of those worked.

    Thread Starter kurtiskronk

    (@kurtiskronk)

    Anyone…? *crickets chirping*

    Thread Starter kurtiskronk

    (@kurtiskronk)

    I switched back to iNove while I wait for an answer on this – I like Carrington more but the previous/next thing is important to me and I can’t figure it out.

    Thread Starter kurtiskronk

    (@kurtiskronk)

    *ding dong*

    Thread Starter kurtiskronk

    (@kurtiskronk)

    Okay, maybe I’m dense… but I am getting a bit of a run-around from all these files. Any chance someone could do this for me, or share the code you’ve used yourself to do this? I would think this is a pretty important thing, linking to previous / next posts, so that people can go through your content easily.

Viewing 15 replies - 1 through 15 (of 23 total)