Treefungus

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Market for child themes #39528

    Treefungus
    Participant
    Post count: 14

    Thank you for your replies.

    Susan when you write that you and Anita both provide support for some of the community marketplace themes do you mean your own or others too? Just wondering if people come to Studiopress for help on community themes. Just seems support should be provided by the creator of theme. Perhaps it is just because the buyers are not fully aware that it is a community theme?

    Appreciate your feedback.

    in reply to: Move Post Titles above Content/Sidebar Wrap #14977

    Treefungus
    Participant
    Post count: 14

    Hi ameeker

    Did you sort it out? I am having same issue but it seems you sorted it. How did you do get your titles back on the blog archives?

    Thanks

     

    I believe I sorted it. Thanks anyway

    in reply to: Only show feature image and not image in content #11879

    Treefungus
    Participant
    Post count: 14

    Also tried this but still cannot give it my own div class

    /** Add custom field above page */
    add_action( ‘genesis_before_content’, ‘littledevil_page_image’ );
    function littledevil_page_image() {
    if ( has_post_thumbnail() ){
    echo ‘<div class=”imgfeatured”>’;
    echo the_post_thumbnail( ‘full’ );
    echo ‘</div><!– end .imgfeatured –>’;
    }
    }

    in reply to: Only show feature image and not image in content #11865

    Treefungus
    Participant
    Post count: 14

    Ok I have tried something new which is this code. I am now only picking up post_thumbnail

    /** Add custom field above page */
    add_action( ‘genesis_before_content’, ‘littledevil_page_image’ );
    function littledevil_page_image() {
    if ( has_post_thumbnail() )
    the_post_thumbnail( ‘full’ );
    echo ‘<div class=”imgfeatured”>’;
    echo ‘</div>’;

    }

    but my styling is not working. I cannot seem to remove my styling that I have made to normal images using img class. I want this specific image to have the imgfeatured style.

    Any help is appreciated.

    Thanks

    in reply to: Customise Post-Info #7488

    Treefungus
    Participant
    Post count: 14

    How embarrassing. I installed that plugin but never used it. I deactivated it and now it is working. I guess it was overriding my code. Silly me.

    Thanks for helping me out

    in reply to: Customise Post-Info #7461

    Treefungus
    Participant
    Post count: 14

    Sorry… here is the correct code. Not sure why the code had changed but I still have a problem.

    /** Add date block before post title */
    add_action( ‘genesis_before_post_title’, ‘custom_post_date’ );
    function custom_post_date() {

    if ( ! is_page() ) {
    echo ‘<div class=”post-date”>’;
    echo do_shortcode( ‘[post_date format="M j, Y"]‘ );
    echo ‘</div><!– end .post-date –>’;
    }

    }

    /** Customize the post info function */
    add_filter( ‘genesis_post_info’, ‘post_info_filter’ );
    function post_info_filter( $post_info ) {

    if ( ! is_page() ) {
    return ‘By [post_author_posts_link] &middot; [post_comments] [post_edit]‘;
    }

    return $post_info;

    }

    in reply to: Genesis Plugins #6483

    Treefungus
    Participant
    Post count: 14

    Appreciate your feedback.

    Thanks

Viewing 7 posts - 1 through 7 (of 7 total)