Drupal
Drupal 7 – Multi language front page
4It’s not possible in Drupal 7 to define a front page per language with the core or i18n module or something. However with a little bit of code it’s still not so hard to do.
Create a custom module “alter” for example. Create the folder in “sites/all/modules/alter”. Create “alter.info”
And create a file with the name “alter.module”. And put the following code in it with your More >
Drupal 7 – Exclude node type in search results
1Websites that use the search of Drupal 7 core have now ability to restrict the search and exclude some node types for example. I see some articles that Drupal 8 probably will have this kind of functionality.
However, it’s possible to rewrite the SQL query that selects the search results. Thanks to the Drupal database layer this can be done quite easily.