Link Software LLC
Forum Replies Created
-
Is this similar to the problem you posted about two months ago?
I’ll ask the same thing again:
Can you email me directly at [email protected], please? I have some questions about your set-up that probably isn’t best to discuss on a public forum. Thank you.
@goldtecgimmer65 Thank you for the kind review.
The GitHub repo was turned private after I took over the development of HTML Forms in May. Private repos are just how I prefer to work, and it’s been my method for developing WordPress plugins going back to the first one I released in 2017.
I discussed this with the previous developer first. He agreed with me that the repo wasn’t active enough to keep public. The ww.wp.xz.cn support forum, and email, should be sufficient.
One thing I did overlook during this change was the code snippets that were available to the public in the repo. So, to help rectify that, I’ve placed all of them on the public knowledge base available on the plugin’s website:
https://htmlformsplugin.com/kb/code-snippets/
Hopefully, when people see this post in the future, I’ll have that resource better organized.
Trust is something you earn with support and releases. So far, I’ve done my best to be active in this forum and put out bug fixes to the plugin. All while trying to make development play nice with my current workflow.
I’m marking this closed, for now. This seems to be an issue with a premium third-party plugin’s paid-only feature. I’m handling this privately with @jcsmithdesign through email. If this does directly involve White Label, and there is a viable solution, I’ll update this thread.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] 500 error using Mailchimp actionThis should be addressed in version 1.3.33.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Forms do nothing@samlinck Understood. That makes it tough for me to help. There are some old threads here on the forum where certain themes, and other third-party scripts/plugins caused interference. That might be the cause.
My hunch is that it’s particular to your setup. I’ve pushed out two updates recently, and this is the first I’m hearing of any issues like this.
I have another update coming soon. If I run into this issue myself, I’ll come back here with a reply. Otherwise, I’m not sure what I can do at the moment.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Forms do nothing@samlinck Do you have a URL I can take a look at? You can email me if you’d prefer: [email protected]
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] 500 error using Mailchimp action@frendeliko Thank you for the report. I’m going to have another minor release coming out soon. I’ll look into this more and address it in that upcoming version.
@asaaheim There are a few ways you could handle this.
There isn’t a specific filter hook for modifying the ID of the
<form>element, but you could use the generichf_form_htmlfilter.Here’s an example:
add_filter(
'hf_form_html',
function( $html ) {
$html = str_replace( '<form ', '<form id="my-id" ', $html );
return $html;
}
);There is a
hf_form_element_class_attrfilter hook for adding a CSS class to the form. You might find that useful and easier to use if your marketing system can handle class identifiers.Here’s an example:
add_filter(
'hf_form_element_class_attr',
function( $class_attr ) {
return $class_attr . ' my-class';
}
);You can learn more about the filter hooks in HTML Forms from the knowledge base. I’m hoping to update that page to be more informative soon.
Using the Additional Headers field, in the Send Email action, is the best way to set a proper reply to address. You can even use variables, for example:
Reply-To: [NAME] <[EMAIL]>
@biiissen was able to solve his issue this way. I’m going to close this and mark as resolved.
@ste9890 I’m so sorry for the late response. I recently took over development of the plugin, but the transfer process was delayed and overlapped with the timing of your post.
HTML Forms does support JavaScript events. You can learn more about that here:
https://www.htmlformsplugin.com/kb/javascript-events/
This might not get you all the way to what you want, but it’s a good place to start. Please let me know if you have any more questions. And, again, thank you for your patience.
Forum: Plugins
In reply to: [HTML Forms - Simple WordPress Forms Plugin] Email sender Contact Form@dariaamatuzzo Sorry for the delayed response to this. Do you have any third-party plugins or services controlling outgoing emails from your WordPress installation? If I understand your problem correctly, it’s possible the “From” address is being overwritten during the actual sending of the email.
@annaraiders This is something I’ve had on my to-do list for quite a while. I’m hoping to get a release out this summer, and I’ll look into making that an option in the settings.
Unfortunately, there aren’t any hooks set up right now for you to handle this on your own easily.
That’s a good idea. I recently took over the development of the plugin, so I’m building out a list of things to add to it and the Premium add-on. I’ll keep your idea in mind. Thank you for the suggestion.
@rghedin In the Submissions tabs, you can click on any entry’s Timestamp for a breakdown that includes the Referrer URL. That should get you want you need.