• Resolved Helen Olivas

    (@helenolivas)


    Hi,
    I have tried the other solutions in the forums, including creating new files in the theme directory, editing css etc, but nothing seemed to work. I’m not very good at coding I suppose lol

    -I would like to move the “Leave a Comment” to below the posts, and

    -have the images in the post the same size as the text, like the featured image already is (665 px), but wordpress keeps tagging and resizing them to 640 px.

    Help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Helenolivas,
    To move the “Leave a Comment”, you need to copy /partials/entry-byline.php and /partials/entry-footer.php from Omega theme into family theme folder, then edit as you need.

    <footer class="entry-footer">
    	<div class="entry-meta">
    		<?php omega_post_terms( array( 'taxonomy' => 'category', 'text' => __( 'Posted in: %s', 'family' ) ) ); ?>
    		<?php omega_post_terms( array( 'taxonomy' => 'post_tag', 'text' => __( 'Tagged: %s', 'family' ) ) ); ?>
    <?php echo omega_post_comments( ); ?>
    	</div><!-- .entry-meta -->
    </footer>

    About the featured image size, it is controlled by this code in omega functions.php
    omega_set_content_width( 640 );

    You can use Code Snippets plugin and insert the snippet below,

    function custom_family_setup() {
            omega_set_content_width( 665 );
    }
    add_action( 'after_setup_theme', 'custom_family_setup', 11  );

    Hope that helps.

    Cheers,
    Sumo

    Thread Starter Helen Olivas

    (@helenolivas)

    I was completely ignoring Omega, that’s why I wasn’t finding it! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issues with entry meta and image resizing’ is closed to new replies.