Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. add_action( 'edd_format_amount_decimals', 'kjm_format_decimals' );
  2.  
  3. function kjm_format_decimals() {
  4. return 0;
  5. }
  6.  
  7. add_filter( 'edd_purchase_link_args', 'kjm_adjust_purchase_link_text' );
  8.  
  9. function kjm_adjust_purchase_link_text( $args ) {
  10. $download = new EDD_Download( $args['download_id'] );
  11. $option = edd_get_option( 'add_to_cart_text' );
  12. $price = edd_currency_filter( edd_format_amount( $download->price ) );
  13.  
  14. if ( ! $download->is_free( $args['price_id'] ) && ! $download->has_variable_prices() ) {
  15. $args['text'] = $option . ' for ' . $price;
  16. }
  17. return $args;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement