• Beautiful plugin. Many thanks.

    I used this code to place it under the ‘add to cart’ button

    add_action( 'woocommerce_after_add_to_cart_button', 'insert_shortcode_trustpilot', 15 );

    function insert_shortcode_trustpilot() {
    $target_url = 'MY TRUSTPILOT URL';


    echo '<a href="' . esc_url($target_url) . '" target="_blank" rel="noopener noreferrer">';
    echo do_shortcode('[reviewkit_tp_micro_trustscore]');
    echo '</a>';

    }

You must be logged in to reply to this review.