• Hi there

    How do I apply like button to woocommerce shop page and product page?

    Please advice thanks

Viewing 1 replies (of 1 total)
  • Thread Starter sinzero

    (@sinzero)

    I try this maybe ok?

    remove_action( ‘woocommerce_shop_loop_item_title’, ‘woocommerce_template_loop_product_title’, 10 );
    add_action( ‘woocommerce_shop_loop_item_title’, ‘woo_pws_template_loop_product_title’, 10 );

    if ( ! function_exists( ‘woo_pws_template_loop_product_title’ ) ) {
    function woo_pws_template_loop_product_title() {
    ?>
    <h2 class=”woocommerce-loop-product__title”><?php the_title()?></h2>
    <?php
    echo do_shortcode( ‘[wp_ulike]’ );
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘How do I apply this plugin to the archive page?’ is closed to new replies.