Drupal – Customize Node Template with Panel
Panels is a very useful module for customizing page layout. You can either create you own page or edit the Drupal default templates such as Node View and Taxonomy View. Download the Panels and Chaos...
View ArticleDrupal – Customized Node Template with Exposed Filter in Panel Page
The following post shows you how to customize a node template. Drupal – Customize Node Template with Panel I would like to add a year filter in the above content pane. But the exposed filter would not...
View ArticleDrupal – Panel Pane Title Translation @ 1
In Panel page, we can configure the pane title at the content page. By default, we could not translate these pane titles in Translate Interface. To fix this problem, we can override the template...
View ArticleDrupal – Panel Pane Title Translation @ 2
Another way to translate the Panel pane title is by the Drupal template system. Create the panels-pane.tpl.php in your theme folder. panels-pane.tpl.php <?php // $Id: panels-pane.tpl.php,v 1.1.2.1...
View ArticleDrupal – Add Previous and Next Links for Node Navigation
When you are viewing a node, it would be nice to have the previous and next navigation buttons so that you can browse other nodes of the same content type more easily. This is exactly the recent task i...
View ArticleDrupal – Customized User Registration/Login/Forgot Password Page with Panel
Update @ 2012-12-30: Here is much simpler approach proposed by tombehets. Thanks =D /** * Implements hook_menu_alter(). */ function mymodule_menu_alter(&$items) { //redirect user/register to...
View ArticleDrupal – Form Path Problem of Exposed Filter Block in Panel Page
In Views, we can make the exposed filter into block and therefore we can select it for Panel page. But this would not work because after the filter form submission, it will redirect to the view page...
View ArticleDrupal 7 – Disable certain regions by conditions using Context
Context could help you to manage the layout. In the past, i would use the Page manager of Chaos Tool Suite and Panels to control the layout but now i have completely move to the Context module. You can...
View Article