Question

Hi im trying to create full page content with no sidebars within Drupal 6. I have created a Block that takes up the full page and turned off other blocks but by any chance does someone know how to shut off the main page content? Or is there another way about this?

Here is the page: http://www.blackrockec.ie/content/how-grow-wild-flowers-seeds

The block is working perfectly, but below it is the main page content and I want this turned off, Any help would be very appreciated!!!

I have turned off the title but the white space below still exists.

Was it helpful?

Solution

From what I could gather using the link provided here are a few possible solutions that might be of help.

  1. Check node body From the source of the link provided here the node id of the troublemaker is 292. Using any role in the site that has administrative access to edit content visit http://www.blackrockec.ie/node/292/edit to check the body of the node. There's a possibility of php code being used in some cases to display body content where your site breadcrumb link could be printed.

  2. Check the template file used to render content If this specific 'node' is of a different type in comparison with the other nodes say the next content in your site, (i-e) if the node with the problem is of type page and the others are of stories you might want to double check the respective node template from which it could be possibly rendered to debug the issue. The general naming convention would be node-nodetype.tpl.php in your theme, so for a page you might consider checking node-page.tpl.php to troubleshoot the problem.

  3. Create a template to affect the display of this specific node In case you are certain all of your content are of the same type and that your template is foolproof would suggest creating a specific template that would affect this node alone to check there's no other module's intervention in this. Going by core drupal's template naming conventions this would be page-node-[nodeid].tpl.php, in your case likely create page-node-292.tpl.php in your theme and comment out code where you would have print $breadcrumb and print $content and check if that affects your page display after clearing the cache. Note: This is a hackish method which I would not approve unless used for troubleshooting the issue

  4. Display Suite Consider using contributed modules specifically Display Suite with Node Display to control every aspect of your node content. They provide the ability to control attributes of the node at a very granular level with a wonderful UI that non-developers could be trained easily and master. Also extensive help guides and videos to help implement them make them favourites.

Please do update the question in case there might be any modules being used related to node display that might shed more light on the issue and hope the suggestions help.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top