Quantcast
Channel: Drupal Views Archives - Mydons
Viewing all articles
Browse latest Browse all 8

How to theme the views in Drupal

$
0
0

drupal

In Drupal views are used to display the content , images etc.. to the users. Views has the own default template , to create the custom template. In the Edit mode of views page , click on the Theme Information in the Basic settings block, in this block the theme information  will listed in order like Display Output, Style output , Row Style Output and the View-view.tpl.php will be enabled by default. To enable your custom temple, Go the views module directory and navigate to the View-> theme folder and copy the View-view.tpl.php to your custom themes in sites/all/themes/custom themes directory and rename the View-view.tpl.php  to views-view--frontage-top-content-slide.tpl.php (This is  the name displayed in the theme information block next to the  View-view.tpl.php ) and now clear the performance cache in the site configuration .Now the custom template would be activated and your start customizing the views in the  views-view--frontage-top-content-slide.tpl.php in your custom theming directory In the custom template we can use the our own HTML and CSS , to style the views and to access the data we can use the  $row will return the raw sql result to fetch the output use the following coding
$data = $row->{$field->field_alias}
Requirement :- Drupal

The post How to theme the views in Drupal appeared first on Mydons.


Viewing all articles
Browse latest Browse all 8

Trending Articles