To add a footer using either Footer Putter on the WordPress Striker Theme do the following steps:
- On the Footer Credits admin page and set the Footer Hook as the wp_footer hook
- In Appearance | Menus, create a Footer Menu with for pages such as the Privacy Statement, Terms and Conditions, Contact Us, etc
- In Appearance | Widgets, Drag the Footer Copyright widget into the Credibility Footer Widget Area
Footer Credits Settings
Go to the Footer Credits menu option and enter infromation about your business. In the Advanced section indicate that you want the widget area to be inserted at the wp_footer hook.
Footer Menu Settings
In Appearance, Menus create a new Menu called Footer Menu and then add the pages for which you want to have links in the footer. Typically this will include some of the following: About Us, Contact Us, Privacy, Terms and Conditions, etc..
Footer Copyright Widget Settings
In Appearance, Widgets drag a Footer Copyright widget into the Credibility Footer Widget Area and then configure it with the Footer Menu and decide whether or not you want to display copyright, telephone number and address details.
Hiding Powered By WordPress
The Striker theme does not provide a hook or filter to hide the WordPress credit and hence neither does Footer Putter.
If you really want to remove the WordPress credit then you can remove line 16 of footer.php or if you just want to hide it for aesthetic reasons then you can do so by adding the following to the theme’s style.css file:
[css]
#colophon { display: none; }
[/css]