May
29
2014
By Titto Jose

The Drupal 6 & 7 is shipped with jQuery library which is older than the current version that is available. Drupal 6 has version 1.2.6 and drupal 7 has 1.4.4. This offcourse can be updated to newer version using jQuery update module (Drupal 6 to jQuery 1.3.2 & Drupal 7 to jQuery 1.5.1, 1.7.1, or 1.8.2). For Drupal 7 I have seen that it causes certain minor issues (especially in Views UI) when it is set to 1.8. So the safest you can update to is 1.7 (correct me if I am wrong).

...

Jan
02
2014
By Titto Jose

Here is a nice little hack to filter or sort products based on discount or offer for ubercart module in drupal 6.

In drupal, ubercart module provides 3 types of price fields that can be entered for a product - Cost price, List price and Sell price. Here the sell price is the final price at which a customer can buy a product and it is a required field. To sell a product at discounted price we uses list price and sell price fields. Here the list price will be the price without discount...

Sep
09
2013
By Titto Jose

The idea is to create a simple drupal module which takes over the default logout path and putting a confirmation form.

logoutconfirm.info:

; $Id$
name = Logout confirm
description = To confirm logging out of user.
package = Drupal custom modules
core = 6.x

 

logoutconfirm.module:

<?php
...