by Jeremy on April 9, 2010
Thesis WordPress Theme
I LOVE Thesis. I’ve been using it for all of my websites for about 8 months now. In the past, each new website meant I had to search the ‘net for decent WordPress themes. Most of the themes I found were ‘okay’, but never exactly what I wanted. That all changed when I found Thesis.
The best part of Thesis is the amazing SEO. There are a bunch of features to help you increase your site’s SEO built right in. There’s also a great admin panel that lets you choose your site’s fonts, colors, navigation, and more. All built into Thesis!
Once you buy Thesis, you own it, and you get all the future updates for free! That includes the new 1.7.
Thesis 1.7
So back to the NEW Thesis… There’s a lot to be excited about in the new Thesis 1.7.
- Options Manager. My favorite part. I use similar templates for all of my sites, but I still have to go into Thesis and configure all of the options to make everything work. Not anymore! Thesis now has a way to have your options and import them into a fresh install. RAD.
- New headline filter - It used to take some CSS trickery to remove the headline, but now it’s built right in!
- Easy 301 redirects. Another of my favorite new features. I used to use a plugin called “Page Links To”, and now the same functionality built right in to Thesis!
- New SEO controls and detail. As if the SEO benefits weren’t already great, they’ve added even more. Features for robots tags, categories, and tags. Deep SEO stuff.
- Flexible new comment system – Gives you the ability to reorder comments, trackbacks, and the comment form.
- Completely reorganized options pages.
- Increased efficiency from every angle.
- Include a slew of JavaScript libraries.
- New home page controls – complete SEO control on your home page.
- New hooks
- Beefed-up internationalization
- Improved core element defaults
- Dramatically improved code quality
If you aren’t already using Thesis, I couldn’t encourage it more. It’s saved me SO much time, and improved all of my sites. Check it out!
by Jeremy on April 8, 2010

I’ve been moving websites a lot lately, so I’ve been finding dead links like crazy. I’ve been moving all of my websites from GoDaddy Hosting to HostGator hosting (which I’ll write about soon).
Running the Thesis WordPress theme on HostGator resulted in having 2 different 404 pages. One is the default Thesis 404 page, which is okay, but the other one is an obnoxious HostGator 404 page that is basically just a HostGator advertisement. I love HostGator, but that’s a bunch of crap.
Changing the HostGator 404 Page
This part is pretty easy if you’re familiar with the .htaccess file.
In theory, it should work to add the following to your .htaccess file:
ErrorDocument 404 /new404.html
“new404.html” would be the address of your 404 page. I haven’t been able to test this, though. Now that I want to break my pages, I’m having a hard time doing it… Let me know if that code doesn’t work, please!
Changing the default Thesis 404 Page
I don’t really mind the default 404 page that Thesis uses, but it could be more helpful. I made a couple quick changes to mine to help explain to users how to find the content they were looking for, or to get back to the Home page. Check out the 404 page for my Washers site.
All you need to do to make some changes is to add a few lines of code to your Thesis custom_functions.php file.
Here’s what I used:
/* Custom 404 Hooks */
function custom_thesis_404_title() {
?>
The Page you requested is somewhere here.
<?php
}
remove_action(‘thesis_hook_404_title’, ‘thesis_404_title’);
add_action(‘thesis_hook_404_title’, ‘custom_thesis_404_title’);
function custom_thesis_404_content() {
?>
<h2>Lose Your Way? Don’t Worry!</h2>
<p>Let’s get you back on track!<br /><br />
If you know what you’re looking for, please use the search box on the right.<br /><br />
Otherwise, go ahead and start over at the <a href=”http://www.washergameplayers.com”>Home</a> page.<br /><br />
Thanks for visitng <a href=”http://www.washergameplayers.com”>Washer Game Players!</a></p>
<?php
}
remove_action(‘thesis_hook_404_content’, ‘thesis_404_content’);
add_action(‘thesis_hook_404_content’, ‘custom_thesis_404_content’);
Basically, this function uses hooks to remove the default 404 page, then replaces it with your new content.
I had to add in my own H2 tags for a headline, as I have the headline tags removed from my Thesis Theme.
I found the 404 info on a couple of websites, then altered it work for my site. For more info, check out:
http://www.shoutmeloud.com/customizing-thesis-wordpress-theme-404-error-pages.html
http://www.sugarrae.com/thesis-tutorial-custom-404/
by Jeremy on April 2, 2010
PhpBB3 to Coppermine Bridge

A great way to make the phpBB forum even better is to link it with Coppermine. Coppermine is an open-source photo gallery you can use on your website. It may not be the prettiest or most feature rich option, but it’s really stable, and does most anything I’ve ever needed it to do.
One cool thing you can do with Coppermine is create a bridge that will create a single log in for your forum members. It’s a really easy mod, and well worth doing if you’re running both of these programs.
I’ve been using this on my Cornhole, Washers, and Outdoor Games forums for a while now. It works great, and the single log-in is really nice. There isn’t a ton of support for this, so hopefully you get it to work on your first try!
Steps involved
- Execute an SQL statement
- Replace a phpBB3 file
- Delete forum cache file
- Change some phpBB3 ACP permission options.
- Replace a few Coppermine files.
- Run the Bridge Manager
Link to Mod – Bridge Coppermine <-> phpBB3, v0.9.0