Posted On September 27, 2021

WordPress: Remove ‘Built with Storefront & WooCommerce’ in footer

kimconnect 0 comments
blog.KimConnect.com >> Codes >> WordPress: Remove ‘Built with Storefront & WooCommerce’ in footer

Credit: @jobthomas Automattic Happiness Engineer
https://wordpress.org/support/topic/remove-built-with-storefront-footer-link-2/

How to apply: search and install Code Snippets > add this snippet > apply everywhere

if ( ! function_exists( 'storefront_credit' ) ) {
	/**
	 * Display the theme credit
	 *
	 * @since  1.0.0
	 * @return void
	 */
	function storefront_credit() {
		?>
		<div class="site-info">
			<?php echo esc_html( apply_filters( 'storefront_copyright_text', $content = '&copy; ' . get_bloginfo( 'name' ) . ' ' . date( 'Y' ) ) ); ?>
		</div>
		<?php
	}
}

Leave a Reply

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

Related Post

PowerShell: Error when Pause is Placed Inside Function

Error: + Function Search-ScheduledTasks{+ ~Missing closing '}' in statement block or type definition.At C:\Users\kdoan\Desktop\Notes\test.ps1:57 char:1+…

Basic CSS: Use Hex Code for Specific Colors

<style>body {background-color: black;}</style>

PowerShell: Add Accounts into Local Administrators Group

# addAccountToLocalAdmins.ps1# Requires: PowerShell Version 4.0+$accountToAdd='ServerAdmins'$groupName="Administrators"$servers=@( "CONCU1", 'CONCU2', 'CONCU100', 'CONCU80665', 'CONCU6547354', 'CONWHAT989', 'CONCU3')$servers|%{ $session=new-pssession $_…