PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 2.7.3
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v2.7.3
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
← All changes | freemius/templates/forms/resend-key.php +5 -2 1.3.2 → 2.7.3 View file →
@@ -53,9 +53,12 @@
53 53 </div>
54 54 HTML;
55 55 }
56 56
57 - $message_above_input_field = fs_esc_html_inline( "Enter the email address you've used for the upgrade below and we will resend you the license key.", 'ask-for-upgrade-email-address', $slug );
57 + $message_above_input_field = $fs->is_only_premium() ?
58 + fs_esc_html_inline( "Enter the email address you've used during the purchase and we will resend you the license key.", 'ask-for-upgrade-email-address-premium-only', $slug ) :
59 + fs_esc_html_inline( "Enter the email address you've used for the upgrade below and we will resend you the license key.", 'ask-for-upgrade-email-address', $slug );
60 +
58 61 $modal_content_html = <<< HTML
59 62 <div class="notice notice-error inline license-resend-message"><p></p></div>
60 63 <p>{$message_above_input_field}</p>
61 64 <div class="input-container">
@@ -141,9 +144,9 @@
141 144 return;
142 145 }
143 146
144 147 $.ajax({
145 - url : ajaxurl,
148 + url : <?php echo Freemius::ajax_url() ?>,
146 149 method : 'POST',
147 150 data : {
148 151 action : '<?php echo $fs->get_ajax_action( 'resend_license_key' ) ?>',
149 152 security : '<?php echo $fs->get_ajax_security( 'resend_license_key' ) ?>',