TiffanyZ Posted February 16, 2022 Posted February 16, 2022 Hello, Is there a possibility to insert a field where customers can upload documents (like jpg, pdf, doc(x) etc.) in a form? (So the customer can showcase what he/she is requesting) This is the current solution but I prefer to receive a file directly. webbroi 1
tuanphan Posted February 18, 2022 Posted February 18, 2022 You can add an upload fields into Form with these guides https://www.squarewebsites.org/blog/squarespace-websites-uploaderhttps://kerstinmartin.com/blog/file-upload webbroi and sayreambrosio 2 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
helenolivia Posted September 25, 2023 Posted September 25, 2023 Hey @tuanphan, thank you for sharing the above tips. I used Kerstin's walkthrough and everything works great. The only thing I found is that for the below step, it opens this pseudo button as a new tab on mobile. Is there a way to have it open as a smaller pop-up on the phone? Copy and paste the following string into the Label field: Upload File <a href="DROPBOX URL" target="popup" onclick="window.open('DROPBOX URL','popup','width=600,height=600'); return false;">UPLOAD</a>
tuanphan Posted September 27, 2023 Posted September 27, 2023 On 9/26/2023 at 5:00 AM, helenolivia said: Hey @tuanphan, thank you for sharing the above tips. I used Kerstin's walkthrough and everything works great. The only thing I found is that for the below step, it opens this pseudo button as a new tab on mobile. Is there a way to have it open as a smaller pop-up on the phone? Copy and paste the following string into the Label field: Upload File <a href="DROPBOX URL" target="popup" onclick="window.open('DROPBOX URL','popup','width=600,height=600'); return false;">UPLOAD</a> I'm not sure I can help with this, but if you share link to page where you use form, I can take a look Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
helenolivia Posted September 27, 2023 Posted September 27, 2023 Oh yes, here's the page: https://www.alumamedicalaesthetics.com/join-the-girl-gang It'll be the form at the very bottom, "Let's Connect". I want to make the "Upload Resume" button open as a pop-up on the phone. It's currently opening up as a new tab. On desktop, it works good!
tuanphan Posted December 22, 2023 Posted December 22, 2023 On 9/28/2023 at 4:38 AM, helenolivia said: Oh yes, here's the page: https://www.alumamedicalaesthetics.com/join-the-girl-gang It'll be the form at the very bottom, "Let's Connect". I want to make the "Upload Resume" button open as a pop-up on the phone. It's currently opening up as a new tab. On desktop, it works good! Try adding this code to bottom of Code Injection > Footer <script> jQuery(document).ready(function($){ if (jQuery(window).width() < 767) { $('a.upload').attr('target','_self'); } }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment