• I really like this template but finding this particular section difficult

    /**
    * 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>

    Please how can I change the copyright section?

Viewing 4 replies - 1 through 4 (of 4 total)
  • wp-content/themes/customizr/inc/parts/class-footer-footer_main.php

    You have searched:
    themes/customizr/inc/parts/class-footer-footer_main.php

    Thread Starter vickal

    (@vickal)

    Kenyer79 please link have you shared?

    /**
    
    		 * 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 %2$s</p>',
    
    						    apply_filters( 'tc_copyright_link', sprintf( '· © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a>', esc_attr( date( 'Y' ) ), esc_url( home_url() ), esc_attr( get_bloginfo() ) ) ),
    
    						    apply_filters( 'tc_credit_link', sprintf( '· Designed by %1$s ·', '<a href="#">e..tc</a>' ) )
    
    					)
    
    	    		)
    
    	    	);
    
    	    }

    themes/customizr/inc/parts/class-footer-footer_main.php
    http://www.megtobb.hu

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Footer section’ is closed to new replies.