Remove Theme Files

Contracts > Settings > Remove Theme Files

If you are having issues with your theme bleeding over into the plugin, you can follow these instructions to add a custom header and footer for the contracts.

Header

Create a file called header-contract.php and add the following code to it.

<!DOCTYPE html>
<html class="no-js no-svg">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body>

Footer

Create a file called footer-contract.php and add the following code to it.

<?php wp_footer(); ?>
</body>
</html>

Last updated