• Hey guys, i’m trying to change the footer content with the Tortuga theme (not pro) but I still can’t find where in the code I can change it.
    Thanks for help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,
    iv been looking for same few days ago.
    I found solution but its not complete.

    -Go to your Dashboard.
    -Navigate to Appearance.
    -Click Editor.
    -Navigate to right, Theme Footer (footer.php).

    <?php
    /**
     * The template for displaying the footer.
     *
     * Contains all content after the main content area and sidebar
     *
     * @package Tortuga
     */
    
    ?>
    
    /*	</div><!-- #content -->
    
    	<?php do_action( 'tortuga_before_footer' ); ?>
    
    	<div id="footer" class="footer-wrap">
    
    		<footer id="colophon" class="site-footer container clearfix" role="contentinfo">
    
    			 <div id="footer-text" class="site-info">
    
    			<p>All rights reserved - Your Site Name® 2016</p>
    
    			</div><!-- .site-info -->
    						<?php do_action( 'tortuga_footer_menu' ); ?>
    
    		</footer><!-- #colophon -->
    
    	 </div> 
    
    </div><!-- #page --> */
    
    <?php wp_footer(); ?>
    
    </body>
    </html>

    You can edit “YourSiteName” with your names.
    It should work , but the code left ” /* ” (your text) ” */ ” on the page.

    I am working on way to delete them but not success for now.

    Try this anyway.
    Best regards,
    Stoycho

    Do like this

    <div id="footer-text" class="site-info">
    <? /* php do_action( 'tortuga_footer_text' ); */ ?>
    </div><!-- .site-info -->

    Thread Starter fenronin

    (@fenronin)

    Thanks for the answer, I’ll try this!

    Just change in the file inc/template-tags.php

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Tortuga]Change the footer content’ is closed to new replies.