Figured it out: @mandsconsulting!
In the Email_Before_Download_Shortcode
class, you need to change the $default_atts
array’s
delivered_as
key to delivery_format
so that the shortcode gets the correct default value (I have no idea why it’s not using delivered_as, but I added ‘delivery_format’ as an additional key identical to ‘delivered_as’ and it cleared the issue right up ?? )
For the rest of us, just add delivery_format="inline link"
to your shortcode while we’re waiting on a patch.
So @oskargomezmartin change your shortcode from something like:
[email-download download_id="1807" contact_form_id="1806"]
to something like
[email-download download_id="1807" contact_form_id="1806" delivery_format="inline link"]
Hope this helps!
-
This reply was modified 6 years, 10 months ago by cmborchert.