There is a problem with the contructor:
function Widget_CF7() {
$widget_ops = array( ‘description’ => __( “Widget for Contact Form 7”) );
$this->WP_Widget(‘custom_cf7’, __(‘Contact Form 7’), $widget_ops);
}
Please change it to:
function __construct() {
$widget_ops = array( ‘description’ => __( “Widget for Contact Form 7”) );
$this->WP_Widget(‘custom_cf7’, __(‘Contact Form 7’), $widget_ops);
}
function Widget_CF7() {
self::__construct();
}
Index: contact-form-7-widget.php
===================================================================
--- contact-form-7-widget.php
+++ contact-form-7-widget.php
@@ -10,9 +10,9 @@
class WP_Widget_Custom_CF7 extends WP_Widget {
- function WP_Widget_Custom_CF7() {
+ function __construct() {
$widget_ops = array( 'description' => __( "Display any form from Contact Forms 7") );
- $this->WP_Widget('custom_cf7', __('Contact Form 7'), $widget_ops);
+ parent::__construct('custom_cf7', __('Contact Form 7'), $widget_ops);
}
function widget( $args, $instance ) {
]]>
Since updating my customer’s website to the latest version, the CAPTCHA no longer works… but only in IE v11 browser. It works FINE on all pages, just NOT in the Widget.
For obvious reasons, I cannot post the URL here. If you can be contacted directly, I can give you temporary access so you can see for yourself.
Please help?
]]>I have 5 contact forms, but only 3 ever display in the widget dropdown when configuring. Is this a bug or a limitation?
]]>Hi there and thanks for your plugin!
I can’t seem to be able to make Special mail tags work. They work fine for the contact forms used in the content, but nor for the widget.
Can you please help?
Thanks!
Hi how do I change the colour of the submit button when it is in the footer as a widget?
Thanks,
Robyn
]]>It would be great if this enqueued the proper JS so that the form submitted dynamically.
]]>I like the contact form 7 widget, but when using with a responsive template, the mobile size sidebar widget shows the text fields going past the right hand margin. Is there a way to change the width of the text fields to make sure this doesn’t happen?
]]>