brilliantplugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Support for Google Click ID (GCLID)It should be possible, but it’s difficult to troubleshoot something I can’t see.
If it works with the Salesforce form, it should work with the plugin form. There’s nothing special about the plugin form (other than the auto prefixed field names).
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Anti-spam integrationsAs the plugin doesn’t presently store any data in WordPress, Akismet and similar solutions don’t work well as false positives would mean lost data and there’s no way to train it using the past entry data.
If we add entry storage in the future, we’d certainly look at Akismet or similar integration.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Support for Google Click ID (GCLID)You can create a hidden field that is mapped to a Saleforce custom field, then fill that with the gclid via JS using this approach.
Note that your field name (in the DOM) will likely be
sf_gclid__cdue to prefacing by the plugin and the suffix added by Salesforce. It may vary based on what you named it in Salesforce.e.g. Assuming the field is named
gclidin SF which makes the API namegclid__c:window.onload = function() { document.getElementById('sf_gclid__c').value = readCookie('gclid'); }- This reply was modified 4 years, 1 month ago by brilliantplugins.
- This reply was modified 4 years, 1 month ago by brilliantplugins.
Then I’d suggest you use a general purpose form plugin and only connect certain forms to Salesforce.
This is not the plugin you’re looking for.
- This reply was modified 4 years, 1 month ago by brilliantplugins.
The entire point of this plugin is to send data to Salesforce, so I’m not sure why you’d not want to do that (the data would be lost if not stored or sent elsewhere). If you want a general purpose form plugin, there are many far better than this one.
But, if you look at the filters in the readme, you’ll see that you can filter (see
salesforce_w2l_post_data) the data sent by the form just before it’s sent to Salesforce. Returning an empty string there would cause the plugin to not send any data.Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Bugs with Success Message and EmailsIf these were bugs, they’d happen consistently.
As these are the first reports of any of these in recent memory, they are not likely bugs. They may be conflicts with a plugin or theme in your install.
If you can provide steps to reproduce any of these we’d be happy to take a look.
Virtual / In-personis not a valid field name… for any web form, but especially for a Salesforce form. Hint: The field’s API name likely ends in__c— if not, you don’t have the right name yet. It certainly won’t have spaces or slashes in it.I suspect if you fix that that will fix the immediate error — and the form will submit.
If it truly is a picklist though, it won’t work yet — read the FAQ about how pick lists require the internal SF id for the value, not the human readable value — and then it may actually work.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Wrong Return URLThe plugin uses an anchor to keep the form onscreen.
To attempt to keep it on screen. Some themes do funny things with anchors/scrolling and that doesn’t work.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Wrong Return URLThe plugin uses an anchor to keep the form onscreen.
It sounds like the JS redirect to your thank you page is never firing… or it’s not even being output… I don’t see it in the code.
Can you post a screenshot of your form settings?
Note: the built in captcha is deprecated and does not likely block any meaningful spam. Use recaptcha if you want to block spam.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Bug: Required InputsThe plugin does server side validation, but I’ll add this to the backlog.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Why has this been abandoned?Yeah, I’ve been meaning to do that. Done.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Why has this been abandoned?Yes, the plugin is stable and hasn’t required any updates. We have some new features in a dev branch, but releases always trigger support requests, so I’ve been waiting for a quiet moment to push them out…
I think you have the wrong plugin. This is not a gravity form add-on and does not support file uploads at all.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Success doesn’t work on submissionUnfortunately the plugin does not support multiple instances of a form on the same page.
Essentially, the first form on the page thinks it’s the form, so it handles the submission data — if that’s the pop-up… which is hidden, the redirect likely won’t fire.
If you want to do this, clone the form so you have 2 different form IDs (one for the pop-up and one for the footer).
Let us know if that clears up the issue.
- This reply was modified 4 years, 4 months ago by brilliantplugins.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Success doesn’t work on submissionMost of the time that’s due to a JS error on the page, or possible a CSP blocking inline scripts.
The plugin uses a <script> tag for the redirect (yeah, I know, but refactoring to do PHP redirects is a big lift).
That’s about all I can say without seeing the form itself.