• I was wondering if someone could help to change the footer

    I would like to remove the “© 2013 · Designed by Themes & Co” text

Viewing 15 replies - 1 through 15 (of 15 total)
  • please check on footer.php file .
    I hope you can get in this file..

    Are you using a child theme or a custom CSS plugin?

    Thread Starter DesignerJen

    (@designerjen)

    WOW you guys responded quickly ;-D

    I have looked at the PHP file but cant see what to change??

    this is what it looks like:

    <?php
     /**
     * The template for displaying the footer.
     *
     *
     * @package Customizr
     * @since Customizr 3.0
     */
    do_action( '__before_footer' );
    ?>
    	<!-- FOOTER -->
    	<footer id="footer" class="<?php echo tc__f('tc_footer_classes', '') ?>">
    	 	<?php do_action( '__footer' ); // hook of footer widget and colophon?>
    	</footer>
    <?php
    wp_footer(); //do not remove, used by the theme and many plugins
    do_action( '__after_footer' );
    ?>
    	</body>
    <?php do_action( '__after_body' );  ?>
    </html>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    What do I need to remove to get rid of the “Designed by Themes & co”?

    Thanks so much ;-D

    Which theme you are using ?

    Thread Starter DesignerJen

    (@designerjen)

    No, its not a child theme and haven’t used any custom CSS plugin.

    Are you using a child theme?

    Thread Starter DesignerJen

    (@designerjen)

    The Customizr theme

    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.

    Thread Starter DesignerJen

    (@designerjen)

    Thanks so much!!! I haven’t tried it yet, but will get back to you if I still cant get it resolved.

    You are a star, thanks so much!

    No! Do not edit the theme itself. First create a child theme for your changes.

    Thread Starter DesignerJen

    (@designerjen)

    Yes, I will do that, thank you!

    Check out the theme’s site too, especially the FAQ, where this is answered.

    worked for me. Thanks @emadablog

    gracias a sido de bastante ayuda. perfecto. thanks

    This is how it should be done

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Changing copyright theme footer’ is closed to new replies.