Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter simmyvos

    (@simmyvos)

    Hello Ben 🙂

    Thank you so much! It worked like a charm!! 😀

    Thread Starter simmyvos

    (@simmyvos)

    Thank you Ben! It worked like a charm! 🙂

    Thread Starter simmyvos

    (@simmyvos)

    Thank you Ben!
    I just checked the site on my phone and I have the same problem with the featured image overlapping the post title.
    Any idea how I can fix that?

    Thread Starter simmyvos

    (@simmyvos)

    Amazing! Thank you so much Ben! I really appreciate all your help!

    Thread Starter simmyvos

    (@simmyvos)

    Hey Ben!

    Hope you had a good weekend!

    This code worked, thank you so much! 😀 You are a genius/lifesaver/magician/awesomest person ever!

    The only thing I’ve bee trying to figure out now is how to get that the featured image doesn’t cover my post title.

    I have gone through the forum and read every post covering featured images and titles but I can’t see anything that relates to my issue.

    Would you mind helping me fix this please?

    Thanks a million for everything so far!

    Simone

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    I had disabled the featured images so that the site doesn’t look strange while I’m trying to sort this error, but i re-enable them when I check if the changes have worked or not.

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    I had a go at this using the style.css file from the new child theme but the featured image still isn’t reflecting.

    I noticed that the line at the beginning of the child theme’s style.css file that imports the styles says style.min.css:

    @import url(“../ignite/style.min.css”);

    Should I be comparing this style.min.css to the child themes css rather than just the style.css theme?

    Thread Starter simmyvos

    (@simmyvos)

    Ben, you are a lifesaver!!! Seriously the best!!
    I will tackle this mini project tonight and let you know if I manage to fix it!
    Thank you!

    Thread Starter simmyvos

    (@simmyvos)

    Ben, you are so helpful, thank you!
    Here is the link to my child theme in dropbox
    https://www.dropbox.com/s/lbpjpron5lxubpc/Ignite-Child.zip?dl=0

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    I couldn’t find the content-archive file, there was only the content file in the child theme folder.

    So I deleted and replaced it with the content file from the new ignite theme which I downloaded, but still no luck.

    Is there anywhere else I could find the file to be replaced in my WebspaceExplorer?

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    Thanks for the response, I have switched to the parent theme and the featured image displayed on the post and the home page so I have downloaded the ignite file from the link you provided but there was no content-archive file in the folder.

    The only “content” files in the new ignite folder are the following:
    content
    content-404
    content-attachment
    content-page
    content-search

    Can I use one of these?

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    Thanks for the response. I tried deactivating all plugins but the problem persists. I have I don’t recall making changes to my content-archive file, but it looks as though I have made changes to the content.php file.

    This is what my content.php file for my child theme is showing at the moment:

    <?php

    $date_display = get_theme_mod( ‘ct_ignite_post_meta_date_settings’ );
    $author_display = get_theme_mod( ‘ct_ignite_post_meta_author_settings’ );

    if( is_single() ) { ?>
    <div <?php post_class(); ?>>
    <div class=’entry-header’>
    <h1 class=’entry-title’><?php the_title(); ?></h1>
    </div>
    <?php
    // as long as one isn’t equal to ‘hide’, display entry-meta-top
    if( $date_display != ‘hide’ || $author_display != ‘hide’ ) : ?>
    <div class=”entry-meta-top”>
    <?php
    // Don’t display if hidden by Post Meta section
    if( $date_display != ‘hide’ ) {
    echo __( ‘Published’, ‘ignite’ ) . ” ” . date_i18n( get_option( ‘date_format’ ), strtotime( get_the_date(‘r’) ) );
    }
    // output author name/link if not set to “Hide” in Post Meta section
    if( $author_display != ‘hide’ ) {

    // if the date is hidden, capitalize “By”
    if( $date_display == ‘hide’ ) {
    echo ” ” . ucfirst( _x( ‘by’, ‘Published by whom?’, ‘ignite’ ) ) . ” “;
    the_author_posts_link();
    } else {
    echo ” ” . _x( ‘by’, ‘Published by whom?’, ‘ignite’ ) . ” “;
    the_author_posts_link();
    }
    }
    ?>
    </div>
    <?php endif; ?>
    <?php ct_ignite_featured_image(); ?>
    <div class=”entry-content”>
    <article>
    <?php the_content(); ?>
    <?php wp_link_pages(array(‘before’ => ‘<p class=”singular-pagination”>’ . __(‘Pages:’,’ignite’), ‘after’ => ‘</p>’, ) ); ?>
    </article>
    </div>
    <div class=’entry-meta-bottom’>
    <?php
    if( get_theme_mod(‘ct_ignite_post_meta_further_reading_settings’) != ‘hide’ ) {
    get_template_part(‘content/further-reading’);
    }
    ?>
    <?php
    if(get_theme_mod(‘ct_ignite_author_meta_settings’) != ‘hide’){ ?>
    <div class=”author-meta”>
    <?php ct_ignite_profile_image_output(); ?>
    <div class=”name-container”>
    <h4>
    <?php
    if(get_the_author_meta(‘user_url’)){
    echo “” . get_the_author() . ““;
    } else {
    the_author();
    }
    ?>
    </h4>
    </div>
    <p><?php echo get_the_author_meta(‘description’); ?></p>
    </div>
    <?php } ?>
    <?php
    if(get_theme_mod(‘ct_ignite_post_meta_categories_settings’) != ‘hide’){ ?>
    <div class=”entry-categories”><?php get_template_part(‘content/category-links’); ?></div><?php
    }
    if(get_theme_mod(‘ct_ignite_post_meta_tags_settings’) != ‘hide’){ ?>
    <div class=”entry-tags”><?php get_template_part(‘content/tag-links’); ?></div><?php
    }
    ?>
    </div>
    </div>
    <?php
    } else { ?>
    <div <?php post_class(); ?>>
    <div class=’excerpt-header’>
    <h1 class=’excerpt-title’>
    “><?php the_title(); ?>
    </h1>
    </div>
    <?php
    // as long as one isn’t equal to ‘hide’, display entry-meta-top
    if( $date_display != ‘hide’ || $author_display != ‘hide’ ) : ?>
    <div class=”entry-meta-top”>
    <?php
    // Don’t display if hidden by Post Meta section
    if( $date_display != ‘hide’ ) {
    echo __( ‘Published’, ‘ignite’ ) . ” ” . date_i18n( get_option( ‘date_format’ ), strtotime( get_the_date(‘r’) ) );
    }
    // output author name/link if not set to “Hide” in Post Meta section
    if( $author_display != ‘hide’ ) {

    // if the date is hidden, capitalize “By”
    if( $date_display == ‘hide’ ) {
    echo ” ” . ucfirst( _x( ‘by’, ‘Published by whom?’, ‘ignite’ ) ) . ” “;
    the_author_posts_link();
    } else {
    echo ” ” . _x( ‘by’, ‘Published by whom?’, ‘ignite’ ) . ” “;
    the_author_posts_link();
    }
    }
    ?>
    </div>
    <?php ct_ignite_featured_image(); ?>
    <?php endif; ?>
    <div class=’excerpt-content’>
    <article>
    <?php ct_ignite_excerpt(); ?>
    </article>
    </div>
    <?php
    if(get_theme_mod(‘ct_ignite_post_meta_categories_settings’) != ‘hide’){ ?>
    <div class=”entry-categories”><?php get_template_part(‘content/category-links’); ?></div><?php
    }
    if(get_theme_mod(‘ct_ignite_post_meta_tags_settings’) != ‘hide’){ ?>
    <div class=”entry-tags”><?php get_template_part(‘content/tag-links’); ?></div><?php
    }
    if(get_theme_mod(‘ct_ignite_post_meta_comments_settings’) == ‘show’){ ?>
    <div class=”excerpt-comments”><?php get_template_part(‘content/comment-count’); ?></div><?php
    }
    ?>
    </div>
    <?php
    }

    I am pretty clueless when it comes to coding, so I’m not sure what all of that means? I think I got it online somewhere when I was setting up my child theme.

    Thread Starter simmyvos

    (@simmyvos)

    Also thank you for the speedy response as always! 🙂

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben

    Thank you, after a bit of fiddling with the px numbers I have got it to a decent size again 🙂

    Thread Starter simmyvos

    (@simmyvos)

    Hi Ben!

    Thank you so much for the help and the really quick response. It worked like a charm!

    However I’m still stuck on making the posts have a picture on each category page, even if I set a featured image it doesn’t seem to work.

    Could you perhaps help me out with this please?

    Also, Is it possible to stop the categories tab from being highlighted when on the home page?

    Thanks!!

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