Plugin Directory

Changeset 3373463


Ignore:
Timestamp:
10/06/2025 07:31:02 AM (5 months ago)
Author:
maximumsoftware
Message:

Deploy from Git

Location:
pdf-forms-for-contact-form-7/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pdf-forms-for-contact-form-7/trunk/js/admin.js

    r3321463 r3373463  
    1717   
    1818    var goToFormPanel = function() {
    19         jQuery('#form-panel-tab a')[0].click();
     19        // prior to CF7 6.1.2
     20        var link = jQuery('#form-panel-tab a')[0];
     21        if(link) { link.click(); return; }
     22        // CF7 6.1.2 and later
     23        jQuery('#form-panel-tab')[0].click();
    2024    };
    2125   
    2226    var goToPdfFormFillerPanel = function() {
    23         jQuery('#wpcf7-forms-panel-tab a')[0].click();
     27        // prior to CF7 6.1.2
     28        var link = jQuery('#wpcf7-forms-panel-tab a')[0];
     29        if(link) { link.click(); return; }
     30        // CF7 6.1.2 and later
     31        jQuery('#wpcf7-forms-panel-tab')[0].click();
    2432    };
    2533   
  • pdf-forms-for-contact-form-7/trunk/pdf-forms-for-contact-form-7.php

    r3321463 r3373463  
    44 * Plugin URI: https://pdfformsfiller.org/
    55 * Description: Build Contact Form 7 forms from PDF forms. Get PDFs auto-filled and attached to email messages and/or website responses on form submission.
    6  * Version: 2.2.3
     6 * Version: 2.2.4
    77 * Requires at least: 4.8
    88 * Requires PHP: 5.2
     
    2525    class WPCF7_Pdf_Forms
    2626    {
    27         const VERSION = '2.2.3';
     27        const VERSION = '2.2.4';
    2828        const MIN_WPCF7_VERSION = '5.0';
    2929        const MAX_WPCF7_VERSION = '6.1.99';
  • pdf-forms-for-contact-form-7/trunk/readme.txt

    r3321463 r3373463  
    11=== PDF Forms Filler for CF7 ===
    2 Version: 2.2.3
    3 Stable tag: 2.2.3
     2Version: 2.2.4
     3Stable tag: 2.2.4
    44Tested up to: 6.8
    55Tags: pdf, form, contact form, email, download
     
    4242Known problems:
    4343 * Some third party plugins may break the functionality of this plugin (see a list below). Try troubleshooting the problem by disabling likely plugins that may cause issues, such as plugins that modify WordPress or Contact Form 7 in radical ways.
    44  * Some image optimization plugins optimize PDFs and strip PDF forms from PDF files. This may cause your existing forms to break at a random point in the future (when PDF file cache times out at the API).
     44 * Some image optimization plugins optimize PDFs and strip PDF forms from PDF files. This may cause your existing forms to break.
    4545 * If you are still using the old version of the API (v1) or the old version of Enterprise Extension (v1), please note that resulting PDFs may not render properly in some PDF readers and with some UTF-8 (non-latin) characters, checkboxes and radio buttons.
    4646
     
    6767
    6868== Changelog ==
     69
     70= 2.2.4 =
     71
     72* Release date: October 6, 2025
     73
     74* Tested integration with CF7 v6.1.2
     75* Fixed CF7 v6.1.2 compatibility issue with panel tab switching
    6976
    7077= 2.2.3 =
Note: See TracChangeset for help on using the changeset viewer.