Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    In reply to: Suggestion for Post Formats

    #21854

    I will be adding my full code soon

    Adding it where? Do you mean you will be updating the appearance of your blog?

    Mod

    In reply to: Products Page Category only displays one product

    #21936

    I would forgo the standard category page and use something like Kalin’s Post List plugin, which might work much better for your site anyway. I use it and love it. Here’s a tutorial: http://blog.kjodle.net/2011/10/30/kalins-post-list-a-brief-tutorial/

    Mod

    In reply to: post links at both top and bottom of category page

    #21844

    Use a Graphene action hook widget. See this tutorial:

    http://blog.kjodle.net/2011/11/04/graphene-action-hook-widgets-an-easy-way-to-modify-your-blog/

    You will probably want to use the “graphene_after_post_content” action hook area in the “loop.php” file.

    You will need to install the PHP widget as I mention in my tutorial.

    Paste this code into a text widget:

    <?php /* Posts navigation for single post pages, but not for Page post */ ?>
    <?php if ( is_single() && ! is_page() ) : ?>
    <div class="post-nav clearfix">
    <p id="previous"><?php previous_post_link(); ?></p>
    <p id="next-post"><?php next_post_link(); ?></p>
    <?php do_action('graphene_post_nav'); ?>
    </div>
    <?php endif; ?>

    I don’t have the time to test this, but it should work in theory. Let us know how it goes.

    Mod

    In reply to: Products Page Category only displays one product

    #21933

    I get a 403 error when I click on the above link.

    Mod

    In reply to: How to create a site version on second language

    #21859

    You can always change the width of anything just by targeting it in your child theme’s css:

    #top-bar, #footer {width: 100%;}

    but you have to be careful because everybody has a different size monitor. So it may look great on your monitor, but if someone else has a more narrow monitor, it will appear squeezed together, and if their monitor is wider, it will appear spaced too far apart.

    Mod

    Still, it seems easier just to use a heading (whatever level you would like) and enter the links yourself. Not difficult, especially if you aren’t going to change them.

    Mod

    In reply to: Search Widget Customization

    #21843

    I don’t know how to do it with the default search widget, but you can always “view source” and copy the code from the search widget and paste it into a text widget. In this case, you would want to change

    value="Search"

    to

    value=""

    which will make the box appear empty.

    Mod

    In reply to: next-post-link in same category

    #21895
    Mod

    In reply to: Duplicated Posts in Slider

    #21919

    You’re welcome. I added a couple of tags to help others looking for solutions here. (And thank you for marking this thread “resolved”.)

    Mod

    In reply to: Duplicated Posts in Slider

    #21917

    ahhhh…plugin issue. Glad you figured it out.

    I believe that xfbml is unique to Facebook, which means it can’t possibly be compatible with everything. iframes, on the other hand, are more universal, and therefore, work with a broader range of coding schemes.

    The only solution may be to wait for FB to upgrade/update their code so it plays nice with others, but my impression is that they are waiting for everyone else to change their code to play nice with FB.

Viewing 10 posts - 4,611 through 4,620 (of 5,839 total)