Link to home
Start Free TrialLog in
Avatar of jello32
jello32Flag for United States of America

asked on

How to remove Unite Theme powered by WordPress. in footer

I looked in the footer.php file and it says:
</div><!-- #content -->

	<footer id="colophon" class="site-footer" role="contentinfo">
		<div class="site-info container">
			<div class="row">
				<nav role="navigation" class="col-md-6">
					<?php unite_footer_links(); ?>
				</nav>

				<div class="copyright col-md-6">
					<?php do_action( 'unite_credits' ); ?>
					<?php echo of_get_option( 'custom_footer_text', 'unite' ); ?>
					<?php do_action( 'unite_footer' ); ?>
				</div>
			</div>
		</div><!-- .site-info -->
	</footer><!-- #colophon -->
</div><!-- #page -->

<?php wp_footer();

Open in new window


How do I remove the Unite Theme powered by Wordpress?
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Remove this line:

<?php do_action( 'unite_credits' ); ?>

Open in new window

and possibly the 2 lines after. But if this is a free theme, you really should leave it in and give credit to the theme author.
Also, if there's a premium version of the theme once you buy it you can most probably set custom footer  text (and remove powered by..)
ASKER CERTIFIED SOLUTION
Avatar of Hellen Wade
Hellen Wade

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial