How to remove texts in footer
-
Hi,
I just installed a free version of gk-portfolio theme, and I would like to hide texts of “Free WordPress Theme designed by GavickPro
Proudly published with WordPress” in the footer by using child theme.
I’ve created functions.php and style.css in gk-portfolio-child folder. Nothing worked.
Can you help me how to remove the footer, please?= Functions.php =
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
?>= Style.css =
#gk-footer {
display: none;
}
- The topic ‘How to remove texts in footer’ is closed to new replies.