Guest User

Untitled

a guest
Dec 18th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function woocommerce_actions() {
  2. // Remove excerpt from product view
  3. remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
  4.  
  5. // Optionally add it elsewhere
  6. add_action( 'woocommerce_before_shop_loop', 'woocommerce_template_single_excerpt', 20 );
  7.  
  8. // or hook your own function
  9. add_action( 'woocommerce_single_product_summary', 'custom_template_single_excerpt', 20 );
  10. }
  11. add_action( 'wp_head', 'woocommerce_actions' );
  12.  
  13. function customer_template_single_excerpt() {
  14. return _e( "My custom excerpt", "custom-theme" );
  15. }
Add Comment
Please, Sign In to add comment