Changeset 2173798
- Timestamp:
- 10/15/2019 04:51:05 PM (6 years ago)
- Location:
- infusionsoft-landing-pages/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
infusionsoft-landing-pages/trunk/core.php
r2148089 r2173798 153 153 if (isset($page['embedCode']) && strlen($page['embedCode'])) { 154 154 ?> 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 163 171 die(); 164 172 } -
infusionsoft-landing-pages/trunk/index.php
r2148089 r2173798 3 3 * Plugin Name: Infusionsoft Landing Pages 4 4 * Plugin URI: https://www.infusionsoft.com/ 5 * Version: 1. 25 * Version: 1.3 6 6 * Description: Host multiple Infusionsoft Landing Pages in your WordPress site. 7 7 * Author: Infusionsoft & David Bullock … … 20 20 21 21 // This should be the same as the plugin version number in the header. 22 define('INFUSIONSOFT_ILP_PLUGIN_VERSION', '1. 2');22 define('INFUSIONSOFT_ILP_PLUGIN_VERSION', '1.3'); 23 23 24 24 require_once dirname(__FILE__) . '/core.php'; -
infusionsoft-landing-pages/trunk/readme.txt
r2148102 r2173798 1 1 === Infusionsoft Landing Pages === 2 Contributors: Infusionsoft 2 Contributors: Infusionsoft, arckinteractive, beck24 3 3 Tags: 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 4 4 Requires at least: 4.7.0 5 5 Tested up to: 5.2.2 6 6 Requires PHP: 5.3 7 Stable tag: 1. 27 Stable tag: 1.3 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 37 37 == Changelog == 38 38 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 39 48 = 1.0 = 40 49 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.