Advertisement
designbymerovingi

adjust sell content button

Jun 23rd, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. /**
  2. * Adjust Sell Content Button
  3. * @version 1.0
  4. */
  5. function mycred_pro_adjust_sell_content_button( $button, $post, $setup, $mycred ) {
  6.  
  7. $user_id = get_current_user_id();
  8. $price = mycred_get_content_price( $post->ID, $mycred->cred_id, $user_id );
  9.  
  10. $button_label = 'Download for %price% <i class="fa fa-download" aria-hidden="true"></i>';
  11. $button_label = str_replace( '%price%', $mycred->format_creds( $price ), $button_label );
  12.  
  13. return '<a href="#" class="mycred-buy-this-content-button" data-pid="' . $post->ID . '" data-type="' . $mycred->cred_id . '">' . $button_label . '</a>';
  14.  
  15. }
  16. add_filter( 'mycred_sell_this_button', 'mycred_pro_adjust_sell_content_button', 999, 4 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement