Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey guys, try this: create (using a plain text editor) a file named modify-footer-text.php and paste this in it:

    <?php
    /**
     * Plugin Name: Modify Footer Text
     */
    
    if ( ! function_exists( 'accelerate_footer_copyright' ) ) {
    	/**
    	 * Show "Copyright @ YEAR Site Name" in footer.
    	 */
    	function accelerate_footer_copyright() {
    		$site_link = '<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" ><span>' . get_bloginfo( 'name', 'display' ) . '</span></a>';
    
    		printf( '<div class="copyright">' . __( 'Copyright © %1$s %2$s', 'accelerate' ) . '</div>', date( 'Y' ), $site_link );
    	}
    }

    and save the file.

    Now go to WP Admin > Plugins > Add New, click Upload Plugin button at the top, select the file you created. Activate it as a plugin and everything from Powered… will be gone.

    Thread Starter simon_a6

    (@simon_a6)

    Brilliant.
    Works a treat
    In the top right you can put into the widget area, search or whatever.
    I’ve also put in four social media icons, but below those I want to put the company’s address.

    Trouble is, the moment the address stretches out further than the width of the search box, the search appears to be left aligned to it’s DIV area… and move outs to into the page, rather than staying on the right.

    I did find the div but it was already right aligned.

    So how do I force is to stay put on the right,

    streetdweller

    (@streetdweller)

    im builing my first webite on wordpress with shopkeeper using the child theme.I have a static coming soon page up while im buiding the real home page and so on. The bottom footer is transparent on the static page like i have set the settings to, but the page im buillding wont inherit the transparency or social icon colors? but it works fine on the stacic coming soon page.
    Can anyone tell me why?

    http://www.streetdweller.com.au

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Footer. How do I change "copyright" text?’ is closed to new replies.