islandbakes2
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pure & Simple] Theme crashed my siteThank you! I did that, and it worked. But then as soon as I tried to modify the theme in editor, it crashed my site again. BlueHost says there is an issue with the theme, it apparently says in the extras.php
Whenever I try to fix this code, it crashes my website and I have to have my hosting company go in and change the theme on my account because I can’t even access it. Has this happened to anyone?
Never mind about it all. The theme crashed my site and I can’t use it without it crashing it. Thanks for the help though.
What I was hoping was, when you search on mobile and computer, the featured image would show up with the name of the recipe. That’s how it worked on my old wordpress.com theme. Because now, no photos show up when you search for something on my blog. Just the blog post name and excerpts.
Ah, I see. Okay, I’ll try that! Thank you!
Yay! That worked! But, now on the category pages, it has the featured image showing again.. How can I get rid of that?
No, that didn’t work. The widgets are still on the bottom on the category pages.
case “blogstyle3” :
if ( has_post_thumbnail() && !is_home()) {
echo ‘</div>’;
}
echo ‘<header class=”entry-header”>’;
echo ‘<h1 class=”entry-title”>’; if ( is_sticky() && is_home() && ! is_paged() ) : echo ‘<span class=”featured-post”>’; _e( ‘Featured’, ‘pure-simple’ );
echo ‘</span>’; endif;
echo ‘<a href=”‘ .esc_url( get_permalink() ) .'” title=”‘; the_title();
echo ‘”>’; if(the_title( ”, ”, false ) !=”) the_title(); else _e(‘Untitled’, ‘pure-simple’);
echo ‘</h1>’;
echo ‘<div class=”entry-meta”>’;
puresimple_posted_on();
echo ‘</div></header><div class=”entry-content”>’;
$excon = get_theme_mod( ‘excerpt_content’, ‘content’ );
$excerpt = get_theme_mod( ‘excerpt_limit’, ’50’ );
switch ($excon) {
case “content” :
the_content(__(‘Read More’, ‘pure-simple’));
break;
case “excerpt” :
echo ‘<p>’ . puresimple_excerpt($excerpt) . ‘</p>’ ;
echo ‘<p class=”more-link”>‘ . __(‘Read More’, ‘pure-simple’) . ‘‘ ;
break;
}echo ‘</div><footer class=”entry-footer”>’;
puresimple_multi_pages();
if( get_theme_mod( ‘hide_edit’ ) == ”) {
edit_post_link( __( ‘Edit this Post’, ‘pure-simple’ ), ‘<span class=”edit-link”>’, ‘</span>’ );
}I only changed the second line. You helped me with that code yesterday.
Yes, that was the only thing I touched.
I noticed it after I changed the homepage to not have the featured image displayed. I am not sure why that would effect the category pages?
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove featured image from home pageIt worked!! I did it a few lines below. Thank you SOO much!!
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove featured image from home pageThat same line you gave me is on a line about 95. I want the featured image to not show up..
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove featured image from home pageNevermind, I found it.
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove featured image from home pageWhere do I find blog-style.php. I can’t find it int the edit themes options.
Forum: Themes and Templates
In reply to: [Pure & Simple] Remove featured image from home pageAnd that will get rid of the featured image displayed? And yes, I am using blog style 3.