Get PDF URL (Not entire Shortcode)

WooCommerce
November 02, 2021 09:29:01
PGK37
Topics: 1
Messages: 1
Hello

Is it possible to only retrieve the URL to a PDF and not the entire "shortcode" that generates the "Download" link?
Like this for example:

---------------

<?php
// GET URL FONCTION
global $product;
$id = $product->get_id();
$dataset_id = $id;
$pdf_path = do_shortcode('[e2pdf-download id="1" dataset="'.$dataset_id.'" apply="true"]');
?>


<a href="<?php echo $pdf_path; ?>" title="Télécharger la fiche technique" class="btn btn-outline-light btn-sm"><i class="far fa-file-pdf"></i> Fiche technique</a>

-------------

Thanks for your help

November 02, 2021 11:51:26
E2Pdf
Topics: 7
Messages: 3617
Support
Hi,

Yes, it's possible. You must use "output" attribute as:

$pdf_path = do_shortcode('[e2pdf-download id="1" dataset="'.$dataset_id.'" output="url"]');

or direct shortcode as

[e2pdf-download id="1" output="url"]

P.S. In case if you will need to send this URL to some other API and not output directly as it's showed in your example - you will need to define "esc_url_raw" attribute as by default entities (&) will be encoded:

$pdf_path = do_shortcode('[e2pdf-download id="1" dataset="'.$dataset_id.'" output="url" esc_url_raw="true"]');

We remain at your service.

We would really appreciate your feedback at WordPress.org!
Get News and Updates
Our monthly newsletter keeps you in the loop, so you'll always be up to date with the latest news and updates about E2Pdf.
* You can update your email subscription preferences here.
All trademarks, service marks, trade names, product names, and logos appearing on this website are the property of their respective owners. The use of trademarks such as Formidable Forms®, Forminator Forms®, Gravity Forms®, JetFormBuilder®, WordPress®, WooCommerce®, WPForms® and others is solely for identification purposes (nominative use) and does not imply any affiliation, sponsorship, or endorsement by the respective trademark holders.
© 2017 - 2026, https://e2pdf.com

We use cookies to collect and analyse information on site performance and usage, to provide social media features and to enhance and customise content and advertisements. By clicking "Accept Selected", you consent to use of selected cookies according to our Cookie Policy.