Plugin Directory

Changeset 3078692


Ignore:
Timestamp:
04/29/2024 12:29:32 PM (2 years ago)
Author:
mailcamp
Message:

Device and email client field checks removed

Location:
mailcamp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mailcamp/trunk/README.txt

    r3041438 r3078692  
    55Requires at least: 4.9.1
    66Tested up to: 6.3.3
    7 Stable tag: 1.5.16
     7Stable tag: 1.5.17
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2222This section describes how to install the plugin and get started using it.
    2323
    24 = Version 1.5.16 =
     24= Version 1.5.17 =
    25251. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    26262. Activate the plugin through the **Plugins** menu in WordPress
     
    3131
    3232== Changelog ==
     33
     34== 1.5.17 ==
     35* improved - removed checks for device and email client custom fields
    3336
    3437== 1.5.16 ==
  • mailcamp/trunk/admin/class-mailcamp-admin.php

    r2965335 r3078692  
    509509                } else {
    510510                    $list_fields = [];
    511                 }
    512 
    513                 foreach ( $list_fields as $key => $value ) {
    514                     if ( in_array( strtolower( $value->name ), [ 'device', 'email client' ] ) ) {
    515                         unset( $list_fields[ $key ] );
    516                     }
    517511                }
    518512
     
    870864                    }
    871865
    872                     foreach ($list_fields as $key => $value) {
    873 
    874                         if (in_array(strtolower($value->name), ['device', 'email client'])) {
    875                             unset($list_fields[$key]);
    876                         }
    877                     }
    878 
    879866                    update_option('mailcamp_options_wc_fields', $list_fields);
    880867
  • mailcamp/trunk/mailcamp.php

    r3041438 r3078692  
    1414 * Plugin URI:        https://mailcamp.nl/ecommerce/koppel-wordpress-plugin-aan-mailinglijst-in-mailcamp/
    1515 * Description:       MailCamp form plugin. A simple plugin that adds a highly effective subscription form to your site.
    16  * Version:           1.5.16
     16 * Version:           1.5.17
    1717 * Author:            Silas de Rooy
    1818 * Author URI:        https://mailcamp.nl
     
    3333 * Rename this for your plugin and update it as you release new versions.
    3434 */
    35 define('MAILCAMP_VERSION', '1.5.16');
     35define('MAILCAMP_VERSION', '1.5.17');
    3636/**
    3737 * The code that runs during plugin activation.
  • mailcamp/trunk/readme.md

    r3041438 r3078692  
    55Requires at least: 4.9.1
    66Tested up to: 6.3.3
    7 Stable tag: 1.5.16
     7Stable tag: 1.5.17
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2121This section describes how to install the plugin and get started using it.
    2222
    23 = Version 1.5.16 =
     23= Version 1.5.17 =
    24241. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    25252. Activate the plugin through the **Plugins** menu in WordPress
     
    3030
    3131## Changelog ##
     32
     33### 1.5.17 ###
     34* improved - removed checks for device and email client custom fields
    3235
    3336### 1.5.16 ###
Note: See TracChangeset for help on using the changeset viewer.