I installed the uberdrupal profile with the acquia prosper theme. I wanted to print the products , so used the print module for printer friendly version . The printer friendly version does not show the content, but it shows everything else. I tried it using with other themes , the printer friendly version shows alright. Could be with the acquia prosper theme. Thanks

Comments

batigolix’s picture

problem is caused by the $fusion_uc_body variable in the node-product.tpl.php template in the acquia_prosper theme folder on line 32

      <div class="content">
			<div id="content-body">
          <?php print $fusion_uc_body; ?>
        </div>

replace it with $content and your printer friendly page works fine

      <div class="content">
			<div id="content-body">
          <?php print $content; ?>
        </div>

i did not find a real solutions but as i'm using display suite for the layout of my product page i was able to remove the node-product.tpl.php entirely. drupal than falls back on the node.tpl.php, which works fine with the print module