Here's the solution:
Open clipper/includes/theme-functions.php Near line 63 you will find:
Code:
include_once(TEMPLATEPATH.'/includes/theme-footer.php');
Change it to:
Code:
include_once(STYLESHEETPATH.'/includes/theme-footer.php');
Then include the theme-footer.php file within your child theme's "includes" folder, and edit it to your heart's content.
You can do the same for any other file listed in that section of the theme-functions.php file. When ever there is an update, you'll just need to re edit one file. This should work for all the themes. Easy - breezy.
Last edited by dubya; January 6th, 2012 at 03:08 PM.
Reason: fixed a typo