WordPress - Click download link to display popup form - html

Our website is currently being created on WordPress, and we will soon have a large resource centre for PDF downloads. We need to be able to capture user data before customers download the PDF files - however we need to keep the forms hidden and only display the download title, before clicking on the link.
Is there a plugin or some code already created that can do the following:
Using download monitor (or another plugin), add an extra checkbox field labelled 'Request a form'
If the 'Request a form' checkbox is ticked, when a user clicks on that download link, an overlay form will appear
Once they've filled in the form details their download will automatically be emailed to them.
Any help would be much appreciated, or any other suggestions!

Looking for the same thing, any progress? Im looking for the same Form to Download Link protection, for each link to a download file to pop-up a contact form before you can download.

Related

Canva.com, how can I have opend link in new tab

I am training to add links to my Canva project.
But I need links which one opens in new browser tab. Is anyone knows how to do this?
To link to another website page, enter the link, and press Enter on your keyboard or click anywhere on the editor.
To link to another page within the design, select the page you want to link to from the Pages in this document section in the dropdown.
To link to one of your recent designs, select it from the Recent section in the dropdown. Make sure have the right permissions to the design you’re linking to so it loads properly to your audience.

Unregistered user login for wordpress

Is there a way where we can login as a subscriber/customer in a wordpress website? I have developed a website for a client of mine. It's a club & hotel management website & they have 6000 members registered. We have login of all 6000 members in an SQL database & I want to use that SQL database for user login(besides usage of mysql).
Let me know if there's a possibility to achieve this.
Thanks.
Here are the steps to provide a customized login experience for your subscribers. It may be a long process, but it would work easily:
First thing you need to do is install and activate the WPForms plugin.
Upon activation, you need to visit WPForms » Settings page to enter your license key. You can get this license key from your account on WPForms website.
After verification, you need to head over to WPForms » Addons page.
Click on the Install Addon button.
Visit WPForms » Add New page. This will launch WPForms’ form builder.
You need to enter a form name and then from ‘Select a Template’ section click on ‘User Registration Form’ template.
Add new fields you want to add from the left panel as well as customize the order of existing fields by using a simple drag and drop interface.
Once you are done adding the fields, click on the ‘Settings’ menu on the left and then select the ‘User Registration’ tab.
Click on the save button at the top right corner of the screen to save your form settings.
Simply create a new WordPress page or edit an existing page that you would like to use as registration page.
On the page edit screen, you will notice the ‘Add Form’ button. Clicking on it will bring up a popup where you can select the user registration form you just created.
Click on the ‘Add Form button’ and you will notice a WPForms shortcode will appear in the post editor.
You can now save or publish your page. Visit the page in a new browser tab to see your custom user registration page in action.
Visit WPForms » Add New page. This will launch the Form Builder interface of WPForms. You need to provide a name for your custom login form and then select ‘User Login Form’ as your template.
Next you need to click on the settings tab and then click on ‘Confirmation’ tab. This is where you can define what to do after a successful login.
You can show users a message, redirect them to the page they came from, or redirect them to any other page on your site.
Click on the Save button and now You can add your custom login form to a page by creating a new page and then clicking on the Add Form button.

HTML5 Banner using Google Web Designer

I have create a html5 banner using Google Web Designer following pretty much all the guidelines (https://support.google.com/webdesigner/answer/3261498?hl=en&ref_topic=3261495&rd=1).
I published it locally and uploaded to google adwords campaign as an Image add. In my banner there is a simple form for the user to enter basic details and submit it. So i have just one event on submit button. All good so far. After i uploaded the banner to google adwords, when i tested the banner the whole banner is clickable for some reason. Somehow google is appending a click event on the whole banner.
But according to docs (https://support.google.com/adwordspolicy/answer/176108?hl=en)
"HTML5 ads that are not created in Google Web Designer are, by
default, clickable on the entire area of the ad."
I used google web designer for this specific reason still i see the entire area clickable. Any ideas or suggestions or references would be great.
Thanks.
In Code view, add a higher z-index to the submit button so that it sits above the exit element.
I published it locally and uploaded to google adwords campaign as an Image add.
I think you should try to find a way to not upload as an Image Ad.
Google Adwords requires an exit/destination URL when you upload an ad on their platform disregarding what type of ad you upload.
That URL is assigned to your whole ad.
What you need is DoubleClick account. DoubleClick for advertisers will allow you specific button exits/destination URLs.

is Facebook app approval required for share link app_id?

I am looking to customize the Facebook share button with a custom website icon (the 16x16 one) when a user opens the dialog window to share an article. As I understand, it requires a Facebook app_id and then setting the icon in the app_id settings.
My question is, does the Facebook app need to be sent to "approval" for this to work? Or is that only required for actual apps that are used on Facebook? Because what I am doing is not an actual app, I just need the icon customized that users will see when they post something. Would it work just going from sandbox to live without submitting to approval?

How to find out the link of an element id

I am trying to make a youtube downloader. This works via the webbrowser , so for example the user types in the link of the youtube video in my textbox1 and the webbrowser redirects to "mp4.ee" and inserts the link and then it automatically clicks download. However once you click download on mp4.ee, another download button appears. And here lies my problem, if I click on the second download link it will ask me to save the file however I want to find out the link of the second download button since I want my program to download the file automatically with it's downloader.
My codes:
Code to insert link into mp4.ee and press download:
WebBrowser1.Document.GetElementById("Form").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("Button").InvokeMember("click")
Application.DoEvents()
With this code it click the second download button which then asks you to save the file however I want to find out the link this button contains in string format:
WebBrowser1.Document.GetElementById("PopupWindowButton").InvokeMember("click")
You can use JQUERY.
$("#Form").val(""+value); //get value
$("#Button").click(function() // event click of button
{});
see this try.jquery.com functions