Remove 'return to top'

Homepage Community Forums Follow Me Theme Support Remove 'return to top'

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #14319
    j_hampson
    Customer

      Would I be right to think the way to remove ‘return to top’ from the footer bar is to remove the following text from the functions.php file.

      My instinct is to remove the line: return $defaults;

      from

      /** Add theme settings to Genesis default theme settings */
      add_filter( ‘genesis_theme_settings_defaults’, ‘followme_theme_settings’ );
      function followme_theme_settings( $defaults ) {
      $defaults[‘followme_portfolio_content’] = ‘excerpts’;
      return $defaults;
      }

      I’m doing it for a friend and I can’t access her file manager in the way I could my own (to quickly replace the functions.php if I get it wrong), so wanted to sanity check my thinking first.

      Many thanks in advance
      Jacqueline

      #14327
      Wes
      Moderator

        The code you posted is actually what sets up the Genesis Admin options (for the portfolio section). So if you remove that it may remove the Portfolio Options.

        The code that controls the default footer code is located in the Genesis Framework. So in order to edit or remove the footer you have to add some code to your functions file to override it. Here is a StudioPress code snippet/tutorial that can show how to do that – http://my.studiopress.com/snippets/footer/

        #14343
        j_hampson
        Customer

          Thank you Wes – glad I double-checked before doing anything. Followed the link and Simple Edits Plugin sorted me within seconds.

          Thanks again
          Jacqueline

          #14344
          Wes
          Moderator

            You’re Welcome! Glad I could help!

          Viewing 4 posts - 1 through 4 (of 4 total)
          • The topic ‘Remove 'return to top'’ is closed to new replies.