87 lines
5.0 KiB
PHP
87 lines
5.0 KiB
PHP
<?php
|
|
/**
|
|
* Contextual Help
|
|
*
|
|
* @package EDD
|
|
* @subpackage Admin/Discounts
|
|
* @copyright Copyright (c) 2018, Easy Digital Downloads, LLC
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
|
* @since 1.2.3
|
|
*/
|
|
|
|
use EDD\Admin\Pass_Manager;
|
|
|
|
// Exit if accessed directly
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Adds the Contextual Help for the Discount Codes Page
|
|
*
|
|
* @since 1.3
|
|
* @return void
|
|
*/
|
|
function edd_discounts_contextual_help() {
|
|
$screen = get_current_screen();
|
|
|
|
$pass_manager = new Pass_Manager();
|
|
if ( $pass_manager->isFree() ) {
|
|
$docs_url = edd_link_helper(
|
|
'https://easydigitaldownloads.com/docs/',
|
|
array(
|
|
'utm_medium' => 'discounts-contextual-help',
|
|
'utm_content' => 'documentation',
|
|
)
|
|
);
|
|
|
|
$upgrade_url = edd_link_helper(
|
|
'https://easydigitaldownloads.com/lite-upgrade/',
|
|
array(
|
|
'utm_medium' => 'discounts-contextual-help',
|
|
'utm_content' => 'lite-upgrade',
|
|
)
|
|
);
|
|
$screen->set_help_sidebar(
|
|
'<p><strong>' . __( 'For more information:', 'easy-digital-downloads' ) . '</strong></p>' .
|
|
'<p>' . sprintf( __( 'Visit the <a href="%s">documentation</a> on the Easy Digital Downloads website.', 'easy-digital-downloads' ), $docs_url ) . '</p>' .
|
|
'<p>' . sprintf(
|
|
__( 'Need more from your Easy Digital Downloads store? <a href="%s">Upgrade Now</a>!', 'easy-digital-downloads' ),
|
|
$upgrade_url
|
|
) . '</p>'
|
|
);
|
|
}
|
|
|
|
$screen->add_help_tab( array(
|
|
'id' => 'edd-discount-general',
|
|
'title' => __( 'General', 'easy-digital-downloads' ),
|
|
'content' =>
|
|
'<p>' . __( 'Discount codes allow you to offer buyers special discounts by having them enter predefined codes during checkout.', 'easy-digital-downloads' ) . '</p>' .
|
|
'<p>' . __( 'Discount codes that are set to "inactive" cannot be redeemed.', 'easy-digital-downloads' ) . '</p>' .
|
|
'<p>' . __( 'Discount codes can be setup to only be used only one time by each customer. If a customer attempts to use a code a second time, they will be given an error.', 'easy-digital-downloads' ) . '</p>' .
|
|
'<p>' . __( 'Discount codes that have already been used cannot be deleted for data integrity and reporting purposes.', 'easy-digital-downloads' ) . '</p>'
|
|
) );
|
|
|
|
$screen->add_help_tab( array(
|
|
'id' => 'edd-discount-add',
|
|
'title' => __( 'Adding Discounts', 'easy-digital-downloads' ),
|
|
'content' =>
|
|
'<p>' . __( 'You can create any number of discount codes easily from this page.', 'easy-digital-downloads' ) . '</p>' .
|
|
'<p>' . __( 'Discount codes have several options:', 'easy-digital-downloads' ) . '</p>' .
|
|
'<ul>'.
|
|
'<li>' . __( '<strong>Name</strong> - this is the name given to the discount. Used primarily for administrative purposes.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Code</strong> - this is the unique code that customers will enter during checkout to redeem the code.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Type</strong> - this is the type of discount this code awards.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Amount</strong> - this is the discount amount provided by this code. For percentage based discounts, enter a number such as 70 for 70%. Do not enter a percent sign.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Requirements</strong> - this allows you to select the product(s) that are required to be purchased in order for a discount to be applied.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Condition</strong> - this lets you set whether all selected products must be in the cart, or just a minimum of one.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Apply discount only to selected Downloads?</strong> - If this box is checked, only the prices of the required products will be discounted. If left unchecked, the discount will apply to all products in the cart.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Start Date</strong> - this is the date that this code becomes available. If a customer attempts to redeem the code prior to this date, they will be given an error. This is optional.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Expiration Date</strong> - this is the end date for the discount. After this date, the code will no longer be able to be used. This is optional.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Minimum Amount</strong> - this is the minimum purchase amount required to use this code. If a customer has less than this amount in their cart, they will be given an error. This is optional.', 'easy-digital-downloads' ) . '</li>' .
|
|
'<li>' . __( '<strong>Max Uses</strong> - this is the maximum number of times this discount can be redeemed. Once this number is reached, no more customers will be allowed to use it.', 'easy-digital-downloads' ) . '</li>' .
|
|
'</ul>'
|
|
) );
|
|
|
|
do_action( 'edd_discounts_contextual_help', $screen );
|
|
}
|
|
add_action( 'load-download_page_edd-discounts', 'edd_discounts_contextual_help' );
|