Considered feature-complete by its maintainers.

WebDav Mailer

This module is used to send mail through WebDav to an Exchange server, when other options such as SMTP or POP3 are not allowed.

Commerce shipping flatrate

This is a commerce shipping method module. It allows administrators to define a number of shipping options, each with cost.

Chained selects

Add form element for Chained selects (i.e. dependent dropowns) -- http://www.appelsiini.net/2010/jquery-chained-selects

Grab the source and place under libraries/jquery_chained (so you will have libraries/jquery_chained/jquery.chained.js).

Dependencies:
* Libraries API

Example form:
<?php
$options = array(
'' => '--',
'bmw' => t('BMW'),
'audi' => t('Audi'),
);

$form['mark'] = array(
'#type' => 'select',
'#title' => t('Select 1'),
'#options' => $options,
'#attributes' => array('id' => 'chained-selects-mark'),
'#default_value' => 'audi',
);

$options = array(
'' => '--',
'series-3' => t('3 series'),
'series-5' => t('5 series'),
'series-6' => t('6 series'),

'a3' => t('A3'),
'a4' => t('A4'),
'a5' => t('A5'),
);

$options_attributes = array(
'series-3' => array('class' => 'bmw'),
'series-5' => array('class' => 'bmw'),
'series-6' => array('class' => 'bmw'),

'a3' => array('class' => 'audi'),
'a4' => array('class' => 'audi'),
'a5' => array('class' => 'audi'),
);

$form['series'] = array(
'#type' => 'select',
'#title' => t('Select 2'),
'#attributes' => array('id' => 'chained-selects-series'),

BI3-4

BI3-4 Drupal Theme screenshot

* table based
* grey colored
* dynamic width
* rounded corners

uc_restrict_shipping_by_material

This is an extension to the Ubercart suite of modules that allows item materials to be restricted from shipping to certain states/provinces and/or countries. It adds an interstitial check at the check out process and if any of the product(s) in a given order cannot be shipped to the shipping address, it will not allow the sale to go through, displays an error message to the user and returns them to their cart to adjust the contents therein.

E.g. I have a product that contains Widgets and Staples. California has a strict limitation on Widget imports, and South Dakota simply cannot allow the import of Staples. France allows neither Widgets, nor Staples. This module allows products that are made of these materials to be restricted from shipping to these states, and products containing either (or both) from shipping to France.

  1. Enable/configure Ubercart as needed for your site
  2. Configure the countrie(s) that can receive items: /admin/store/settings/countries
  3. Add a CCK field to the Product content type to store the material(s) values for products. This can be multi-value, and can store text, or numbers
  4. Under admin settings on /admin/store/settings/restrictshippingmaterial, select the CCK field in the product content type that stores Material information. Submit form.

Reference views

This module allows views to be used as formatters for CCK node and user reference fields.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only