Plugin Directory

Changeset 723973


Ignore:
Timestamp:
06/07/2013 01:12:08 PM (13 years ago)
Author:
signalfade
Message:

Deprecation notice

Location:
ngp-donations/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ngp-donations/trunk/ngp-donations.php

    r701798 r723973  
    44    Plugin URI: http://revolutionmessaging.com/code/ngp-donations/
    55    Description: Integrate NGP donation forms with your site
    6     Version: 0.2.8
     6    Version: 0.2.9
    77    Author: Revolution Messaging
    88    Author URI: http://revolutionmessaging.com
     
    2222    // 'forms' => $GLOBALS['wpdb']->prefix . 'ngp_forms',
    2323    // 'database_version' => '0.1',
    24     'version' => '0.2.8'
     24    'version' => '0.2.9'
    2525);
    2626
  • ngp-donations/trunk/readme.txt

    r701798 r723973  
    44Requires at least: 3.0.0
    55Tested up to: 3.5.1
    6 Stable tag: 0.2.8
     6Stable tag: 0.2.9
    77
    8 Integrate NGP (NGP VAN) donation forms with your site. You'll need an SSL certificate running on your site if you want to use this.
     8This plugin has been deprecated in favor of the wider-ranging [NGP Forms](http://wordpress.org/plugins/ngp-forms/)
    99
    1010== Description ==
    1111
    12 This plugin helps you integrate NGP (NGP VAN) donation forms with your site. You'll need an SSL certificate running on your site if you want to use this.
    13 
    14 This plugin is built and maintained by [Revolution Messaging, LLC](http://revolutionmessaging.com) and uses the New Media Campaigns' NGP API class.
    15 
    16 = Alert! =
    17 
    18 You should be running your site under an SSL certificate if you utilize this plugin.
    19 
    20 == Installation ==
    21 
    22 Go to `Settings -> General` and fill out the "NGP API Key", "Donation Support Phone Line", and "Addt'l Information for Donation Footer" fields.
    23 
    24 "NGP API Key" is how this plugin authenticates with your NGP VAN service. You need to make sure the API Credentials string you get from NGP is for the "CWP" API.
    25 
    26 "Thanks for Contributing URL" is where the contributor is sent after a successful contribution.
    27 
    28 "NGP Secure URL" is used if you need to specify a different secure URL than the site might have already been configured to use (for instance, your SSL cert is for donate.yourdomain.com, which points at your Wordpress site, but the site also loads under www.yourdomain.com).
    29 
    30 "Donation Support Phone Line" is shown with the error message when the contribution gets rejected by the NGP VAN server.
    31 
    32 "Addt'l Information for Donation Footer" might be used for listing things like donation mailing address, donation limits, taxable status of donations, etc.
    33 
    34 "Check to accept Amex" is a checkbox that, when checked, causes the American Express options for card-type to show up on the front-end.
    35 
    36 If you want to work in a dev environment, use ".dev" as the TLD (We develop in virtual hosts on our developer machines. Edit /etc/hosts to add a .dev url). When this plugin is live, it forces SSL. Make sure `$_SERVER['HTTPS']` is set, valid and "on".
    37 
    38 == Suggested jQuery ==
    39 
    40 We use the following on our donation pages to make sure that the user understands that the radio buttons and the input field are for the same thing. If the user doesn't support javascript and the custom field holds a value, it always overrides whatever's selected in the radio buttons.
    41 
    42     $('.ngp_custom_dollar_amt').keyup(function() {
    43         if($(this).val()!='') { $('.Amount').attr('checked', false); }
    44     });
    45     $('.Amount').mouseup(function() {
    46         $('.ngp_custom_dollar_amt').val('');
    47     });
    48 
    49 == Usage ==
    50 
    51 Place this short tag on the appropriate page or article:
    52 
    53 `[ngp_show_form]`
    54 
    55 You can set custom amounts for the donation amount in two ways:
    56 
    57 1. Put the amounts in the embed tag: `[ngp_show_form amounts="50,250,1000"]`
    58 2. Put the amounts in a GET querystring: `http://mycamapign.com/donation?amounts=50,250,1000`
    59 
    60 If you want to have a default donation amounts, put them in the embed tag and then override it with a querystring amounts when you need to.
    61 
    62 You can source an article in two ways:
    63 
    64 1. Put source in the embed tag: `[ngp_show_form source="hard-hitting-ad"]`
    65 2. Put the source in a GET querystring: `http://mycamapign.com/donation?source=hard-hitting-ad`
    66 
    67 If you want to have a default donation source, put it in the embed tag and then override it with a querystring source when you need to.
    68 
    69 == Changelog ==
    70 
    71 = 0.2.8 =
    72 * Rewrote the prefix, suffix, and other name stuff...again.
    73 
    74 = 0.2.7 =
    75 * Added in even more name checks for Prefix, Suffix, middle names, and other name stuff...
    76 
    77 = 0.2.6 =
    78 * show_form shortcode returns rather than echoes.
    79 
    80 = 0.2.5 =
    81 * Fixed error in 0.2.4 release.
    82 
    83 = 0.2.4 =
    84 * Custom donation amounts via embed attibute or querystring
    85 * Custom source via embed attibute or querystring
    86 * Added Amex option & image
    87 * Made simple `<b>`, `<i>`, and `<u>` tags work in "Addt'l Information for Donation Footer".
    88 
    89 = 0.2.3 =
    90 * Line Breaks (`\r\n`) are now seen as breaks (`<br />`) in "Addt'l Information for Donation Footer"
    91 
    92 = 0.2.2 =
    93 * Fixed the custom amount error issue.
    94 * Added in a ziptastic call to get City & State when not asking for them (but present as a hidden field).
    95 
    96 = 0.2.1 =
    97 * Wanted an error message for all the simple stuff (non-processing errors) at the top of the form.
    98 
    99 = 0.2 =
    100 * We had some problems where some themes happened to be writing headers early so the "Thanks" redirect would get blocked. This is fixed.
    101 * "Full Name" wasn't being checked properly so that an error message could be prepended.
    102 
    103 = 0.1 =
    104 * First version. Works perfectly, not as featureful on the configuration side, though.
     12This plugin has been deprecated in favor of the wider-ranging [NGP Forms](http://wordpress.org/plugins/ngp-forms/)
Note: See TracChangeset for help on using the changeset viewer.