Show link PDF Version under node/ID/take

Luke
Forums
Hi guys, anyone knows how to make appear in a slide the link "PDF Version" who let you to download the node as a PDF ? When I start a lesson i'm not able to make appear the link. (i mean under this link: node/anyID/take) The link appear only when i visit directly the node type (when I go under content and i click the title of the slide) Thx in advance. Greetings Luke
Luke

Solved

For all the people who's encountering this problem i solved in this way: 1 Enable under modules the PHP filter 2 Go to blocks and create a custom block 3 Put this code inside the block: <?php global $base_url; $nid = arg(1); ?> /print/<?php print $nid; ?>" rel="nofollow" class="print-page"> Print version /printpdf/<?php print $nid; ?>" rel="nofollow" class="printpdf"> PDF Version 4 Go to visibility options and set: only to listed pages: node/*/take 5 Put the block above or under the main content 6 Now you should have youur links appearing and printing the pdf or print version of your slides
Luke

Ups, something wrong in point

Ups, something wrong in point 3: i'm not able to write correctly the html code because it is interpreted so: a href="<?php print $base_url ?>/print/<?php print $nid; ?>" rel="nofollow" class="print-page"> Print version /a a href="<?php print $base_url ?>/printpdf/<?php print $nid; ?>" rel="nofollow" class="printpdf"> Pdf version /a I removed the start and end < > for the a Don't forget to assign the role administrator to php filter under admin/config/content/formats, otherwise the snippet wil not work