Shortcode
Yes, this plugin has a shortcode. Maybe you'd like to integrate it somewhere like a quickview, hey even the shop page, or maybe in an Elementor page, why not. So, to do this easily you can use the plugin shortcode [shareprintpdf]
.
For instance if you'd like to integrate the shortcode in your Shop page, add the following code to your child theme functions.php
.
add_action( 'woocommerce_after_shop_loop_item_title', 'add_share_print_pdf_to_shop' );
function add_share_print_pdf_to_shop() {
echo do_shortcode('[shareprintpdf]');
}