Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. define( 'TORETDIR', plugin_dir_path( __FILE__ ) );
  3.  
  4. add_filter( 'woocommerce_locate_template', 'toret_locate_template', 10, 3 );
  5. function toret_locate_template( $template, $template_name, $template_path ) {
  6.  
  7. if ( $template_name == 'price.php' ){
  8. $template = TORETDIR . 'price.php';
  9. }
  10. return $template;
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement