diff --git a/Fixing-and-Extending-ComicPress.textile b/Fixing-and-Extending-ComicPress.textile
index 512ea65..86a8471 100644
--- a/Fixing-and-Extending-ComicPress.textile
+++ b/Fixing-and-Extending-ComicPress.textile
@@ -1,6 +1,6 @@
h2. Where to do work on ComicPress
-Unless you already have the code written, don't do development on your live site! Install a test/local copy of WordPress and work on that.
+Unless you already have the code written, don't do development on your live site! Install a test/local copy of WordPress and work on that. This is also the best approach to use when doing work on a new theme for your site ("Theme Tester":http://wordpress.org/extend/plugins/theme-tester/ or some equivalent is the next best).
@@ -16,9 +16,11 @@ h2. functions.php
If you're not using the default ComicPress theme (say, you're using 3 column or GN), and you haven't customized your functions.php
file, a new version of functions.php
can (theoretically) be dropped into the target directory without affecting functionality.
-h2. Debugging Problems in ComicPress
+h2. Fixing Problems in ComicPress (in the base theme or your own theme)
-* Before working on your files, make backups of everything! Database and theme files, please. Or, even better, use "git":http://git-scm.com/ to manage your work on the theme.
+Fixing problems in ComicPress and WordPress gives you a good opportunity to learn "PHP":http://www.php.net/. If you've never done any development work before, it can be scary. There are people on the "forums":http://comicpress.org/forum/ that have good PHP skills. Ask there, please.
+
+* Before working on your files, make backups of everything! Database and theme files, please. Or, even better, use "git":http://git-scm.com/ to manage your work on the theme so that you can easily revert if you mess up.
* Make sure error reporting is turned on. On production servers it often isn't (and it shouldn't be). At the top of your functions.php
file, add error_reporting(E_ALL)
while you're working on an issue, and then remove it when you're done.
* Use "var_dump":http://us.php.net/manual/en/function.var-dump.php instead of "echo":http://www.php.net/echo to print out variable information.
* Make sure your code is outputting what it really should be outputting by using View Source in your browser.