• Resolved edios5

    (@edios5)


    Hi. That theme is so amazing! I have one problem with that. How to change copyright in footer. Whats the way to change it?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter edios5

    (@edios5)

    Found it in cfg/admin/default.php

    `/* FOOTER */
    $deff[ ‘mythemes-footer-text’ ] = ‘Copyright © ‘ . date( ‘Y’ ) . ‘. Powered by <a href=”https://www.ads-software.com&#8221; target=”_blank”>WordPress</a>. Designed by <a href=”https://mythem.es&#8221; target=”_blank” title=”myThemes”>myThem.es</a>’;`

    Theme Author mythemes

    (@mythemes)

    be careful on new updates, all changes will be lost. Best solution will be a child theme or you can buy premium version for premium version exists special options for this.

    premium version here: https://mythem.es/item/verbo-premium-wordpress-theme/

    themalayhope

    (@themalayhope)

    Hi Edios5 where di u find the cfg/admin/default.php?

    I cannot locate it. Please help me thanks

    Theme Author mythemes

    (@mythemes)

    un zip verbo.zip

    and go to verbo/cfg/admin/default.php or edit direct with plugin WP Editor or you can get premium version from our web site. In premium version exists special settings for footer.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    *Drinks coffee*

    Never, ever, ever edit the parent files directly. You will lose your changes when the parent files are updated and that is almost certainly going to happen.

    Instead create and activate a child theme called “Verbo Child”.

    https://codex.www.ads-software.com/Child_Themes

    – Make a directory called wp-content/themes/verbo-child and put these 2 files in it.

    verbo-child/style.css

    Which contains

    /*
     Theme Name:   Verbo Child
     Description:  Verbo Child Theme
     Template:     verbo
     Version:      1.0.0
    */

    Then make verbo-child/functions.php and put these lines in it.

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

    Now copy the file verbo/footer.php into verbo-child/footer.php and edit that in your favorite text file editor.

    Locate line number 43 in the copy and change it from

    <p><?php echo 'Copyright &copy; ' . date( 'Y' ) . '. Powered by <a href="https://www.ads-software.com" target="_blank">WordPress</a>.'; ?></p>

    to

    <p><?php echo 'Copyright &copy; ' . date( 'Y' ) . '. Powered by <a href="https://www.ads-software.com" target="_blank">WordPress</a>.'; ?></p>

    Or whatever you like. Raw HTML will work too.

    By doing it this way, when the theme is updated then you will not lose your edits. Ideally the footer would have some sort of filter to modify that (it may, I spent only 15 minutes looking at this) but this will work too.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Footer’ is closed to new replies.