Guest User

Untitled

a guest
Sep 11th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. remove_action( 'woocommerce_after_shop_loop_item_title', 'pukka_woocommerce_after_shop_loop_item_content', 50);
  2.  
  3. add_action( 'woocommerce_after_shop_loop_item_title', 'child_woocommerce_after_shop_loop_item_content', 60);
  4. function pukka_woocommerce_after_shop_loop_item_content(){
  5. global $post;
  6. ?>
  7.  
  8. <div class="more-detail slide-detail">
  9. <div class="product-description text"><?php echo $post->post_content; ?></div>
  10. <div class="additional-links">
  11. <a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Details', 'pukka'); ?></a><a class="product-share" href="#"><?php _e('Share', 'pukka'); ?></a>
  12. </div>
  13. <?php if( function_exists('pukka_social_share') ){ pukka_social_share(); } ?>
  14. </div>
  15.  
  16. <?php
  17. }
Advertisement
Add Comment
Please, Sign In to add comment