Nov
12
2015
By Titto Jose

It's just a drupal 7 module created for fun to integrate Infinite Ajax Scroll plugin. Lately I came across with this jquery plugin which is very simple to use on existing pages with normal pager. For views listing with pager you don't have to enable Ajax to use this.

How to integrate this without the module? Well you need to include the plugin file the drupal way using drupal_add_js() at theme level or in .info file or any other right way you can think of suiting your requirements....

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
...