Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- remove_action( 'woocommerce_after_shop_loop_item_title', 'pukka_woocommerce_after_shop_loop_item_content', 50);
- add_action( 'woocommerce_after_shop_loop_item_title', 'child_woocommerce_after_shop_loop_item_content', 60);
- function pukka_woocommerce_after_shop_loop_item_content(){
- global $post;
- ?>
- <div class="more-detail slide-detail">
- <div class="product-description text"><?php echo $post->post_content; ?></div>
- <div class="additional-links">
- <a class="read-more" href="<?php the_permalink(); ?>"><?php _e('Details', 'pukka'); ?></a><a class="product-share" href="#"><?php _e('Share', 'pukka'); ?></a>
- </div>
- <?php if( function_exists('pukka_social_share') ){ pukka_social_share(); } ?>
- </div>
- <?php
- }
Advertisement
Add Comment
Please, Sign In to add comment