Advertisement
jmlapam

Untitled

Feb 6th, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. remove_action('woocommerce_single_product_summary','woocommerce_template_single_title',5);
  3. add_action('woocommerce_single_product_summary', 'woo_change_title',5);
  4.  
  5. function woo_change_title() {
  6. ?>
  7. <h1><span><?php the_title(); ?></span></h1>
  8. <?php
  9. }
  10.  
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement