Changeset 2140397
- Timestamp:
- 08/16/2019 07:14:06 AM (7 years ago)
- Location:
- freshmail-integration/trunk
- Files:
-
- 4 edited
-
CHANGELOG.md (modified) (1 diff)
-
src/Plugin/Newsletter/Freshmail.php (modified) (2 diffs)
-
templates/shortcode.php (modified) (1 diff)
-
wp-freshmail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
freshmail-integration/trunk/CHANGELOG.md
r2127193 r2140397 1 1 ### Changelog 2 - 2.3.1 - 2019-08-13 3 * Fix: Close button on shortcode 4 2 5 - 2.3 - 2019-06-04 3 6 * Add: Contact Form 7 messages -
freshmail-integration/trunk/src/Plugin/Newsletter/Freshmail.php
r2127193 r2140397 458 458 } 459 459 460 public function shortcode($fmFormId) 461 { 460 public function shortcode($fmFormId, $popup) 461 { 462 462 463 ob_start(); 463 464 global $wpdb; … … 485 486 $buttonHovered = $freshmailForm['appearance']['button_hovered']; 486 487 $errorSuccess = $freshmailForm['appearance']['error_success']; 488 if(isset($fmFormId['in_popup'])){ 489 $in_popup = $fmFormId['in_popup']; 490 } 487 491 488 492 if ($freshmailForm['redirection'] != 'no' && empty($fmFormId['redirect'])) { -
freshmail-integration/trunk/templates/shortcode.php
r2127193 r2140397 4 4 <div class="freshMailPopUp__container"> 5 5 <div class="freshMailPopUp__body" style="max-width:<?php echo $formContainer['width'].$formContainer['width2']; ?>;" > 6 <div id="freshMailPopUp__close"></div> 6 <?php if(isset($in_popup) AND $in_popup == true){ ?> 7 <div id="freshMailPopUp__close"></div> 8 <?php } ?> 7 9 <div style="<?php echo 'background-color: '.$formContainer['background_color'].';border:'.$formContainer['border_width'].'px solid '.$formContainer['border_color'].';border-radius:'.$formContainer['rounded_corners'].'px; padding: '.$formContainer['padding1'].'px '.$formContainer['padding2'].'px;'; ?>overflow:hidden;" id="fm_form_<?php echo $fmFormId['id']; ?>"> 8 10 <div class="form_container"> -
freshmail-integration/trunk/wp-freshmail.php
r2127193 r2140397 4 4 * Plugin URI: http://freshmail.com/plugin/wordpress-newsletter/ 5 5 * Description: FreshMail is an email marketing tool for creating and sending amazing newsletters. Our intuitive system leads users from campaign planning and creation to final reports. A free account lets you send up to 2000 messages to a maximum of 500 recipients each month. 6 * Version: 2.3 6 * Version: 2.3.1 7 7 * Author: Borbis Media 8 8 * Author URI: http://www.borbis.com
Note: See TracChangeset
for help on using the changeset viewer.