Plugin Directory

Changeset 2173798


Ignore:
Timestamp:
10/15/2019 04:51:05 PM (6 years ago)
Author:
Infusionsoft
Message:

update for v1.3

Location:
infusionsoft-landing-pages/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • infusionsoft-landing-pages/trunk/core.php

    r2148089 r2173798  
    153153            if (isset($page['embedCode']) && strlen($page['embedCode'])) {
    154154                ?>
    155                     <style>
    156                         body {
    157                             margin: 0;
    158                             padding: 0;
    159                         }
    160                     </style>
    161                 <?php
    162                 echo $page['embedCode'];
     155<html>
     156    <head>
     157        <meta name="viewport" content="width=device-width,initial-scale=1">
     158
     159        <style>
     160            body {
     161                margin: 0;
     162                padding: 0;
     163            }
     164        </style>
     165    </head>
     166    <body>
     167        <?= $page['embedCode'] ?>
     168    </body>
     169</html>
     170            <?php
    163171                die();
    164172            }
  • infusionsoft-landing-pages/trunk/index.php

    r2148089 r2173798  
    33 * Plugin Name: Infusionsoft Landing Pages
    44 * Plugin URI: https://www.infusionsoft.com/
    5  * Version: 1.2
     5 * Version: 1.3
    66 * Description: Host multiple Infusionsoft Landing Pages in your WordPress site.
    77 * Author: Infusionsoft & David Bullock
     
    2020
    2121// This should be the same as the plugin version number in the header.
    22 define('INFUSIONSOFT_ILP_PLUGIN_VERSION', '1.2');
     22define('INFUSIONSOFT_ILP_PLUGIN_VERSION', '1.3');
    2323
    2424require_once dirname(__FILE__) . '/core.php';
  • infusionsoft-landing-pages/trunk/readme.txt

    r2148102 r2173798  
    11=== Infusionsoft Landing Pages ===
    2 Contributors: Infusionsoft
     2Contributors: Infusionsoft, arckinteractive, beck24
    33Tags: infusionsoft, infusionsoft wordpress, wordpress landing page plugin, wordpress subscription plugin, responsive landing page subscription plugin, list builder, page builder, inbound marketing, landing page, email list building, subscribers, opt-in
    44Requires at least: 4.7.0
    55Tested up to: 5.2.2
    66Requires PHP: 5.3
    7 Stable tag: 1.2
     7Stable tag: 1.3
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3737== Changelog ==
    3838
     39= 1.3 =
     40* Add viewport metatag to allow mobile views in rendered landing pages
     41
     42= 1.2 =
     43* Update to use Landing pages API for fetching form options
     44
     45= 1.1 =
     46* various bugfixes
     47
    3948= 1.0 =
    4049* Initial release
Note: See TracChangeset for help on using the changeset viewer.