Articles tagged with: drupal tutorials

In this article I propose you to clarify the variables of a page template (page.tpl.php). This is necessary to create a website design according your needs.

In this article, we will study $node object that is available in node.tpl.php template. When we are done, we can use the object to adjust the node design.

In this article, I would tell you how to format text of a teaser in a theme template (node.tpl.php). I propose you two different ways to do this. They are applicable for Drupal 5 and …

This article would tell you how to show PHP alerts and errors.

This article will tell you how to disable showing of PHP alerts on pages of your site. You can find all these notifications in Drupal logs. So you can disable them to show to your …

If PHP-snippet has an error the whole website could be unavailable. Therefore, before saving a block/page you should make sure that snippet works correctly.

You may need to clear cache in the following cases:
JS and CSS files are updated
template.php file is updated for your current theme
Changes in site content aren’t visible for anonymous
Problem with access rights – you should …

You need to include anchor link to Drupal menu (<a name=”anchor”></a>).
If you enter “node/15#anchor” to the “Path” field, Drupal will convert “#” to “%2523″ and you will get this on the output: “/node/15%2523anchor“. In this …

In this article I would tell you how to change site icon that appears in browser address bar, bookmarks, and on the SERF page. You can change icon image with your own.

This article will tell you how to hide a part of an article from anonymous visitors and show it for registered users only. We will do this in a few different methods.