New Topic

Removing footer Credits

Home › Forum › Customization › Removing footer Credits

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1985
    StartupWP
    Keymaster

    If you’re not comfortable digging into the code, you can upgrade to Pro and simply turn it off in the theme options.

    But, if you’d like to give it a shot with customizing the code we can.

    #1987
    karin356
    Participant

    I’m comfortable with it:) Just nervous

    #1989
    StartupWP
    Keymaster

    Update:

    <div id="copyright">
    <?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' ); ?>
    </div>

    to:

    <div id="copyright">
    <?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); ?>
    </div>

    We’ve removed:

    echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' );

    You’ll probably want to setup a child theme to make this customization:

    https://startupwp.com/topic/child-theming/

    #2000
    karin356
    Participant

    thank you for all of your help. Sorry for all of the questions. I don’t know how to set up child theme. I will have to find someone I know to help. Again, thank you.

    #2001
    StartupWP
    Keymaster

    No problem, ask away! That’s what we’re here for. :)

    You can download a pre-made child theme example here:

    https://startupwp.com/downloads/startup-child.zip

    And learn more about child theming in general here:

    http://codex.wordpress.org/Child_Themes

    #2002
    karin356
    Participant

    um, well okay. Gee, thank you. I did download the zip and read the wordpress general article. I don’t know where to set up this part

    “Create a directory in your themes directory to hold the child theme.”

    How do I hold the zip drive child theme if I don’t have a download of the main theme? I totally understand if you need to stop with me:)

    #2003
    karin356
    Participant

    Where is my themes directory please?

    #2004
    StartupWP
    Keymaster

    Your confusion makes sense, this is because WordPress is so easy and automated out-of-the-box it’s a whole new way of looking at it when getting into customization.

    You clearly installed Startup automatically directly from the theme search under Appearance > Themes. There’s also a semi-manual and manual way to accomplish the same thing, but with more control.

    Semi-manual you could go directly to https://wordpress.org/themes/startup and download the zip, then upload and install under Appearance > Themes.

    The fully manual way (which is what we need to look at for child theming) is download the zip from https://wordpress.org/themes/startup, then unzip it so we just have the /startup/ folder and then manually upload it to /wp-content/themes/ via FTP (File Transfer Protocol).

    What host are you on? Different hosts have different requirements/instructions for connecting via FTP and they should be able to guide you on this.

    What we need to do now is get the /startup-child/ theme folder with your alterations uploaded to the /themes/ folder and then activated under Appearance > Themes.

    I realize this might feel a bit overwhelming at the moment, but you’ll be zipping along in no time. :)

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