Contact Payment Method

Contrib type: 
Module
Status: 
Complete and working

Downloads

Latest version: 
5.x-1.1
Compatibility: 
Ubercart 1.x

Adds a simple "We'll contact you" payment method, so that customers may choose to let the store contact them to confirm payment details.

The store administrator(s) can define a message that is displayed to the user in the checkout and order review pages.

It also creates a token called [pm-contact-details] that will be replaced with the message (useful for invoices). I use this code in the customer invoice:

<?php if ($order->payment_method == 'contact') { ?>
              <tr>
                <td nowrap="nowrap" valign="top">
                  <b><?php echo t('Details:'); ?></b>
                </td>
                <td width="98%">
                  [pm-contact-details]
                </td>
              </tr>
<?php } ?>

Changelog:
5.x-1.1
- Removes extraneous table

5.x-1.0
- Initial release


PreviewAttachmentSize
uc_pm_contact-5.x-1.1.tar.gz1.23 KB
edufk's picture
Offline
Joined: 01/04/2011
Juice: 7
Re: Contact Payment Method

Hi, I'm working with a website using Ubercart and the client asked me to have a payment method like this one, the only think is that I'm using Drupal 6, is this module compatible? or is there a module for Drupal 6 that do the same as this module?

Thanks