Hi,
I am a WordPress newbie. I really love your themes!
I have 2 questions:
I would like to remove the Social Media links in the footer, but not in the widgets.
I have removed the line
<?php sparkling_social(); ?>
form the footer.php file but it still shows in my site.
How can I remove it completely just from the footer?
My second question is basically with testing the first problem. (And knowing that this is also something that I would like to change.)
I would like to remove the ‘Powered by WordPress’ form the copyright section. From your treads here I learned about the exrtas.php file and found the sparkling_footer_info() function. I changed the function to:
/**
* function to show the footer info, copyright information
*/
function sparkling_footer_info() {
global $sparkling_footer_info;
printf( __( 'Theme by %1$s', 'sparkling' ) , '<a href="https://colorlib.com/" target="_blank">Colorlib</a>');
}
I just want to show the theme details and if possible a custom “developed and hosted by” link. This change also does not seem to work. The website still show the original copyright information.
How can I change this so that it actually show in the site? What am I missing?
Help will be much appreciated!