IMICreation
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Installed a 'Contact Form' but I have not recieved my test emailscheck spam mail
Forum: Fixing WordPress
In reply to: How can I display posts by tag in a static page template?<?php query_posts( array( ‘post_type’ => ‘post’, ‘tag’=>’home-videos’ ) ); ?>
Forum: Fixing WordPress
In reply to: Moving Blog to Inner Page Problemis your home page is index.php
Forum: Fixing WordPress
In reply to: Problem with paginationthe url on page 2 in pagination is
http:www.jourdancrouchfairchild.comblogpage2
it should be
http:www.jourdancrouchfairchild.com/blog/page/2Forum: Fixing WordPress
In reply to: Trying to put media in widgets, getting a question marktwo double quote coming before and after src
“”http://www.hellovanitygal.com/wp-content/uploads/2012/09/email.jpg””in all image src.
Forum: Fixing WordPress
In reply to: Featured ImageGo to the setting -> media and remove all sizes mentioned there, you can try this
or
mention your image size in Thumbnail size Width Height
and check on this “Crop thumbnail to exact dimensions (normally thumbnails are proportional)”Forum: Fixing WordPress
In reply to: Header problemimage path coming wrong
image available in this folder
http://www.swindonsnookerclub.com/wp-content/uploads/snookerpic.jpg
Forum: Fixing WordPress
In reply to: Featured Imageit will goes in your template
Forum: Fixing WordPress
In reply to: Coding Problemclose the if statement with <?php endif; >
Forum: Fixing WordPress
In reply to: Featured Imagetry this
<?php the_post_thumbnail(‘full’); ?>
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined functionmake sure there should’nt blank space in functions.php
Forum: Fixing WordPress
In reply to: Home page display multiple custom post typesyou can try this
$types = array('post', 'page', 'slide', 'photographs'); foreach($types as $type) 'post_type' => $type