mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
40 lines
1.6 KiB
Text
40 lines
1.6 KiB
Text
function edd_library_variable_price_dropdown() {
|
|
function shoestrap_edd_purchase_variable_pricing( $download_id ) {
|
|
$variable_pricing = edd_has_variable_prices( $download_id );
|
|
|
|
if ( ! $variable_pricing )
|
|
return;
|
|
|
|
$prices = apply_filters( 'edd_purchase_variable_prices', edd_get_variable_prices( $download_id ), $download_id );
|
|
|
|
$type = edd_single_price_option_mode( $download_id ) ? 'checkbox' : 'radio';
|
|
|
|
do_action( 'edd_before_price_options', $download_id );
|
|
|
|
echo '<div class="edd_price_options">';
|
|
if ( $prices ) {
|
|
echo '<select name="edd_options[price_id][]">';
|
|
foreach ( $prices as $key => $price ) {
|
|
printf(
|
|
'<option for="%3$s" name="edd_options[price_id][]" id="%3$s" class="%4$s" value="%5$s" %7$s> %6$s</option>',
|
|
checked( 0, $key, false ),
|
|
$type,
|
|
esc_attr( 'edd_price_option_' . $download_id . '_' . $key ),
|
|
esc_attr( 'edd_price_option_' . $download_id ),
|
|
esc_attr( $key ),
|
|
esc_html( $price['name'] . ' - ' . edd_currency_filter( edd_format_amount( $price[ 'amount' ] ) ) ),
|
|
selected( isset( $_GET['price_option'] ), $key, false )
|
|
);
|
|
do_action( 'edd_after_price_option', $key, $price, $download_id );
|
|
}
|
|
echo '</select>';
|
|
}
|
|
do_action( 'edd_after_price_options_list', $download_id, $prices, $type );
|
|
|
|
echo '</div><!--end .edd_price_options-->';
|
|
do_action( 'edd_after_price_options', $download_id );
|
|
}
|
|
add_action( 'edd_purchase_link_top', 'shoestrap_edd_purchase_variable_pricing', 10, 1 );
|
|
remove_action( 'edd_purchase_link_top', 'edd_purchase_variable_pricing', 10, 2 );
|
|
}
|
|
add_action( 'plugins_loaded', 'edd_library_variable_price_dropdown', 20 );
|