Viewing 4 replies - 1 through 4 (of 4 total)
  • You can delete this code in footer.php
    <?php do_action( ‘spacious_footer_copyright’ ); ?>
    and you can see all the text in footer is disappeared.

    Thread Starter ashutosh.anand13

    (@ashutoshanand13)

    What If I want to change the text of the footer text ?

    And from the other pages I want to remove the Pages , Archives etc widgets you can have a look at them by viewing pages other than the home !!

    add_filter( 'spacious_footer_copyright' );
    function spacious_footer_copyright() {
    	echo 'Copyright &copy; ';
    	echo date('Y');
    	echo ' &middot; <a href="https://www.mywebsite.co.uk" title="Visit the web site">My Company</a> &middot; Built by <a href="mailto:[email protected]" title="Send an email">Your Name</a>';
    	echo '';
    }

    Just add this to your functions.php file inside the child theme.

    hello ashutosh.anand13 r yu used spacious free theme to develop the website

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove the footer’ is closed to new replies.