I added a new product display node and trying to have comments and reviews show like on the default product display. I found info related to editing comment-wrapper.tpl.php to add comments to other nodes. In there I noticed the reference to product_display so I attempted to rewrite as such but did not work. <?php if($node->type =="product_display" && $node->type =="slogan_product") :?>
Hello Mfandel,
You MUST use || instead of &&. The correct code is:
<?php if($node->type =="product_display" || $node->type =="slogan_product") :?>
Thank you.