Changeset 3395504
- Timestamp:
- 11/14/2025 06:10:15 AM (4 weeks ago)
- Location:
- icegram-rainmaker/trunk
- Files:
-
- 2 added
- 2 deleted
- 4 edited
-
icegram-rainmaker.php (modified) (2 diffs)
-
lite/assets/images/bfcm-collect-free-pro-banner-2024.png (deleted)
-
lite/assets/images/bfcm-collect-free-pro-banner-2025.png (added)
-
lite/assets/images/bfcm-common-max-banner-2024.jpg (deleted)
-
lite/assets/images/bfcm-common-max-banner-2025.png (added)
-
lite/classes/class-icegram-rainmaker.php (modified) (2 diffs)
-
lite/classes/rm-offer.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
icegram-rainmaker/trunk/icegram-rainmaker.php
r3286137 r3395504 4 4 * Plugin URI: http://www.icegram.com/addons/icegram-rainmaker/ 5 5 * Description: The complete solution to create simple forms and collect leads 6 * Version: 1.3. 196 * Version: 1.3.20 7 7 * Tested up to: 6.8 8 8 * Author: icegram … … 131 131 132 132 if ( ! defined( 'IG_RM_PLUGIN_VERSION' ) ) { 133 define( 'IG_RM_PLUGIN_VERSION', '1.3. 19' );133 define( 'IG_RM_PLUGIN_VERSION', '1.3.20' ); 134 134 } 135 135 -
icegram-rainmaker/trunk/lite/classes/class-icegram-rainmaker.php
r3188554 r3395504 239 239 update_option( $option_name . '_icegram', 'yes', false ); 240 240 241 if ( 'rm_offer_bfcm_202 4' === $option_name ) {242 $url = "https://www.icegram.com/rainmaker-pricing-table/?utm_source=in_app&utm_medium=rm_banner&utm_campaign=offer_bfcm_202 4";241 if ( 'rm_offer_bfcm_2025' === $option_name ) { 242 $url = "https://www.icegram.com/rainmaker-pricing-table/?utm_source=in_app&utm_medium=rm_banner&utm_campaign=offer_bfcm_2025"; 243 243 header( "Location: {$url}" ); 244 244 exit(); … … 1649 1649 1650 1650 if ( 'bfcm' === $offer_name ) { 1651 $offer_start_time = strtotime( '202 4-11-2612:30:00' ); // Offer start time in IST1652 $offer_end_time = strtotime( '202 4-12-05 12:30:00' ); // Offer end time in ISTsdf1651 $offer_start_time = strtotime( '2025-11-14 12:30:00' ); // Offer start time in IST 1652 $offer_end_time = strtotime( '2025-12-05 12:30:00' ); // Offer end time in IST 1653 1653 } 1654 1654 -
icegram-rainmaker/trunk/lite/classes/rm-offer.php
r3188554 r3395504 1 1 <?php 2 2 global $icegram_rainmaker; 3 // BFCM 202 2Campaign4 if ( ( get_option( 'rm_offer_bfcm_202 4_icegram' ) !== 'yes' ) && Rainmaker::is_offer_period( 'bfcm') ) {5 $img_url = $this->plugin_url . '../assets/images/bfcm-collect-free-pro-banner-202 4.png';3 // BFCM 2025 Campaign 4 if ( ( get_option( 'rm_offer_bfcm_2025_icegram' ) !== 'yes' ) && Rainmaker::is_offer_period( 'bfcm') ) { 5 $img_url = $this->plugin_url . '../assets/images/bfcm-collect-free-pro-banner-2025.png'; 6 6 $ig_rm_plan = $icegram_rainmaker->get_plan(); 7 7 if( 'max' === $ig_rm_plan ){ 8 $img_url = $this->plugin_url .'../assets/images/bfcm-common-max-banner-202 4.jpg';8 $img_url = $this->plugin_url .'../assets/images/bfcm-common-max-banner-2025.png'; 9 9 } 10 10 //elseif( 'plus' === $ig_rm_plan || 'pro' === $ig_rm_plan ){ … … 22 22 </style> 23 23 <div class="ig_rm_offer"> 24 <a target="_blank" href="?rm_dismiss_admin_notice=1&rm_option_name=rm_offer_bfcm_202 4"><img style="margin:0 auto" src="<?php echo $img_url; ?>"/></a>24 <a target="_blank" href="?rm_dismiss_admin_notice=1&rm_option_name=rm_offer_bfcm_2025"><img style="margin:0 auto" src="<?php echo $img_url; ?>"/></a> 25 25 </div> 26 26 <?php } ?> -
icegram-rainmaker/trunk/readme.txt
r3286137 r3395504 6 6 Requires PHP: 5.5 7 7 Tested up to: 6.8 8 Stable tag: 1.3. 198 Stable tag: 1.3.20 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 166 166 == Upgrade Notice == 167 167 168 **1.3.20** 169 170 * Update: UI/UX improvements 171 172 == Changelog == 173 174 **1.3.20** 175 176 * Update: UI/UX improvements 177 168 178 **1.3.19** 169 179 … … 172 182 * Fix: Fixed issue where the MailChimp "Verify API Key" button didn't work for existing forms 173 183 174 == Changelog ==175 176 **1.3.19**177 178 * Update: WordPress 6.8 compatibility check179 * Fix: Added missing authorization and nonce checks [Thanks to the Patchstack team]180 * Fix: Fixed issue where the MailChimp "Verify API Key" button didn't work for existing forms181 182 184 **1.3.18** 183 185
Note: See TracChangeset
for help on using the changeset viewer.