I figured it out.

With the featured sidebox, you need to remove "sidebox"

change this:
Code:
    $content .= '<br />' . substr($random_featured_sidebox_product->fields['products_name'],0,5) . '</a>';
to this:
Code:
    $content .= '<br />' . substr($random_featured_product->fields['products_name'],0,5) . '</a>';
Thanks again Ajeh