Category Archives: WordPress

How to Edit Pages in WordPress

This is a basic guide to editing existing pages on a WordPress site. Log in Log in at [YOUR SITE URL]/wp-admin/ with your admin username and password. WordPress Usernames and passwords are case-sensitive, so be careful. After your initial login, you can edit the details of your user account (such as email or password) by [...]

WP e-Commerce

This thing is a beast, but hopefully the best. I’ll try to collect my solutions and resources here. Template Tag Reference The best list of template tags I’ve found is on a third-party site: http://www.visser.com.au/wp-ecommerce/documentation/customisation/themes-and-templates/ Image uploader showing “HTTP Error” Most likely PHP running out of memory during the “Crunching” phase. But this might help: [...]

Good god, can you make WordPress stop adding or removing p and br tags?

Shotgun approach Add this to your theme’s functions.php: remove_filter (‘the_content’,  ‘wpautop’); Scalpel http://www.adammershon.com/stop-wordpress-from-removing-br-and-p-tags/

Tim Thumb Image Resizing

A handy little tool for resizing images automatically. Caches images to limit processor speed. Very nice for when your users might be uploading their own images. Requires the gdLibrary be installed on your server. Here’s a handy script to check if it is. Basic implementation looks like this: <img src=”/scripts/timthumb.php?src=/images/whatever.jpg&h=150&w=150&zc=1″ alt=”"> Here’s a nice article on implementing [...]

WordPress as a CMS

Making your own theme Easy breezy. The minimum you need are index.php and style.css files. As long as you have the right code in your stylesheet, your theme should show up in the picker in the admin area. This doc has all the basics: http://codex.wordpress.org/Theme_Development. Don’t forget to add <?php wp_head(); ?> right before the </head> [...]