Viewing 3 replies - 1 through 3 (of 3 total)
  • seanheather

    (@seanheather)

    Hello,

    The top links are called ‘Breadcrumbs’ and usually, a good theme will have an option to either show or hide them. If not, the code for them will be in one of the PHP template files accessible via the editor (appearances>editor).

    The ‘back to top’ link in the footer will most likely be in the footer.php file, but be careful what you edit in there.

    For the best result, I would seek clarity from the theme developer.

    Thread Starter tomdaumantas

    (@tomdaumantas)

    Thank you, “Breadcrumb” are gone, now left only problem with the footer. Checked footer.php and there wasn’t anythink about “back to top” text. Here’s my footer file:

    <?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>
        </div><!-- //#tc-page-wrapper -->
    		<?php
        do_action( '__after_page_wrap' );
    		wp_footer(); //do not remove, used by the theme and many plugins
    	  do_action( '__after_footer' ); ?>
    	</body>
    	<?php do_action( '__after_body' ); ?>
    </html>

    Should it be somewhere else, not in theme file?

    Thread Starter tomdaumantas

    (@tomdaumantas)

    Found it. Problems resolved. Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove links in header and footer’ is closed to new replies.