Skip to content

How To Remove Jetpack Mobile Theme Footer Credits

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.

3 thoughts on “How To Remove Jetpack Mobile Theme Footer Credits”

  1. Women At Woodstock

    Or, add this code snippet to your custom CSS:

    .mobile-theme #colophon #site-generator {
    display: none;
    }

Leave a Reply

Your email address will not be published. Required fields are marked *