Emdad
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Leaf] Move featured article above slider?Featured Article section already in below slider. Do you want to move the slider below featured section ?
Forum: Themes and Templates
In reply to: [Leaf] Move featured article above slider?Which theme you are using ?
Forum: Themes and Templates
In reply to: Asteria lite theme problemCan you provide your web url ?
Forum: Themes and Templates
In reply to: [Customizr] Changing copyright theme footerGot it.
Here is your solution.
1. Go to wp-content/themes/customizr/parts.
2. Open class-footer-footer_main.php file.
3. Delete the lines from 137 to 160.
The code should be
/** * Footer Credits call back functions * Can be filtered using the $site_credits, $tc_credits parameters * * * @package Customizr * @since Customizr 3.0.6 */ function tc_colophon_center_block() { echo apply_filters( 'tc_credits_display', sprintf('<div class="%1$s">%2$s</div>', apply_filters( 'tc_colophon_center_block_class', 'span4 credits' ), sprintf( '<p> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> · Designed by %4$s ·</p>', esc_attr( date( 'Y' ) ), esc_url( home_url() ), esc_attr(get_bloginfo()), '<a href="'.TC_WEBSITE.'">Themes & Co</a>' ) ) ); }
You can delete the code from parent theme, but i would suggest you to use child theme.
Forum: Themes and Templates
In reply to: [Customizr] Changing copyright theme footerWhich theme you are using ?
Forum: Fixing WordPress
In reply to: Background color does not reach the bottom of the pageYour theme is not well developed. Take a look of your html5 doc source code.
Move your last </div> before </body>. Right now your theme source codes look like
</body> </html></div>
Correct code will be
</div> </body> </html>
And by the way, place your main style sheet file in
<head><link rel="stylesheet" type="text/css" media="screen" href="https://alvey.evansvillewebdesigns.com/wp-content/themes/Maxon/landingstyle.css" /></head>
section not before <!DOCTYPE html> declaration.Hope it will help you.
Forum: Themes and Templates
In reply to: Hiding Featured Image in TwentyTwelve ThemeHey jkhnels,
Follow this complete process to accomplish your job.
[modified – she HAS a child theme]
4. Copy the content.php file from twentytwelve theme and paste it in your child theme folder
5. Open the content.php file from WordPress Dashboard => Appearance => Editor => Content.php (Make sure you have activated your child theme first)
6. Find this code
<?php the_post_thumbnail(); ?>
and7. Replace with
<?php if( !(is_search() || is_archive() || is_category() || is_tag()) || is_home() || ) : ?> <?php the_post_thumbnail(); ?> <?php endif; ?>
8. Save it.
9. Job done
Code Explanation : Featured image will not display in search result, archive, category, tag and home page. But will be displayed in single post.