Forum Replies Created

Viewing 7 replies - 16 through 22 (of 22 total)
  • Featured Article section already in below slider. Do you want to move the slider below featured section ?

    Which theme you are using ?

    Can you provide your web url ?

    Got 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> &middot; &copy; %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> &middot; Designed by %4$s &middot;</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.

    Which theme you are using ?

    Your 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.

    Hey 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(); ?> and

    7. 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.

Viewing 7 replies - 16 through 22 (of 22 total)