I'm lousy at PHP, but I can usually muddle through it.
What I'm trying to get to work now: I don't want the Transcript to show up on the landing page. i.e. page.com but I do want it to show up on all other comic pages.
Every time I do an if/else statement and in the action part where I put what I want executed using echo ('...'); if there's php in the echoed part echo ('...<?...?>...'); it breaks.
so this is pseudo code of what I have in the transcript snippet.
Start PHP if (current url == site.com/) { echo (''); } else { echo ('original code for the transcript'); } End PHP