You appear to be a bot. Output may be restricted
Description
Display the oik EDD apikey request form
The "order_code" is the EDD Purchase Key e.g. 81f7967016e086609293285a081bde56 (32 chars) The Email is the email address on the initial order The Name is a combination of First and Last names – case sensitive Administrators can find the Purchase Key using the Payment History page
Usage
_oik_edd_apikey_show_form( $fields, $apikey );
Parameters
- $fields
- ( mixed ) required –
- $apikey
- ( mixed ) required –
Returns
void
Source
File name: oik-edd/shortcodes/oik-edd.php
Lines:
1 to 13 of 13
function _oik_edd_apikey_show_form( $fields, $apikey ) { bw_trace2(); bw_form(); oik_edd_report_errors( $apikey ); e( ihidden( "fields[type]", $fields['type'] )); stag( 'table', "oik_edd_apikey" ); bw_textfield_arr( "fields", "Purchase key", $fields, 'order_code', 32, null, "required" ); bw_emailfield_arr( "fields", "Email", $fields, 'email', 40, null, "required" ); bw_textfield_arr( "fields", "Name", $fields, 'name', 40, null, "required" ); etag( "table" ); e( "<input type=\"submit\" name=\"_oik_edd_apikey_ok\" value=\"Request API key\" />" ); etag( "form" ); }