Ed Walsh Development
Member login
- Hello, Guest
- Log in
This tutorial shows a simple first steps of setting up a Druapl 7x module, if you have ever created Druapl 6x modules this is a useful start to show the differences in creating the files.Read more
This general process for an upgrading can be used for security updates to Drupal core, upgrading contributed or customer modules, or migrating theming and other changes from a development or test environment to a production environment.Read more
If you getting errors like the one below then you will likely need to find the source of the issue and then use the SQL queries to remove it.
Cron Failed Attempting to re-run cron while it is already running. Read more
I thought it would be useful for me to put this down for others and my self to use as reference. The point of this is to create a jump menu to pick a taxonomy term from a drop down list to jump to the category. This can be used in a number of ways but for the purpose of this we are jumping to the taxonomy url. Read more
To override the search form in Drupal 6 you need insert the code below and edit the PHP Template file in your theme.
You will need to change the YOUR_SITE_NAME for the preprocess and the image file path.
function YOUR_SITE_NAME_preprocess_search_block_form(&$vars, $hook) {Read more
// Modify elements of the search form
unset($vars['form']['search_block_form']['#title']);
With the release today of Drupal 7 it has given me time to reflect on how far things have come and changed, I have been lucky to be part of the Drupal Community for many years now since Drupal 4. So much has changed with in Drupal it self complex processes have become easier to create for clients, which in times past have meant a lot of development to get your desired results.Read more
Below is a Php snippet for displaying the contents of a CCK image field as a DIV background in a Drupal node.tpl.php file:Read more
A lot of people ask me how to display a user name in a page or a block in Drupal. Its pretty handy and I am adding it here for my own reference as well as yours.
Simply enable the PHP filter on your body field you will need to do this by going to your modules page and enabling the PHP filter under core, this as it says allows embedded PHP code/snippets to be evaluated.Read more
