Is there any way to place 2 views in a 2 columns page in Drupal without having to install the Panels module ?
N.B. The 2 columns layout should be used only for this page.
thanks
Is there any way to place 2 views in a 2 columns page in Drupal without having to install the Panels module ?
N.B. The 2 columns layout should be used only for this page.
thanks
Without Panels or Context[http://drupal.org/project/context] modules, you got two options.
You can insert views via PHP in the node of the page, and then use custom HTML/CSS to make the views occupy a column each. Check this article and discussion, for example, where the code to insert the view is the following:
<?php $view = views_get_view('viewname'); print $view->execute_display('default', $args); ?>
This will, of course, require full permissions for the node editing, but if this is just for one page, I assume you have all the needed permissions to do it once.