• I want to remove the line “Make: A WordPress template by The Theme Foundry” as well as the RSS button from the (I suppose) footer.

    I am creating a child theme from the parent theme “Make”.

    Elsewhere on the fora I found the code below. I believe the best option is to add it to the functions.php file in the make-child directory. But it doesn’t seem to work despite clearing my cache and refreshing, etc. I’m wondering if the function ‘tc_credits_display’ doesn’t work for the Make theme?

    What is the right code to eliminate and/or add my own credits to the footer of this theme? Thanks!

    add_filter(‘tc_credits_display’, ‘my_custom_credits’);
    function my_custom_credits(){
    echo ‘<div class=”span4 credits”>
    <p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · Designed by Themes & Co ·</p></div>’;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi – did you ever resolve this? I wan to do the same thing on my site, but the .php files are kind of crazy on Make, and I can’t seem to find where it’s generating the credits. Any help would be awesome!

    Oh, I located where it’s asking to create the credits. It’s in footer-credits.php I have no idea if it’s correct, or if my site will implode, but I just deleted all of this:

    $footer_credit = apply_filters( 'make_show_footer_credit', true );
    ?>
    
    <?php if ( $footer_text || ttfmake_is_preview() ) : ?>
    <div class="footer-text">
    	<?php echo ttfmake_sanitize_text( $footer_text ); ?>
    </div>
    <?php endif; ?>
    
    <?php if ( true === $footer_credit ) : ?>
    <div class="site-info">
    	<span class="theme-name">Make: A WordPress template</span>
    	<span class="theme-by"><?php _ex( 'by', 'attribution', 'make' ); ?></span>
    	<span class="theme-author">
    		<a>" href="https://thethemefoundry.com/">
    			The Theme Foundry
    		</a>
    	</span>
    </div>
    <?php endif; ?>

    and voila!

    Did you come up with a different solution?

    You can also just change that first “true” to “false” and that seems to accomplish the same thing

    If you are not using a child theme all of your changes will be lost when you update the theme.

    The best place for theme help will be on the theme’s own sub-forum here:

    https://www.ads-software.com/support/theme/make#postform

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove credits from the "Make" theme’ is closed to new replies.