Hey guys,
In the Catalyst Resources > Screencasts section of CatalystTheme.com you'll find videos such as this one:
http://catalysttheme.com/how-to-crea...sing-catalyst/
This is also covered in the [?]Tooltip next to the "Custom Layouts" heading in Advanced Options.
The above lading page Custom Layout will remove your Header, Navbars AND Footer. If you just want to remove your Header you'd have to add some custom code to your /wp-content/themes/dynamik/custom-functions.php file. Something like this:
PHP Code:
add_action( 'wp_head', 'custom_remove_header' );
function custom_remove_header()
{
if( is_page( 'About' ) )
{
remove_action( 'catalyst_hook_header', 'catalyst_build_header' );
}
}
Using WordPress Conditional Tags you can specify where you want your header to be removed.
Or let's say you want to remove it not only from your "About" page, but your page named "Archives". Then you would use || (or) to add more conditional statements like so:
PHP Code:
add_action( 'wp_head', 'custom_remove_header' );
function custom_remove_header()
{
if( is_page( 'About' ) || is_page( 'Archives' ) )
{
remove_action( 'catalyst_hook_header', 'catalyst_build_header' );
}
}
Eric