Home › Forums › Quform WordPress › Trying to find a way to displays uploaded image attachment in the post content
I’m setting up customize notification html email and trying to find a way to displays the uploaded image attachment in the post content?
I searched at the comment section and found this code: $upload = $form->getValue(‘iphorm_X_X’);
if (isset($upload[0][‘url’])) { $content .= ‘‘; }
But not really sure where should i put this code. Any help would be much appreciated. Thanks.
You don't have permission to view this content. Please log in or register and then verify your purchases to gain access.
Is this code still actual? I am using something like this:
<?php $upload = $form->getValue(‘quform_2_70’); if (isset($upload[0][‘url’])) { echo ‘‘; } ?>
and it’s not working.
I am trying to insert the image from the singnature field (created following the official instructions.)