Last active
December 8, 2023 16:29
-
-
Save SirDarcanos/86bf17beab6b90cedfb07823fc12677c to your computer and use it in GitHub Desktop.
Adding a PDF Catalog for Your Store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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