updated plugin Easy Digital Downloads
version 3.1.1.2
This commit is contained in:
@ -484,7 +484,7 @@ function edd_tools_import_export_display() {
|
||||
<?php
|
||||
printf(
|
||||
__( 'Each column loaded from the CSV needs to be mapped to an order field. Select the column that should be mapped to each field below. Any columns not needed can be ignored. See <a href="%s" target="_blank">this guide</a> for assistance with importing payment records.', 'easy-digital-downloads' ),
|
||||
'https://docs.easydigitaldownloads.com/category/1337-importexport'
|
||||
'https://easydigitaldownloads.com/docs/importing-exporting-orders/'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
@ -799,7 +799,7 @@ function edd_tools_import_export_display() {
|
||||
<?php
|
||||
printf(
|
||||
__( 'Each column loaded from the CSV needs to be mapped to a Download product field. Select the column that should be mapped to each field below. Any columns not needed can be ignored. See <a href="%s" target="_blank">this guide</a> for assistance with importing Download products.', 'easy-digital-downloads' ),
|
||||
'https://docs.easydigitaldownloads.com/category/1337-importexport'
|
||||
'https://easydigitaldownloads.com/docs/importing-exporting-products/'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
@ -1278,6 +1278,7 @@ function edd_tools_sysinfo_display() {
|
||||
<p>
|
||||
<input type="hidden" name="edd-action" value="download_sysinfo"/>
|
||||
<?php
|
||||
wp_nonce_field( 'edd_download_system_info', 'edd_system_info' );
|
||||
submit_button( __( 'Download System Info File', 'easy-digital-downloads' ), 'primary', 'edd-download-sysinfo', false );
|
||||
submit_button( __( 'Copy to Clipboard', 'easy-digital-downloads' ), 'secondary edd-inline-button', 'edd-copy-system-info', false, array( 'onclick' => "this.form['edd-sysinfo'].focus();this.form['edd-sysinfo'].select();document.execCommand('copy');return false;" ) );
|
||||
?>
|
||||
@ -1414,7 +1415,11 @@ function edd_tools_sysinfo_get() {
|
||||
// EDD configuration
|
||||
$return .= "\n" . '-- EDD Configuration' . "\n\n";
|
||||
$return .= 'Version: ' . EDD_VERSION . "\n";
|
||||
$return .= 'Activated On: ' . edd_date_i18n( edd_get_activation_date(), 'Y-m-d' ) . "\n";
|
||||
$return .= 'Upgraded From: ' . get_option( 'edd_version_upgraded_from', 'None' ) . "\n";
|
||||
$return .= 'EDD (Pro) Status: ' . ( edd_is_pro() ? "Enabled\n" : "Disabled\n" );
|
||||
$return .= 'EDD (Pro) Activated On: ' . ( get_option( 'edd_pro_activation_date' ) ? edd_date_i18n( get_option( 'edd_pro_activation_date' ), 'Y-m-d' ) . "\n" : "N/A\n" );
|
||||
$return .= 'EDD Pass Status: ' . ( EDD\Admin\Pass_Manager::isPro() ? "Valid Pass\n" : "Missing\n" );
|
||||
$return .= 'Test Mode: ' . ( edd_is_test_mode() ? "Enabled\n" : "Disabled\n" );
|
||||
$return .= 'AJAX: ' . ( ! edd_is_ajax_disabled() ? "Enabled\n" : "Disabled\n" );
|
||||
$return .= 'Guest Checkout: ' . ( edd_no_guest_checkout() ? "Disabled\n" : "Enabled\n" );
|
||||
@ -1713,6 +1718,7 @@ function edd_tools_sysinfo_download() {
|
||||
if ( ! current_user_can( 'manage_shop_settings' ) ) {
|
||||
return;
|
||||
}
|
||||
check_admin_referer( 'edd_download_system_info', 'edd_system_info' );
|
||||
|
||||
nocache_headers();
|
||||
|
||||
|
Reference in New Issue
Block a user