Skip to content

Instantly share code, notes, and snippets.

@SiR-DanieL
Last active December 8, 2023 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiR-DanieL/86bf17beab6b90cedfb07823fc12677c to your computer and use it in GitHub Desktop.
Save SiR-DanieL/86bf17beab6b90cedfb07823fc12677c to your computer and use it in GitHub Desktop.
Adding a PDF Catalog for Your Store
<?php
add_action( 'woocommerce_single_product_summary', 'custom_pdf_catalog_download_button' );
function custom_pdf_catalog_download_button() {
return do_shortcode( '[wc-store-catalog-pdf]' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment