I have two variables that either pass back N or Y but only want to show something either either one of those is set to Y but think I'm doing it wrong. Any ideas?
{if $product.bean_bag_filling_150 == "Y" || $product.bean_bag_filling_300 == "Y"}
Try this:
{if (strtolower($product.bean_bag_filling_150) == "y" || strtolower($product.bean_bag_filling_300) == "y")}