Setting up Google Recaptcha with Mobius Forms - 2sxc

I'm trying to create a reasonably simple Mobious Form to gather new client information for a counselling service.
I want to implement Recaptcha, but I'm not getting very far. It points me to Global Settings, and I'm assuming I have to create some custom settings, but I've got not idea what settings to create, or then how to implement the recaptcha in the form. Some pointers to some up to date doco would be really helpful, if any exist.

These are very normal settings in each form:
You won't see the recaptcha, as V3 of Recaptcha can be made invisible ;)

Related

How to fix reCaptcha in Wordpress?

I have a WP site that is getting a lot of spams lately.
I have added firewall (plugins) to help combat this.
But then decided to add an extra layer of protection (since the firewall is not working fully) by adding recaptcha.
When I tried using V3, the contact form (7) doesnt work.
Upon using the v2,it works.
But I found out that the spams are coming from a multi-step contact form, wherein I ask the user to add their email, their requirments, etc.
PS: Adding a screenshot of the contact form code for better understanding
enter image description here
I tried adding the [recaptcha] shortcode on the final step, but it doesnt work.
Do you know how to fix this issue so the form can have recaptcha, and hence, less spams?
Ever since Contact Form 7 version 5.1. The developer decided that ReCaptcha V3 was the best method to use. I personally disagree with this, and his forcing users to switch.
If you add this plugin ReCaptcha v2 for Contact Form 7 then you'll be able to configure the [recaptcha] form tag to work as it used to, and it will be the "I am not a robot" checkbox.

Custom Google Form? Example of Google Form API?

I'm trying to make a google form look like my own site. I found examples of how to do this on How to style Google Forms and google-custom-form (GitHub project), but I tried both of the examples they give and they seem to fail now.
I had a look at Class Form - Google Apps Script which seems to be like an API, but I can't get my head around the documentation. Does anyone have an example of it working. Or has found another way of getting this to work? It would be really handy to do as embedded forms look really out of sync with the rest of the site.
The API you're linking to is an apps script API. This is needed if you want to create dynamic forms (dynamic amount of questions, dynamic answers,...) but not for custom styling. An intro to appscript can be found on this page: https://developers.google.com/apps-script/
You could just create a form manually on https://www.google.com/forms/about/
You can change the styling and colors in the top-right of the page. When you are ready to embed the form on your own page you have to press "SEND", an select the embed icon <> at the top.
I've worked with this a ton, and still have issues with it. Been learning the new api v4 for sheets but still having trouble, it is still in beta too. For now I can recommend this solution though by heaversm on github.
https://github.com/heaversm/google-custom-form
The example fully works as long as you find the entry.xxxxxxx for each field and replace in the appropriate js. To avoid the embed issues, give your form submit on a click function that has the event as the input and then preventDefault on the event like so:
$('#submit-button').on('click', function(event){
event.preventDefault();
// continue code from heaversm
});
Hope this works for you. Cheers

Acces to LinkedIn API for Apply Now button

I'm trying to add an 'Apply by LinkedIn' button to my website. I realise the plugin was deprecatad and am trying to use the JS SDK to create this. What I currently have in place (as documented here) will allow me to sign in to my account, however, the documentation doesn't go any further. How is the user to apply for a specific position, should this be referenced in the url somewhere?
Also, I've submitted the application to access the API but have heard nothing back after 9 days.
Any feedback appreciated,
Thanks :)

Paypal Subscription with Initial Payment

I am working with a customer to setup a paypal button to allow them to charge a customer an initial setup fee and then a monthly subscription. I am rather new to this, so I am looking for the best way to do this as I didn't see anything that seemed to stick out in the documentation on developer.paypal.com for this scenario. Do I use the restful api or classic api? The site is built in .Net, so if you also have any information to this as well, that would be appreciated. Now I am not looking for code, but just a nudge in the right direction so I can find out all the information I need to do this right. Thanks.
Wade
You can use a Payments Standard Subscription button for this. They're pretty simple to create and add to the site. They can be created through a PayPal account or from your own custom HTML form.
The PayPal button code is just a an HTML form so you shouldn't have a problem adding it to your customer's site. Here are some details on Subscription buttons:
https://developer.paypal.com/webapps/developer/docs/classic/paypal-payments-standard/integration-guide/subscribe_buttons/
I wouldn't recommend using an API but if you want to learn more about them you can look around on Developer.PayPal.com

How do I allow users to display LinkedIn profiles on my site?

I have a site (using PHP and JavaScript with jQuery) which allows users to display a profile, and I would like them to have the option of simply importing their LinkedIn profile, if they have one, rather than having to type everything in again.
I'm not sure what the best approach is here... I've read some of the LinkedIn API documentation, but I'm not even really sure which bit I need to look at.
The process should be:
User goes to profile management page
User is shown a checkbox saying "use my LinkedIn profile", and a textarea. If they don't want to type their profile into the checkbox, they check the checkbox, and somehow their Linked In profile is retrieved.
The LinkedIn profile is stored (or some kind of id is stored), so that the profile can be retrieved by anyone else at any time.
I'm not very familiar with the LinkedIn API, or with the site itself, so I'm not even sure what's possible. Does this sound possible, and if so, where do I start?
You can start with the User Profile tutorial here:
http://developer.linkedinlabs.com/tutorials/jsapi_profile/
The example uses jquery so it should be pretty easy for you to extend this to do what you want.

Resources