• This is what im talking about: http://i.imgur.com/ykzW7gY.png

    I’m trying to edit the text that shows at the bottom of my footer page. Theme i;m using is colormag, and i don’t really like how it says powered by wordpress or the theme name. Can i edit that out?

Viewing 8 replies - 1 through 8 (of 8 total)
  • You will need to edit footer.php or a similarly named file

    I suggest making a child theme. You will need to access your website using ftp, or better still sftp. Filezilla is a good program. You may need to speak to your webhost to set up access.

    https://codex.wordpress.org/Child_Themes is best way to go.

    In Firefox browser learn to use Firebug (just Google it) or Chrome has good dev tools (hit F12)

    In Firefox browser a handy colour-picker addon is ColorZilla

    Thread Starter exhale68

    (@exhale68)

    Is there a plugin that will help me with this? Because i’m only about a month into wordpress and i’ve only figured out basic things like widgets and such, i’m essentially still a beginner. Is there an easier way? I”m definitely looking into setting up FTP for my site soon, but for the time being, how can i do it without ftp?

    I don’t think there is an ‘easier way’ as it is more about understanding what you are doing.If you make a child theme as suggested you will learn and understand the process.
    Have a read at https://amethystwebsitedesign.com/how-to-safely-edit-your-wordpress-theme-files/ for plugin suggestions
    and this http://premium.wpmudev.org/blog/how-to-create-wordpress-child-theme is a good article.

    Thread Starter exhale68

    (@exhale68)

    Alright, I’ve just set up Filezilla for my site. What are my next moves?

    get notepad++ (a good free text-editor)
    https://notepad-plus-plus.org/

    use it to create a new file and save it as style.css
    add the following after changing http://yourwebsite.com etc to whatever you want and save

    /*
     Theme Name:   Colormag Child
     Theme URI:    http://yourwebsite.com
     Description:  child theme of Colormag
     Author:       your name
     Author URI:   http://yourwebsite.com
     Template:     colormag
     Version:      1.0.0
     Tags:         light, white, two-columns, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, featured-images, theme-options
     Text Domain:  colormag-child
    */

    create another new file and save it as functions.php
    add the following and save

    <?php
    add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles' );
    function enqueue_parent_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }

    open your site in filezilla, find a folder “public_html”, double click on it, then “wp-content”,then “themes”, then “colormag” and download footer.php (drag and drop it into a local folder, eg C:\Desktop\web)

    open footer.php in notepad++ and remove the lines

    <div class="footer-socket-left-sectoin">
       <?php do_action( 'colormag_footer_copyright' ); ?>
     </div>

    and save the file.

    Go back to the “themes” folder in Filezilla and create a new folder named “colormag-child” (right click in filezilla window & choose “Create Directory”)

    Double click on the new folder named “colormag-child” to open it and upload the 3 files you have created (style.css, functions.php and your changed copy of footer.php)(just drag and drop them into the filezilla remote site window)

    Go to Appearance => Themes in your WP backend and activate your child theme

    have done it but the child theme is not showing

    do you mean it is not showing up as a theme in the backend of WordPress

    uploaded it manually and its working now thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Theme: Colormag] How can i edit the footer text?’ is closed to new replies.