Hi,
When the website is loading, the window comes on top as open in a weird manner and then it becomes normal. I don’t want users to see that. Can you help me with this? How do I ensure that while the plugin is still loading it does not show up on the front end?
]]>Hi,
There was a discussion here 3 years ago regarding saving the details to database if there is an issue of receiving emails. Have you worked on that? Can you help me with that?
Thanks.
Regards,
Deepa
Hi ,
I am using slick contact form plugin in my site, few days ago it works very well, but currently not working. I am getting this error message “Error. Please try again.”.
slick contact form plugin version – 1.3.7
wordpress version – 3.9.9
plz help me out of this error. or suggest me another free plugin like this slick contact form plugin
Thank you,
Regards
hi
Why in Slick Contact Forms there is no CAPTCHA?
thanks
Slick Contact Forms not support url redirect for 2 or more different language?
I have multilanguage site and I can not create URLs to redirect the page to when the form submit is complete.
Current version, 1.3.7, doesn’t work over HTTPS as it tries to load JS and CSS files over HTTP. The fix is to replace the use of internal constants with plugins_url() as recommended. Here’s the patch:
1. Change in dcwp_slick_contact.php line 60 from:
return WP_PLUGIN_URL . '/slick-contact-forms';
to:
return plugins_url('', __FILE__);
2.Change in inc/dcwp_plugin_admin.php line 29 from:
wp_enqueue_style('dcwp_plugin_admin_dcscf_css', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname($this->filename)). '/css/admin.css');
to:
wp_enqueue_style('dcwp_plugin_admin_dcscf_css', dc_jqslickcontact::get_plugin_directory() . '/css/admin.css');
and line 37 from:
wp_enqueue_style('dcwp_plugin_admin_dcscf_jquery', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname($this->filename)). '/js/jquery.admin.js');
to:
wp_enqueue_script('dcwp_plugin_admin_dcscf_jquery', dc_jqslickcontact::get_plugin_directory() . '/js/jquery.admin.js');
3. Remove in inc/dcwp_admin.php the row 209:
add_action('init', array(&$this, 'my_init_method'));
and 240-252:
function my_init_method() {
if ( version_compare( get_bloginfo( 'version' ) , '3.0' , '<' ) && is_ssl() ) {
$wp_content_url = str_replace( 'https://' , 'https://' , get_option( 'siteurl' ) );
} else {
$wp_content_url = get_option( 'siteurl' );
}
$wp_content_url .= '/wp-content';
$wp_plugin_url = $wp_content_url . '/plugins';
wp_register_style('dcwp_plugin_admin_dcscf_css', $wp_plugin_url .'/slick-contact-forms/css/admin.css');
wp_enqueue_style('dcwp_plugin_admin_dcscf_css');
}
This patch fixes two other bugs as well. The removed lines added admin CSS style unnecessarily to all front end pages; a different piece of code already ensures the style is added to admin pages where it’s needed. Removing this speeds up every site that uses this plugin. The second one is that admin jQuery code was incorrectly enqueued as a style instead of a script.
]]>My errors which display on the form
Notice: Undefined variable: message in /wp-content/plugins/slick-contact-forms/slick_mail.php on line 84
Notice: Undefined index: wpmail in /wp-content/plugins/slick-contact-forms/inc/dcwp_admin.php on line 714
I don’t know when this broke but I’m not the only one .. there are others too. Is anybody home?
]]>Hi everyone! My emails are not being sent. I already tried to use
wp_mail() function but hasn’t worked also.. Any tips?
Thank you!
]]>Hi everyone!
I’m using slick contact form but there’s one tiny detail I’d like to improve. When the form box is expanded it is 4 or 5 pixels cropped as well is the “send” button. You can check it here https://novo.apogeris.pt/
Would you please help me with this issue?
Thank you in advance!
]]>I want to change the font of Text Heading in the Slick contact form. I tried using Html to change the size and make it bold. But it does not support html.
Please help.
Thank you for the plugin.
]]>I have need to build out some pages that I just don’t want the contact form to pop up on. I also tried to use an iframe of one of my pages and the contact form is there at the bottom, good, bad, or indifferent.
I found this code below and was wondering, if I knew the name of the jscript, would this work for our form?
Thanks
– Manny
I found this code on a site: https://www.slickrockweb.com/excluding-wordpress-plugin-helper-files.php
Excluding Plugin Related File on Certain WordPress Page
September 18th, 2013
By adding code snippets to your themes functions.php file you can remove the javascript and CSS from all pages that don’t use that particular wordpress plugin which makes your site load faster.
<<<Here is an example for the Contact 7 form wordpress plugin. This snippet removes the JS files.>>>
add_action( ‘wp_print_scripts’, ‘deregister_cf7_javascript’, 100 );
function deregister_cf7_javascript() {
if ( !is_page(100) ) {
wp_deregister_script( ‘contact-form-7’ );
}
}
<<<Remove Contact 7 css files>>>
add_action( ‘wp_print_styles’, ‘deregister_cf7_styles’, 100 );
function deregister_cf7_styles() {
if ( !is_page(100) ) {
wp_deregister_style( ‘contact-form-7’ );
}
}
Hi,
I want to add close button above form. When i click it it should slide in.
]]>Hey,
I have tried all the options to send a mail to admin.
But I am getting this error message “Error. Please try again.”.
please help me out.
My site is SSL enabled,
I am getting error in console
Blocked loading mixed active content “https://mysitename.com/wp-content/plugins/slick-contact-forms/js
its still seeking for http files, thats going issue..
Any solution?
]]>I had a display problem with the plugin that many other users seem to have had and all resolved questions from the developers seem to say its a problem with the Jquery from other plugins.
This didn’t make too much sense to me as the display was the issue, but even after uninstalling all plugins and trying various themes, I eventually had to go into the code and play around to fix the problem.
Solution:
My display problem was the comment input box had some weird jag below it almost like a half a input box (note: this was for the fly in version even though it happened on both types). Turns out the background image used had part of an input box drawn on it to make the inputs seem rounded. I removed the line that used that background image and it looks fine now.
Basically to fix minor issues use firebug to find the elements you need to work with and play around with the code (form.css in my case) until its fixed, but make sure to have a back up before hand. For sending issues check resolved questions or message the developers.
Its really weird because the plugin works on their site, but I have no idea why not so many WordPress installations. Oh well hope this helps you guys.
– MrJman
]]>great Plugin, But i have face one issue,When i open any page of my site slickform Glimpse shown, This happen on every page load,After page load every thing is ok,
]]>Hi everyone,
did anybody already tried to integrate a slick contact form with a CRM solution ?
Could you describe a little bit the process. Which template of the plugin do you need to edit ?
Is there eventually any way to insert a CF7 form in the window ?
Thanks for your help
]]>I have just installed Slick Contact Forms.
Self tested and i am not receiving any emails.
Selected the WP mail() send. Also receive no emails from my self test.
Is there an update or settings that I must configure?
]]>Please have a look at the widget.
the fields does not display up properly.
Please help very urgent………
Hi there,
First off, this plugin is a really good contact form out there. I got one issue that on my MAC OS X, after I filled out all the fields on the form and then clicked the ‘Submit’ button, it works perfectly.
However, on Windows OS, once I did the same method above, the contact form keep ‘Processing’, I don’t know what happened and I personally not familiar with those code at the moment.
If you guys could assist me, I will be really APPRECIATED!
Thanks!
]]>Can checkboxes be added to the form?
]]>Can the AJAX “Email Sent” message be changed so that more than one type of contact form can be used, with different “Thank You” messages? It would be nice if it was in the widget settings.
]]>The form seems to break starting 5 pixel rows below the Submit button. Then, after 5 more pixel rows in which the original page shows through, it continues with the bottom 10 pixels of the form. (Coraline theme)
]]>I would like to BCC one or two email addresses to messages sent from this form, is that possible? If so, how do I do this?
Thanks in advance for any help!
]]>Hi, It seems like the Slick contact forms cause a validation error by the official W3C validator. When I enter https://validator.w3.org/check?uri=fabienmischler.com&charset=%28detect+automatically%29&doctype=Inline&group=0 I get the error “Element div not allowed as child of element ul in this context. (Suppressing further errors from this subtree.)
” How can we fix this? I would need this for a school project and I need 0 errors as w3 validation. I can see that this DIV is created below a UL element. Thank you for your help! Lionel
As is established in the previous couple of support threads for Slick Contact Forms the plugin does not automatically switch to serving its files over https when it is used on pages where an ssl certificate is installed.
This means that the plugin will either not function properly if the users browser is set to automatically block files not served over https, or conversely display a warning icon in the address bar which states that there are unsecure resources being used on the page.
Neither of these two outcomes are acceptable.
I’m not actually using the plugin on the specific page of my site which uses ssl, but the plugins files are still being loaded. This is causing the aforementioned issues to arise.
To combat this I’m wanting to dequeue the offending files (form.css & the plugins skin file) for this particular page, as I would for any other plugin, but I can’t for the life of me find the handles for the relevant files to do so.
I can’t even find where/how these files have been enqueued?
Could you please advise what the necessary handles are for these files in order to achieve this?
Thanks
]]>I love the contact form and I used it really well until I used SSL, https://loggersrest.ocm.au
It still opens beautifully with https://loggersrest.com.au but if I try to open with https:// the form displays on the sidebar not as a sliding form.
Can you able to help, please?
I have had Slick Contact Forms running for some time with no problem but when I installed the WP Online Store plugin it miss-behaves on Store page.
It shows as slid out and the tab at the top is not where it should be. Also, it will not slide back in. It’s just sitting there on the side of the page. It continues to work on all other pages just fine.
I suspect it is a conflict in a call or function or something.
Any help is appreciated as I have to disable the contact form to be able to run my store.
And I love the slick contact form plugin by the way!
Thanks
]]>While I like the plugin itself, I’m more than a little irate after having spent the last week trying to find the source of an error causing Superfish menu not to function correctly with hoverIntent
The eventual source of the problem is the bundled version of hoverIntent R5 release in this plugin. WP already bundles R6 so you already risked causing problem and some plugins (like Superfish) are now moving to R7. Better to advise users on how to update hoverIntent themselves to prevent such conflict.
Easing is also a problem and not necessary anyhow given that later jQuery UI releases have made it redundant (thus the reason it hasn’t been in active development for years now). See this example on JQ UI site for clarification
jQuery Floater is not needed. I suggest you have a look a latest 2.1.4 Fancybox release for an example of using math to dynamically place the form field either as a floating element or modal layer.
The concept here is good but I would suggest a complete rewrite without all the conflicting elements. For now I’m going to have to hack the guts out of it and tie the form to Fancybox, much the way WooCommerce does to load the add review form
]]>Hi guys,
My contact form doesnt seem to be responding to any changes i make to it. It wont float or slide out, all that happens when i make changes to it in the widget CP is it stays in the same position. It stays open in the sidebar, instead of floating on the right/left
Any ideas?
]]>