Title: coding error in voucher attachment path
Last modified: November 30, 2022

---

# coding error in voucher attachment path

 *  [infosha](https://wordpress.org/support/users/infosha/)
 * (@infosha)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/coding-error-in-voucher-attachment-path/)
 * classes\voucher.php
    line 137 $attachments[1] = $upload_dir.’/voucherpdfuploads/’.
   $**voucher_options**->voucherpdf_link.’-receipt.pdf’; actually needs to be $attachments[
   1] = $upload_dir.’/voucherpdfuploads/’.$**result**->voucherpdf_link.’-receipt.
   pdf’;
 * Im not a PHP guy, so not sure how null value will be compared as empty string
   
   but you might want to change line 129 $email = ($result->shipping_email != ”)?
   $result->shipping_email:$result->email;
 * to
    $email = $result->email; if (null != $result->shipping_email) { $email = 
   $result->shipping_email; }

Viewing 1 replies (of 1 total)

 *  Plugin Author [Codemenschen](https://wordpress.org/support/users/codemenschen/)
 * (@codemenschen)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/coding-error-in-voucher-attachment-path/#post-16250892)
 * Hi [@infosha](https://wordpress.org/support/users/infosha/) ,
    Thanks for your
   information, Team will check it Asap, thanks!

Viewing 1 replies (of 1 total)

The topic ‘coding error in voucher attachment path’ is closed to new replies.

 * ![](https://ps.w.org/gift-voucher/assets/icon-256x256.png?rev=2433083)
 * [Gift Cards (Gift Vouchers and Packages) (WooCommerce Supported)](https://wordpress.org/plugins/gift-voucher/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gift-voucher/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gift-voucher/)
 * [Active Topics](https://wordpress.org/support/plugin/gift-voucher/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gift-voucher/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gift-voucher/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Codemenschen](https://wordpress.org/support/users/codemenschen/)
 * Last activity: [3 years, 6 months ago](https://wordpress.org/support/topic/coding-error-in-voucher-attachment-path/#post-16250892)
 * Status: not resolved