Facebook Changes Effect WordPress FT FacePress II Plugin

wordpress_masterA recent change by Facebook to their status update (via email functionality) has disabled WordPress plugins that rely on this feature. I noticed this after my clients complained about the FT FacePress II plugin not publishing their post to their Facebook Business Pages. I tested several other plugins that use the secret Facebook email address to do status updates and found that none worked. The Facebook status update functionality is working, standard email to the secret Facebook address tested A-OK.

These types of plugins (using the email functionality) were working one month ago. However, Continue reading

PHP Conditional Region Based on Recordset Empty or Not Empty

I hope this helps someone, I spent way too many hours on it. I’m sure it’s simple for all you super code cooks, but for some (me) it can sure mess up your day.

  • If your recordset IS empty use this ==”" (equals nothing)
  • If your recordset is NOT empty use this >”" (is greater than nothing)

Here are some examples:

if ($row_rs_showif['this_url_img']==”"){
// Do Something }

if ($row_rs_showif['this_url_img']>”"){
// Do Something }

Go Green! Update to WordPress 3.4

WordPress 3.4, code name “Green”, has just been released. Protect your assets, make your site faster and even easier to use. Your custom WordPress theme and plugins will require testing and possible tweaks to take advantage of the latest update. You and our clients are encouraged to contact Whitten Design now for an update assessment.

Templates for Simple Portfolio

If you want to add category and client templates to the WordPress plugin Simple Portfolio (by Patrick Brouwer) make sure you use the custom Taxonomies created by the plugin.

To find the two taxonomies that you’ll need go to the plugin’s folder and open simple-portfolio.php and search for “taxonomy”. You’ll fine the two that you’ll need:

  • portfolio-clients
  • portfolio-categories

In order to get my new template files to work in my theme I named my files this:

  • taxonomy-portfolio-categories.php
  • taxonomy-portfolio-clients.php

Hope this helps.

WordPress: Comments RSS Feed Not Working?

For new WordPress users, my short Goggle search did not find anything on this but this is what’s going on.

If you click on “Comments RSS” and you get a page saying “…could not update this feed because the source file is no longer available.” don’t worry.

I just means you don’t have any current comments attached to any of your post. Once someone comments on a post (and you approve the comment) you’ll see your Comments RSS feed.

Of course if you don’t delete the standard “Hello World” post and it’s comment you’ll never come across this problem.

Hope this helps.