Version Description
- Fix: Update plugin bypassing cache when fetching customer forms
- Fix: Fix US help tab iframe URL
- Tweak: Update
SelectControl
label toGoDaddy Email Marketing Form
- Tweak: Update strings in Russian translation file. @props beebeatle
Download this release
Release Info
Developer | Godaddy |
Plugin | GoDaddy Email Marketing |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- godaddy-email-marketing.php +2 -2
- includes/class-blocks.php +1 -1
- includes/settings.php +3 -1
- languages/godaddy-email-marketing-sign-up-forms-da_DK.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-de_DE.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-el.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-es_ES.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-es_MX.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-fi.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-fr_FR.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-hi_IN.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-id_ID.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-it_IT.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-ja.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-ko_KR.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-mr.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-ms_MY.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-nb_NO.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-nl_NL.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-pl_PL.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-pt_BR.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-pt_PT.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-ru_RU.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-sv_SE.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-th.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-tl.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-tr_TR.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-uk.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-vi.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-zh_CN.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-zh_HK.mo +0 -0
- languages/godaddy-email-marketing-sign-up-forms-zh_TW.mo +0 -0
- readme.txt +7 -1
godaddy-email-marketing.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: GoDaddy Email Marketing
|
4 |
* Plugin URI: https://gem.godaddy.com/
|
5 |
* Description: Add the GoDaddy Email Marketing signup form to your WordPress site! Easy to set up, the plugin allows your site visitors to subscribe to your email lists.
|
6 |
-
* Version: 1.4.
|
7 |
* Author: GoDaddy
|
8 |
* Author URI: https://gem.godaddy.com/
|
9 |
* License: GPL-2.0
|
@@ -109,7 +109,7 @@ class GEM_Official {
|
|
109 |
|
110 |
// Plugin's main directory.
|
111 |
defined( 'GEM_VERSION' )
|
112 |
-
or define( 'GEM_VERSION', '1.4.
|
113 |
|
114 |
// Set up the base name.
|
115 |
self::$basename = isset( self::$basename ) ? self::$basename : plugin_basename( __FILE__ );
|
3 |
* Plugin Name: GoDaddy Email Marketing
|
4 |
* Plugin URI: https://gem.godaddy.com/
|
5 |
* Description: Add the GoDaddy Email Marketing signup form to your WordPress site! Easy to set up, the plugin allows your site visitors to subscribe to your email lists.
|
6 |
+
* Version: 1.4.1
|
7 |
* Author: GoDaddy
|
8 |
* Author URI: https://gem.godaddy.com/
|
9 |
* License: GPL-2.0
|
109 |
|
110 |
// Plugin's main directory.
|
111 |
defined( 'GEM_VERSION' )
|
112 |
+
or define( 'GEM_VERSION', '1.4.1' );
|
113 |
|
114 |
// Set up the base name.
|
115 |
self::$basename = isset( self::$basename ) ? self::$basename : plugin_basename( __FILE__ );
|
includes/class-blocks.php
CHANGED
@@ -85,7 +85,7 @@ class GEM_Blocks {
|
|
85 |
*/
|
86 |
private function get_forms() {
|
87 |
|
88 |
-
$forms = GEM_Dispatcher::
|
89 |
|
90 |
if ( empty( $forms->signups ) ) {
|
91 |
|
85 |
*/
|
86 |
private function get_forms() {
|
87 |
|
88 |
+
$forms = GEM_Dispatcher::get_forms();
|
89 |
|
90 |
if ( empty( $forms->signups ) ) {
|
91 |
|
includes/settings.php
CHANGED
@@ -559,8 +559,10 @@ class GEM_Settings {
|
|
559 |
|
560 |
}
|
561 |
|
|
|
|
|
562 |
?>
|
563 |
-
<iframe src="<?php echo esc_url( "https://{$subdomain}
|
564 |
|
565 |
<script type="text/javascript">
|
566 |
iFrameResize( {
|
559 |
|
560 |
}
|
561 |
|
562 |
+
$subdomain = 'us' ? '' : $subdomain . '.';
|
563 |
+
|
564 |
?>
|
565 |
+
<iframe src="<?php echo esc_url( "https://{$subdomain}godaddy.com/help/godaddy-email-marketing-1000013" ); ?>" frameborder="0" scrolling="no"></iframe>
|
566 |
|
567 |
<script type="text/javascript">
|
568 |
iFrameResize( {
|
languages/godaddy-email-marketing-sign-up-forms-da_DK.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-de_DE.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-el.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-es_ES.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-es_MX.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-fi.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-fr_FR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-hi_IN.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-id_ID.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-it_IT.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-ja.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-ko_KR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-mr.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-ms_MY.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-nb_NO.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-nl_NL.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-pl_PL.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-pt_BR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-pt_PT.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-ru_RU.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-sv_SE.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-th.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-tl.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-tr_TR.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-uk.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-vi.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-zh_CN.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-zh_HK.mo
CHANGED
Binary file
|
languages/godaddy-email-marketing-sign-up-forms-zh_TW.mo
CHANGED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: godaddy, fjarrett, jonathanbardo, eherman24, susanygodaddy, madmim
|
|
3 |
Tags: email, forms, godaddy, mailing list, marketing, newsletter, opt-in, signup, subscribe, widget, contacts
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.0
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPL-2.0
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -118,6 +118,12 @@ You can find your **Secret API Key** in the [Settings section](https://gem.godad
|
|
118 |
|
119 |
== Changelog ==
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
= 1.4.0 =
|
122 |
* New: Introduce GoDaddy Email Marketing content block.
|
123 |
|
3 |
Tags: email, forms, godaddy, mailing list, marketing, newsletter, opt-in, signup, subscribe, widget, contacts
|
4 |
Requires at least: 3.8
|
5 |
Tested up to: 5.0
|
6 |
+
Stable tag: 1.4.1
|
7 |
License: GPL-2.0
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
118 |
|
119 |
== Changelog ==
|
120 |
|
121 |
+
= 1.4.1 =
|
122 |
+
* Fix: Update plugin bypassing cache when fetching customer forms
|
123 |
+
* Fix: Fix US help tab iframe URL
|
124 |
+
* Tweak: Update `SelectControl` label to `GoDaddy Email Marketing Form`
|
125 |
+
* Tweak: Update strings in Russian translation file. @props [beebeatle](https://github.com/beebeatle)
|
126 |
+
|
127 |
= 1.4.0 =
|
128 |
* New: Introduce GoDaddy Email Marketing content block.
|
129 |
|