Articles tagged with: drupal modules
This article describes how to find and understand changes in Book module. This will make you able to adapt snippets and modules which interact with Books module in Drupal 6.
Allows a blacklist of sites that will have a rel="nofollow" attribute added to their link tags whenever used on your site. Originally the only page in the blacklist was Wikipedia, though it now allows an …
So you should create subdomain for every user. For example,
http://mary.example.com
http://kate.example.com
http://jeff.example.com
This article is devoted to default input format for role or node type. Setting the default input format, you do not need to select format for every node created.
This article is devoted to increasing site performance for registered users. There are two ways for to this: use Block Cache module and use Drupal caching. Below is the detailed description of the first one.
In article I would tell how to
Disable title output
Auto-fill the title
Disable necessary filling in of title
If you try to open modules page: Administer > Site building > Modules and get the blank page instead of it, then you probably have a problem of memory lack. When this page opens, all …
This article would tell you how to disable an ability to change comment subject when comment adding and how to do not show the subject on the node page in the list of all.
Problem:
It is necessary to get know type of the displayed node. There is no such info in Edit form.
Task:
Create a view via code with Views (in your custom module).
Solution To create a view via code with Views 2 in Drupal 6 you should:
Create a view using Viws user interface as …