Plugin Directory

Changeset 3087766


Ignore:
Timestamp:
05/16/2024 12:09:48 PM (23 months ago)
Author:
funnelforms
Message:

Bugfixes 3.7.3

Location:
funnelforms-free
Files:
516 added
8 edited

Legend:

Unmodified
Added
Removed
  • funnelforms-free/trunk/Funnelforms-free.php

    r3047566 r3087766  
    99Text Domain: funnelforms-free
    1010Domain Path: /languages/
    11 Version: 3.7.2
     11Version: 3.7.3
    1212*/
    1313
  • funnelforms-free/trunk/admin/menus/physical_menus/Kontaktformularbuilder.php

    r2949463 r3087766  
    9191        $echo_content = array();
    9292
     93        // trim every field in Object $own_content but not mailtext
     94        foreach($own_content as $key => $value) {
     95            if($key != 'mailtext'
     96            && $key != 'cftitle'
     97            && $key != 'description'
     98            && $key != 'name'
     99            && $key != 'send_button'
     100            ) {
     101                if(!is_array($value)) {
     102                    $own_content[$key] = trim($value);   
     103                }
     104            }
     105        }
    93106
    94107        if(!isset($own_content['cftitle']) || empty($own_content['cftitle'])) {
  • funnelforms-free/trunk/admin/menus/physical_menus/Kontaktformularbuilder_settings.php

    r2986938 r3087766  
    6363        $echo_content = array();
    6464
     65        // trim every field in Object $own_content but not mailtext
     66        foreach($own_content as $key => $value) {
     67            if($key != 'mailtext'
     68            && $key != 'cftitle'
     69            && $key != 'description'
     70            && $key != 'name'
     71            && $key != 'send_button'
     72            ) {
     73                if(!is_array($value)) {
     74                    $own_content[$key] = trim($value);   
     75                }
     76            }
     77        }
    6578
    6679        if(!isset($own_content['cftitle']) || empty($own_content['cftitle'])) {
  • funnelforms-free/trunk/misc/constants.php

    r3047566 r3087766  
    146146
    147147// Other constants
    148 define( 'FNSF_AF2_FINAL_VERSION', '3.7.2' );
     148define( 'FNSF_AF2_FINAL_VERSION', '3.7.3' );
    149149define( 'FNSF_AF2_MENU_ICON_URL', plugins_url("/res/images/menu_icon.png", AF2F_PLUGIN) );
    150150define( 'FNSF_AF2_OPENAI_IMAGE_URL', plugins_url("/res/images/openai.png", AF2F_PLUGIN) );
  • funnelforms-free/trunk/readme.txt

    r3047566 r3087766  
    1 === High Converting Contact Form and Multi Step Form Builder with Drag & Drop Editor - Funnelforms Free ===
     1=== Interactive Contact Form and Multi Step Form Builder with Drag & Drop Editor - Funnelforms Free ===
    22Contributors: Funnelforms
    33Tags: multi step form, contact form, quiz, form, funnel
     
    55Tested up to: 6.4.2
    66Requires PHP: 7.4
    7 Stable tag: 3.7.2
     7Stable tag: 3.7.3
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    246246== Changelog ==
    247247
     248= 3.7.3 - 15. May 2024 =
     249* Bugfixes
     250* UX improvements
     251
    248252= 3.7.2 - 08. March 2024 =
    249253* Bugfixes
  • funnelforms-free/trunk/res/frontend/styles/frontend.css

    r3035528 r3087766  
    5252         url('../../../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
    5353    font-weight: 600;
     54}
     55
     56.af2_form_progress_bar {
     57    flex: 1;
     58}
     59
     60.af2_form_button {
     61    white-space: break-spaces;
    5462}
    5563
  • funnelforms-free/trunk/res/frontend/styles/frontend_no_media.css

    r3035528 r3087766  
    5252         url('../../../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
    5353    font-weight: 600;
     54}
     55
     56.af2_form_progress_bar {
     57    flex: 1;
     58}
     59
     60.af2_form_button {
     61    white-space: break-spaces;
    5462}
    5563
  • funnelforms-free/trunk/res/frontend/styles/frontend_preview.css

    r3035528 r3087766  
    5353         url('../../../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
    5454    font-weight: 600;
     55}
     56
     57.af2_form_progress_bar {
     58    flex: 1;
     59}
     60
     61.af2_form_button {
     62    white-space: break-spaces;
    5563}
    5664
Note: See TracChangeset for help on using the changeset viewer.