Advertisement
designbymerovingi

replace buyCRED stripe script

Feb 6th, 2017
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. /**
  2.  * Replace buyCRED Stripe
  3.  * @version 1.0
  4.  */
  5. function mycred_pro_replace_stripe_script( $stripe_js ) {
  6.  
  7.     wp_deregister_script( 'buycred-stripe' );
  8.     wp_register_script( 'buycred-stripe', get_template_directory_uri() . '/your-file.js', array( 'stripe-checkout' ), '1.0' );
  9.  
  10.     return $stripe_js;
  11.  
  12. }
  13. add_filter( 'mycred_buycred_stripe_js', 'mycred_pro_replace_stripe_script' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement