Contact Payment Method

Issue tracker: view

Contrib type: 
Module
Status: 
Complete and working
Compatibility: 
Ubercart Beta 4
Latest version: 
5.x-1.1

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

AttachmentSize
uc_pm_contact-5.x-1.1.tar.gz1.23 KB