Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Drupal can I create a link to just a node, so not the node page with the header, side bars, footer, etc. So the page is literally just the node's contence, no css files or anything else?

Thanks

share|improve this question

2 Answers

up vote 2 down vote accepted

In your theme create a page-node-1.tpl.php file. In that file just print $content;

<?php print $content; ?>

now when you navigate to node/1 of your site you will not have anything else but the content of the node. What ever you need to add you can add around that.

share|improve this answer

Hum not rely, what are you trying to do? If you want to expose some data to an other service use the Services module for that, you can create a REST / Soap web service based on Drupal to expose your content.

share|improve this answer
Actually it was a lightbox issue where I wanted a node in a lightbox and by default it was loading the entire node page. Ive got round it with views, perhaps a bit overkill but its working. Thanks – jdln Apr 27 '11 at 11:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.