
Graphic designer since before the Internet. Started with newspaper paste-up; then art director for advertising agency in Reno, NV; and now freelancer designing marketing materials, print-on-demand t-shirt art, websites, and social media graphics.
Similar Posts
WordPress Tip: Imbedding NextGEN Gallery Into WP e-Commerce Description Field
Problem: Can’t embed NextGEN Gallery short code (eg: [ nggallery id=1 ]) into WP e-Commerce’s product description field. Partial solution (for version 3.7.7 only): File location: wp-content/plugins/wp-e-commerce/wpsc-includes/wpsc_query.php Line 278 Replace the return statement: return wpautop(wptexturize( wp_kses(stripslashes($wpsc_query->product[‘description’]), $description_allowed_tags ))); WITH: $description2 = wpautop(wptexturize( wp_kses(stripslashes($wpsc_query->product[‘description’]), $description_allowed_tags ))); $description2 = apply_filters(‘the_content’, $description2); $description2 = str_replace(‘]]>’, ‘]]>’, $description2); return…
Remove WordPress Version Number From Public View
One of the most commonly seen security tips around the WordPress-o-Sphere has got to be this: Don’t display your WordPress version number publicly Many WordPress developers often display the WordPress version in the source code. But having this information publicly available makes it easy for attackers to exploit known vulnerabilities on a particular WordPress version….
WordPress: Briefly unavailable for scheduled maintenance
The first time I saw “Briefly unavailable for scheduled maintenance” on my WordPress site I was terrified. I had attempted to update a plugin and it failed. And no matter how many times I refreshed the browser, the site wouldn’t come back up. Now I know what the solution is: delete the .maintenance file on…
WordPress Child Theme – 3 Column Thirty Ten
http://aaron.jorb.in/thirtyten/ …two column Twenty Ten to a three column theme I’m going to call Thirty Ten. Share this post: Share on Twitter Share on Facebook Share on LinkedIn Share on Email
WordPress Plugin – Custom Contact Forms
Got turned on to a new WordPress contact form plugin today called Custom Contact Forms. Been digging into it a little bit tonight. But I found that I couldn’t re-arrange the form’s fields. Ugh; what a pain in the ass! Then I came across the CCF Option Sort for Custom Contact Forms plugin, which allows…
WordPress Tutorial – Remove the Word “Protected:” from Title Text of Password-protected Pages
Remove the word “Protected:” from title text of password-protected pages. Big thanks to t31os on the WordPress forums. Check out t31os’s site for more WordPress tips. The following filter function code is placed in the functions.php file, this way it doesn’t accidentally get replaced when WordPress is upgraded. <?php function the_title_trim($title) { $pattern[0] = ‘/Protected:/’;…