Changing Copyright Footer in Squareone

Homepage Community Forums SquareOne Theme Support Changing Copyright Footer in Squareone

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #16412
    Ross
    Customer

      I am unable to figure out how to change the default copyright footer that looks like this:
      Copyright © 2015 · SquareOne Theme on Genesis Framework · WordPress · Log out

      to this:

      <p>© Copyright 2015 Suvival 401k, LLC · All Rights Reserved · Powered by WordPress · Login</p>
      <?php

      Is there a file somewhere that needs to be changed because it is nowhere to be found in theme customization

      #16414
      Andykev
      Customer

        Add Geneis Simple Edits as a plugin. There is a line in that admin panel which allows you to insert whatever footer message you wish. It’s a must have. You’ll be glad you did.

        If you prefer to simply change your theme .php file you can accomplish the same thing.

        <?php
        //* Do NOT include the opening php tag shown above. Copy the code shown below.

        //* Customize the entire footer
        remove_action( ‘genesis_footer’, ‘genesis_do_footer’ );
        add_action( ‘genesis_footer’, ‘sp_custom_footer’ );
        function sp_custom_footer() {
        ?>
        <p>© Copyright 2012 My Domain · All Rights Reserved · Powered by WordPress · Admin</p>
        <?php
        }

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.