Forum Replies Created

Viewing 15 replies - 316 through 330 (of 450 total)
  • You should try posting on the weaver support forums, http://wpweaver.info

    Thread Starter zeaks

    (@zeaks)

    Twenty Ten should display the featured image you have set for the post, when viewing the post by default.
    I added a slider to mine which displays any featured image from posts in the “featured” category, if none are present it will display the selected header, and featured image as normal when viewing the post.
    With the default theme, your image needs to be big enough to display in the header, otherwise it should display when viewing the post.

    It’s a nice theme, but not really related to the content, the little airplanes next to the post titles don’t make me think of xbox games or apps, it’s more of a travel USA guide theme or something. Maybe change the header to something that makes people think “HEY! Pirated Programs and Movies!” >.<

    It’s looking pretty good until you reach the footer, maybe you’re still working on it but that should be tidied up a bit. Pick a color for the text and stick with it, arrange it better, there’s a broken image there too.
    The credits would probably look better using a different color as well. I think those are pretty easy to change with Weaver.

    One other thing, you have the featured image displaying on the post page, no need for 2 images the same right next to each other, I believe that’s also an option within Weaver settings.

    Checked member profile, I’m guessing this is the site http://www.nutritolavita.com/ I think it looks great, clean, easy to read, nice job.

    Thread Starter zeaks

    (@zeaks)

    I figured this out mostly, after reading hwo to add a digg button to posts using custom fields.
    I added
    $favorite = get_post_meta($post->ID, 'favorite', $single = true);
    under
    <?php while (have_posts()) : the_post();

    then next to the title call I added

    <?php if($favorite !== '') { ?>
    	<img src="<?php bloginfo('stylesheet_directory') ?>/images/star.png"/>
    <?php } else { echo ''; } ?>

    Only problem is, anything you type into the value will call the image, not really a problem, but I’m wondering why it doesn’t JUSt work for the value “true”

    @alchymyth Works great, thanks for this code.

    Thread Starter zeaks

    (@zeaks)

    Thanks, I did get it to work eventually. Here’s what I did, though just using conditionals like you suggested would probably be better.

    /* nav width */
    #access {width: 735px;}
    /******* searchbar in menu **********/
    #header #search{
    width: 200px;
    height: 30px;
    background-color: #000;
    float: right;
    padding-top:8px;
    padding-right: 5px;
    }

    Moved the search code in header.php above the access div. Changed the #access width, then added a width and height for the search so it would drop down into it.
    I’d need to change #search background color if I want to change #access background color, but it seems to work ok. I’ll look into using conditionals, I’ve never used them before.

    Thread Starter zeaks

    (@zeaks)

    Figured this out, adding wp_enqueue_script('jquery'); to the header seemed to fix it.

    Thread Starter zeaks

    (@zeaks)

    I get the error with IE 8, not sure about IE 6

    Thread Starter zeaks

    (@zeaks)

    The error is

    Webpage error details
    Message: Object expected
    Line: 30
    Char: 1
    Code: 0

    Forum: Plugins
    In reply to: Removing gravatar.com

    There’s an option in settings > discussions at the bottom to turn Gravatars off. Not sure if this completely disables them but, I’m having trouble loading 2 of my sites right now waiting for Gravatar images to load, but my other with it disabled loads with no issues.

    Thread Starter zeaks

    (@zeaks)

    I just wanted to get rid of the … but what you posted earlier ended up working, I just had to link the “read the rest” text to the post. Here is what I have in my functions, I removed the original code I had to change the continue reading text and added

    /* remove the ... from excerpt and change the text*/
    function change_excerpt_more(){
       function new_excerpt_more($more) {
            return '<span class="read-more"><a href="'. get_permalink($post->ID) . '">Read the Rest »</a></span>';
       }
       add_filter('excerpt_more', 'new_excerpt_more');
    }
    add_action( 'after_setup_theme', 'change_excerpt_more' );

    The read-more span class isn’t needed, but I wanted it to be placed on another line after the excerpt for one of my layouts and used display: block; to do so. http://test.zeaks.org

    Thanks alot for all the help, I’ve been trying to figure this out for a while.

    Thread Starter zeaks

    (@zeaks)

    Well I want it to be linked. I just wanted to remove the … part of the line so instead of saying

    post summary … Continue Reading ->
    it would say
    post summary Continue Reading ->

    But have the continue reading text hyperlinked, it’s just plain text now.

    Thread Starter zeaks

    (@zeaks)

    It seems to work the same with the new child theme I made with nothing in the functions.php besides the code you posted above. If I remove the “can you hear me now” part , it doesn’t show any “continue reading” text either
    You can see it here http://test.zeaks.org/

    Nothing else is in the functions file

Viewing 15 replies - 316 through 330 (of 450 total)