simmyvos
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ignite] Mobile menu colourHello Ben 🙂
Thank you so much! It worked like a charm!! 😀
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesThank you Ben! It worked like a charm! 🙂
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesThank 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?Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesAmazing! Thank you so much Ben! I really appreciate all your help!
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHey 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
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHi 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.
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHi 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?
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesBen, 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!Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesBen, 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=0Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHi 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?
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHi 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-searchCan I use one of these?
Forum: Themes and Templates
In reply to: [Ignite] Featured image issuesHi 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.
Forum: Themes and Templates
In reply to: [Ignite] Logo sizing after updatesAlso thank you for the speedy response as always! 🙂
Forum: Themes and Templates
In reply to: [Ignite] Logo sizing after updatesHi Ben
Thank you, after a bit of fiddling with the px numbers I have got it to a decent size again 🙂
Forum: Themes and Templates
In reply to: [Ignite] Customise Category Landing pageHi 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!!