Jetpack has a great mobile theme module that allows you to easily create a mobile version of your website without any 3rd-party services or coding. It adds a short footer credit to the mobile version of your theme, which could be annoying to some users.
If you want to use Jetpack’s mobile theme module with out footer credits, here’s how you can remove Jetpack mobile theme footer credits in five minutes.
You need your FTP or FileManager for this job as we have to edit plugin’s theme files. In your FTP or File Manager, visit webroot / wp-content / plugins / jetpack / modules / minileven / theme / pub / minileven / footer.php
Just remove the following code from the footer.php file:
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'jetpack' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'minileven' , 'jetpack'); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'minileven' , 'jetpack'), 'WordPress' ); ?></a>
Code language: HTML, XML (xml)
That’s it! You can also replace this code with a custom footer credits or anything you want to have.
How do you make the changes persist across jetpack updates?
Unfortunately, you can’t….but it’s worth the time if you’re changing it for a client’s site :)
Or, add this code snippet to your custom CSS:
.mobile-theme #colophon #site-generator {
display: none;
}