Drupal 6

Zyxware default image4
| 3 min read
If you need to deliver a custom tailored home page to a user visiting your Drupal website based on their actual physical location you need to need to match their ip addresses with their actual physical location. There are many third party services that provide this functionality and you need to use the API key provided by them in your Drupal application. If you need to know how to get IP address and Country code from an API key to be used in your Drupal application then read on to know more.
Zyxware default image1
| 3 min read
One of our Drupal sites we had worked on required us to implement region based content filtering and it was to be done through a value stored in a session. The Drupal site was also using Boost to enable static page caching. Boost stores pages as HTML files inside a cache folder and each page is served from the cache for anonymous users. To implement the filtering process successfully for anonymous users, we had to find a way to alter the URLs for the selected region. Read on to know how to alter URLs in a Drupal 6 website.
Zyxware default image4
| 3 min read
The webform module in Drupal gives you a great set of tools to let you create HTML forms with ease with a drag and drop interface for most of the commonly used HTML form elements. Since it is considered as another content type the forms are usually placed in a separate page of its own. Usually that is all that is required, but there are scenarios where you need to embed the webform in another content type like a page. Here is how to do it. First you need to create a custom module to write the code to embed the form in a page or add it to an existing custom module.
Zyxware default image4
| 4 min read
Replying to comments is an extremely good practice for bringing recurring traffic to your Drupal website as you are interacting with your visitors. If you can send those new comments to an email address, you can respond to them quicker since a late reply usually goes unnoticed. Normally in a Drupal 6 website, the admin user has to login to the website and moderate the comments which often leads to a significant delay in response time. Check out our instructions on how to send comments to an email address in a Drupal 6 website.
Zyxware default image1
| 4 min read
You might wish to have dynamic page titles in your Drupal 6 website. It is good for a website for the title to change according to the content of a page from an SEO perspective and also for a better content structure. It is very easy to implement dynamic page titles in a Drupal 6 website. Follow the steps below to change the page title according to the url of the page.