Footer
-
Hi. That theme is so amazing! I have one problem with that. How to change copyright in footer. Whats the way to change it?
-
Found it in cfg/admin/default.php
`/* FOOTER */
$deff[ ‘mythemes-footer-text’ ] = ‘Copyright © ‘ . date( ‘Y’ ) . ‘. Powered by <a href=”http://wordpress.org” target=”_blank”>WordPress</a>. Designed by <a href=”http://mythem.es” target=”_blank” title=”myThemes”>myThem.es</a>’;`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: http://mythem.es/item/verbo-premium-wordpress-theme/
Hi Edios5 where di u find the cfg/admin/default.php?
I cannot locate it. Please help me thanks
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.
*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.wordpress.org/Child_Themes
– Make a directory called
wp-content/themes/verbo-childand put these 2 files in it.verbo-child/style.cssWhich contains
/* Theme Name: Verbo Child Description: Verbo Child Theme Template: verbo Version: 1.0.0 */Then make
verbo-child/functions.phpand 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.phpintoverbo-child/footer.phpand edit that in your favorite text file editor.Locate line number 43 in the copy and change it from
<p><?php echo 'Copyright © ' . date( 'Y' ) . '. Powered by <a href="http://wordpress.org" target="_blank">WordPress</a>.'; ?></p>to
<p><?php echo 'Copyright © ' . date( 'Y' ) . '. Powered by <a href="http://wordpress.org" 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.
The topic ‘Footer’ is closed to new replies.
