nicholasnicola
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsThank you very much for your time.
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsThanks again, but the same thing is happening. Still no image.
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsNo, the image you see is for the previous posts where I have added the image manually. The top post, ‘Test’, is the one I added since changing the code.
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsI no longer get the error, but there is still no image:
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsI used the code, and no image is displayed on the blog page and got this error on the post page:
Parse error: syntax error, unexpected ‘<‘ in /home/actrecru/public_html/wp-content/themes/theme1312/single.php on line 13
The entire code on the page is:
<?php get_header(); ?> <div id="content" class="grid_12 <?php echo of_get_option('blog_sidebar_pos') ?>"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>> <article class="single-post"> <header> <h1><?php the_title(); ?></h1> </header> <?php $single_image_size = of_get_option('single_image_size'); ?> <?php if($single_image_size=='' || $single_image_size=='normal'){ ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail"><div class="img-wrap">'; <img src="<?php bloginfo('template_directory'); ?>https://www.actrecruit.com/wp-content/uploads/2012/05/act_recruit_news.jpg" />'); echo '</div></div>'; } ?> <?php } else { ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail large"><div class="img-wrap"><div class="f-thumb-wrap">'; <img src="<?php bloginfo('template_directory'); ?>https://www.actrecruit.com/wp-content/uploads/2012/05/act_recruit_news.jpg" />'); echo '</div></div></div>'; } ?> <?php } ?> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> <a class="addthis_button_tweet"></a> <a class="addthis_button_google_plusone" g:plusone:size="medium"></a> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript" src="https://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4f3c2fc23ed53536"></script> <!-- AddThis Button END --><br><br> <?php the_tags( $before, $sep, $after ); ?><br><br> <div class="post-content"> <?php the_content(); ?> <?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?> </div><!--.post-content--> </article> </div><!-- #post-## --> <form action="https://nbge.createsend.com/t/j/s/yuhhuk/" method="post" id="subForm"> <table cellspacing="5" cellpadding="5" border="5" bordercolor="#09F"rules="none" frame="box" width="100%"> <tr valign="top"> <td colspan="2" align="left" valign="middle"><h2>Subscribe to our mailing list</h2>To keep up to date with all the latest news and promotions, subscribe to our mailing list.<br></td> </tr> <tr valign="top"> <td align="right">Your <label for="yuhhuk-yuhhuk">Email address:</label></td> <td><input type="text" name="cm-yuhhuk-yuhhuk" id="yuhhuk-yuhhuk" size="30" /></td> </tr> <tr> <td></td> </tr> <tr valign="top"> <td></td> <td><input type="submit" value="Subscribe" /></td> </tr> </table> </form> <br><br> <nav class="oldernewer"> <div class="older"> <?php previous_post_link('%link', '« Previous post') ?> </div><!--.older--> <div class="newer"> <?php next_post_link('%link', 'Next Post »') ?> </div><!--.newer--> </nav><!--.oldernewer--> <?php comments_template( '', true ); ?> <?php endwhile; /* end loop */ ?> </div><!--#content--> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsOkay, so the code should be like this? Sorry for all the questions and confirmations:
<?php $single_image_size = of_get_option('single_image_size'); ?> <?php if($single_image_size=='' || $single_image_size=='normal'){ ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail"><div class="img-wrap">'; <img src="<?php bloginfo('template_directory'); ?>/your-directory/your-image.png" />'); echo '</div></div>'; } ?> <?php } else { ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail large"><div class="img-wrap"><div class="f-thumb-wrap">'; <img src="<?php bloginfo('template_directory'); ?>/your-directory/your-image.png" />'); echo '</div></div></div>'; } ?>
<?php } ?>
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsWould I do this?
<?php $single_image_size = of_get_option('single_image_size'); ?> <?php if($single_image_size=='' || $single_image_size=='normal'){ ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail"><div class="img-wrap">'; the_post_thumbnail(); echo '</div></div>'; } ?> <?php } else { ?> <?php if(has_post_thumbnail()) { echo '<div class="featured-thumbnail large"><div class="img-wrap"><div class="f-thumb-wrap">'; <img src="<?php bloginfo('template_directory'); ?>/your-directory/your-image.png" />'); echo '</div></div></div>'; } ?> <?php } ?>
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsI have edited my WordPress version a number of times and the code has remained unchanged.
For example:
https://www.actrecruit.com/employment/food-and-drinks-could-serve-up-30000-new-jobs-in-ireland/I have changed the Single Post file to include my custom share buttons and added code to the bottom to include a form to subscribe to our mailing list, which has always remained even when I have updated WordPress.
If I was to hardcode it, do I add the code to ‘Blog Page’, ‘Single Post’ or both? Where in the code would I insert it?
Many thanks again.
Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsThanks again.
How do I create a child theme?
Is there no way to just edit the code in my existing files?Forum: Themes and Templates
In reply to: Set Default Featured Image and Thumbnail for New PostsHi,
Thanks for getting back to me.
I’m adding the Featured image to each post manually, using the ‘Featured Image / Set Featured Image’ option from the Add New Post Screen, and then selecting the image manually.