Google Ads & Marketing by Kliken - Version 1.1.0

Version Description

  • Name and text changes.
  • Support latest WordPress and WooCommerce version.
Download this release

Release Info

Developer sitewit
Plugin Icon 128x128 Google Ads & Marketing by Kliken
Version 1.1.0
Comparing to
See all releases

Code changes from version 1.0.8 to 1.1.0

Files changed (33) hide show
  1. changelog.txt +5 -1
  2. classes/class-helper.php +9 -5
  3. classes/class-plugin.php +24 -6
  4. classes/class-rest-misc-controller.php +2 -2
  5. classes/class-wc-integration.php +2 -2
  6. kliken-marketing-for-google.php +4 -5
  7. languages/kliken-marketing-for-google-cs_CZ.mo +0 -0
  8. languages/kliken-marketing-for-google-da_DK.mo +0 -0
  9. languages/kliken-marketing-for-google-de_CH.mo +0 -0
  10. languages/kliken-marketing-for-google-de_DE.mo +0 -0
  11. languages/kliken-marketing-for-google-es_ES.mo +0 -0
  12. languages/kliken-marketing-for-google-fi.mo +0 -0
  13. languages/kliken-marketing-for-google-fr_FR.mo +0 -0
  14. languages/kliken-marketing-for-google-he_IL.mo +0 -0
  15. languages/kliken-marketing-for-google-hu_HU.mo +0 -0
  16. languages/kliken-marketing-for-google-id_ID.mo +0 -0
  17. languages/kliken-marketing-for-google-it_IT.mo +0 -0
  18. languages/kliken-marketing-for-google-ja.mo +0 -0
  19. languages/kliken-marketing-for-google-nb_NO.mo +0 -0
  20. languages/kliken-marketing-for-google-nl_NL.mo +0 -0
  21. languages/kliken-marketing-for-google-pl_PL.mo +0 -0
  22. languages/kliken-marketing-for-google-pt_BR.mo +0 -0
  23. languages/kliken-marketing-for-google-pt_PT.mo +0 -0
  24. languages/kliken-marketing-for-google-ru_RU.mo +0 -0
  25. languages/kliken-marketing-for-google-sk_SK.mo +0 -0
  26. languages/kliken-marketing-for-google-sv_SE.mo +0 -0
  27. languages/kliken-marketing-for-google-zh_CN.mo +0 -0
  28. languages/kliken-marketing-for-google.pot +235 -194
  29. pages/admin-style.php +4 -5
  30. pages/cartscript.php +2 -0
  31. pages/dashboard.php +34 -10
  32. pages/getstarted.php +39 -11
  33. readme.txt +57 -53
changelog.txt CHANGED
@@ -1,4 +1,8 @@
1
- *** Google Ads & Marketing by Kliken Changelog ***
 
 
 
 
2
 
3
  2022-01-25 - version 1.0.8
4
  * Minor bug fixes.
1
+ *** AI Powered Marketing Changelog ***
2
+
3
+ 2022-12-08 - version 1.1.0
4
+ * Name and text changes.
5
+ * Support latest WordPress and WooCommerce version.
6
 
7
  2022-01-25 - version 1.0.8
8
  * Minor bug fixes.
classes/class-helper.php CHANGED
@@ -192,7 +192,7 @@ class Helper {
192
  }
193
 
194
  /**
195
- * Add SiteWit tracking script to page.
196
  */
197
  public static function add_tracking_script() {
198
  global $wp;
@@ -208,6 +208,8 @@ class Helper {
208
  $cart = self::build_cart_data();
209
 
210
  if ( null !== $cart ) {
 
 
211
  include_once KK_WC_PLUGIN_DIR . 'pages/cartscript.php';
212
  }
213
  }
@@ -373,7 +375,7 @@ class Helper {
373
  }
374
 
375
  $authorization_url = get_site_url() . '/wc-auth/v1/authorize'
376
- . '?app_name=' . rawurlencode( KK_WC_AUTH_APP_NAME )
377
  . '&scope=read_write'
378
  . '&user_id=' . base64_encode( $account_id . ':' . $application_token )
379
  . '&return_url=' . rawurlencode( 'bit.ly/2OweS8h' ) // This links back to woo.kliken.com. We just need to do this to shorten the link because some WordPress hostings seem to dislike long links.
@@ -461,13 +463,15 @@ class Helper {
461
  public static function get_onboarding_message() {
462
  return sprintf(
463
  wp_kses(
464
- /* translators: %s: A hyperlink */
465
- __( '<strong>Google Ads & Marketing by Kliken plugin is almost ready.</strong> <a href="%s">Click here</a> to get started.', 'kliken-marketing-for-google' ),
466
  [
467
  'strong' => [],
468
  'a' => [ 'href' => [] ],
469
  ]
470
- ), esc_url( self::get_plugin_page() )
 
 
471
  );
472
  }
473
 
192
  }
193
 
194
  /**
195
+ * Add Kliken tracking script to page.
196
  */
197
  public static function add_tracking_script() {
198
  global $wp;
208
  $cart = self::build_cart_data();
209
 
210
  if ( null !== $cart ) {
211
+ $currency = get_option( 'woocommerce_currency', 'USD' );
212
+
213
  include_once KK_WC_PLUGIN_DIR . 'pages/cartscript.php';
214
  }
215
  }
375
  }
376
 
377
  $authorization_url = get_site_url() . '/wc-auth/v1/authorize'
378
+ . '?app_name=' . rawurlencode( __( 'AI Powered Marketing' ) )
379
  . '&scope=read_write'
380
  . '&user_id=' . base64_encode( $account_id . ':' . $application_token )
381
  . '&return_url=' . rawurlencode( 'bit.ly/2OweS8h' ) // This links back to woo.kliken.com. We just need to do this to shorten the link because some WordPress hostings seem to dislike long links.
463
  public static function get_onboarding_message() {
464
  return sprintf(
465
  wp_kses(
466
+ /* translators: %s: Plugin name. %s: A hyperlink. Do not translate. */
467
+ __( '<strong>%s plugin is almost ready.</strong> <a href="%s">Click here</a> to get started.', 'kliken-marketing-for-google' ),
468
  [
469
  'strong' => [],
470
  'a' => [ 'href' => [] ],
471
  ]
472
+ ),
473
+ __( 'AI Powered Marketing' ),
474
+ esc_url( self::get_plugin_page() )
475
  );
476
  }
477
 
classes/class-plugin.php CHANGED
@@ -52,7 +52,13 @@ class Plugin {
52
  load_plugin_textdomain( 'kliken-marketing-for-google', false, KK_WC_PLUGIN_REL_PATH . '/languages' );
53
 
54
  if ( $this->_bootstrapped ) {
55
- throw new \Exception( __( 'Google Ads & Marketing by Kliken plugin can only be called once', 'kliken-marketing-for-google' ), self::ALREADY_BOOTSTRAPED );
 
 
 
 
 
 
56
  }
57
 
58
  $this->check_dependencies();
@@ -128,7 +134,7 @@ class Plugin {
128
  }
129
 
130
  /**
131
- * Show bootstrap (warning) message if needed.
132
  */
133
  public function show_bootstrap_message() {
134
  $message = get_site_transient( KK_WC_BOOTSTRAP_MESSAGE );
@@ -136,7 +142,7 @@ class Plugin {
136
  if ( ! empty( $message )
137
  && false === get_option( KK_WC_BOOTSTRAP_MESSAGE . self::DISMISS_POSTFIX, false )
138
  && current_user_can( 'manage_options' ) ) {
139
- Message::show_warning( $message, 'bsmessage' );
140
  }
141
  }
142
 
@@ -270,13 +276,25 @@ class Plugin {
270
  */
271
  private function check_dependencies() {
272
  if ( ! function_exists( 'wc' ) ) {
273
- throw new \Exception( __( 'Google Ads & Marketing by Kliken requires WooCommerce to be activated', 'kliken-marketing-for-google' ), self::DEPENDENCIES_UNSATISFIED );
 
 
 
 
 
 
274
  }
275
 
276
  $required_woo_version = '3.0';
277
  if ( version_compare( wc()->version, $required_woo_version, '<' ) ) {
278
- /* translators: %s: Version number of WooCommerce required to run plugin. Do not translate. */
279
- throw new \Exception( sprintf( __( 'Google Ads & Marketing by Kliken requires WooCommerce version %s or greater', 'kliken-marketing-for-google' ), $required_woo_version ), self::DEPENDENCIES_UNSATISFIED );
 
 
 
 
 
 
280
  }
281
  }
282
 
52
  load_plugin_textdomain( 'kliken-marketing-for-google', false, KK_WC_PLUGIN_REL_PATH . '/languages' );
53
 
54
  if ( $this->_bootstrapped ) {
55
+ throw new \Exception( sprintf(
56
+ /* translators: %s: Plugin name. Do not translate. */
57
+ __( '%s plugin can only be called once.', 'kliken-marketing-for-google' ),
58
+ __( 'AI Powered Marketing' )
59
+ ),
60
+ self::ALREADY_BOOTSTRAPED
61
+ );
62
  }
63
 
64
  $this->check_dependencies();
134
  }
135
 
136
  /**
137
+ * Show bootstrap (error) message if needed.
138
  */
139
  public function show_bootstrap_message() {
140
  $message = get_site_transient( KK_WC_BOOTSTRAP_MESSAGE );
142
  if ( ! empty( $message )
143
  && false === get_option( KK_WC_BOOTSTRAP_MESSAGE . self::DISMISS_POSTFIX, false )
144
  && current_user_can( 'manage_options' ) ) {
145
+ Message::show_error( $message, 'bsmessage' );
146
  }
147
  }
148
 
276
  */
277
  private function check_dependencies() {
278
  if ( ! function_exists( 'wc' ) ) {
279
+ throw new \Exception( sprintf(
280
+ /* translators: %s: Plugin name. Do not translate. */
281
+ __( '%s requires WooCommerce to be activated.', 'kliken-marketing-for-google' ),
282
+ __( 'AI Powered Marketing' )
283
+ ),
284
+ self::DEPENDENCIES_UNSATISFIED
285
+ );
286
  }
287
 
288
  $required_woo_version = '3.0';
289
  if ( version_compare( wc()->version, $required_woo_version, '<' ) ) {
290
+ throw new \Exception( sprintf(
291
+ /* translators: %s: Plugin name. %s: Version number of WooCommerce required to run plugin. Do not translate. */
292
+ __( '%s requires WooCommerce version %s or greater.', 'kliken-marketing-for-google' ),
293
+ __( 'AI Powered Marketing' ),
294
+ $required_woo_version
295
+ ),
296
+ self::DEPENDENCIES_UNSATISFIED
297
+ );
298
  }
299
  }
300
 
classes/class-rest-misc-controller.php CHANGED
@@ -60,7 +60,7 @@ class REST_Misc_Controller extends \WC_REST_CRUD_Controller {
60
  // For now, just sanitize the token as a text string (no tags, no simple injections).
61
  $token = sanitize_text_field( $request->get_param( 'token' ) );
62
  if ( ! $token ) {
63
- return new \WP_Error( 'rest_bad_request', __( 'Invalid Data', 'kliken-marketing-for-google' ), [ 'status' => 400 ] );
64
  }
65
 
66
  $saved_settings = Helper::get_plugin_options();
@@ -88,7 +88,7 @@ class REST_Misc_Controller extends \WC_REST_CRUD_Controller {
88
  $data = get_option( "woocommerce_wc_services_{$carrier_name}_{$id}_form_settings" );
89
 
90
  if ( ! $data || empty( $data ) || empty( $data->services ) ) {
91
- return new \WP_Error( 'no_wc_services', __( 'Invalid Data', 'kliken-marketing-for-google' ), [ 'status' => 404 ] );
92
  }
93
 
94
  $carrier_services = [];
60
  // For now, just sanitize the token as a text string (no tags, no simple injections).
61
  $token = sanitize_text_field( $request->get_param( 'token' ) );
62
  if ( ! $token ) {
63
+ return new \WP_Error( 'rest_bad_request', __( 'Invalid Data.', 'kliken-marketing-for-google' ), [ 'status' => 400 ] );
64
  }
65
 
66
  $saved_settings = Helper::get_plugin_options();
88
  $data = get_option( "woocommerce_wc_services_{$carrier_name}_{$id}_form_settings" );
89
 
90
  if ( ! $data || empty( $data ) || empty( $data->services ) ) {
91
+ return new \WP_Error( 'no_wc_services', __( 'Invalid Data.', 'kliken-marketing-for-google' ), [ 'status' => 404 ] );
92
  }
93
 
94
  $carrier_services = [];
classes/class-wc-integration.php CHANGED
@@ -22,7 +22,7 @@ class WC_Integration extends \WC_Integration {
22
  global $woocommerce;
23
 
24
  $this->id = KK_WC_INTEGRATION_PAGE_ID;
25
- $this->method_title = __( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); // This is for the sub-section text.
26
 
27
  if ( true === $init ) {
28
  // Load the settings.
@@ -60,7 +60,7 @@ class WC_Integration extends \WC_Integration {
60
  ],
61
  'guide_link' => [
62
  'type' => 'desc',
63
- 'description' => '<a href="https://support.sitewit.com/hc/en-us/articles/360016107933-WooCommerce-Advanced-Options" target="_blank" rel="noopener noreferrer">' . __( 'What are these options?', 'kliken-marketing-for-google' ) . '</a>',
64
  'desc_tip' => '',
65
  ],
66
  ];
22
  global $woocommerce;
23
 
24
  $this->id = KK_WC_INTEGRATION_PAGE_ID;
25
+ $this->method_title = __( 'AI Powered Marketing', 'kliken-marketing-for-google' ); // This is for the sub-section text.
26
 
27
  if ( true === $init ) {
28
  // Load the settings.
60
  ],
61
  'guide_link' => [
62
  'type' => 'desc',
63
+ 'description' => '<a href="https://support.kliken.com/hc/en-us/articles/360016107933-WooCommerce-Advanced-Options" target="_blank" rel="noopener noreferrer">' . __( 'What are these options?', 'kliken-marketing-for-google' ) . '</a>',
64
  'desc_tip' => '',
65
  ],
66
  ];
kliken-marketing-for-google.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
- Plugin Name: Google Ads & Marketing by Kliken
4
  Plugin URI: https://woo.kliken.com/
5
- Description: The automated Google Shopping solution to get your products found on Google, and grow your WooCommerce Store!
6
- Version: 1.0.8
7
  Author: Kliken
8
  Author URI: http://kliken.com/
9
  Developer: Kliken
@@ -12,7 +12,7 @@ Text Domain: kliken-marketing-for-google
12
  Domain path: /languages
13
 
14
  WC requires at least: 3.0
15
- WC tested up to: 6.0
16
 
17
  License: GNU General Public License v3.0
18
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -29,7 +29,6 @@ define( 'KK_WC_PLUGIN_REL_PATH', basename( dirname( __FILE__ ) ) );
29
  define( 'KK_WC_AFFILIATE_ID', '82E7B644-DB42-40E9-9EDF-6FD10A4BAFB3' );
30
  define( 'KK_WC_WOOKLIKEN_BASE_URL', 'https://woo.kliken.com/' );
31
  define( 'KK_WC_AUTH_CALLBACK_URL', 'https://app.mysite-analytics.com/WebHooks/WooCommerceAuth/' );
32
- define( 'KK_WC_AUTH_APP_NAME', 'Google Ads & Marketing by Kliken' );
33
 
34
  define( 'KK_WC_INTEGRATION_PAGE_ID', 'kk_wcintegration' );
35
 
1
  <?php
2
  /**
3
+ Plugin Name: AI Powered Marketing
4
  Plugin URI: https://woo.kliken.com/
5
+ Description: Kliken's all-in-one marketing platform helps business owners reach high-intent customers, surpass your competition and realize significant growth in sales, while decreasing conversion costs.
6
+ Version: 1.1.0
7
  Author: Kliken
8
  Author URI: http://kliken.com/
9
  Developer: Kliken
12
  Domain path: /languages
13
 
14
  WC requires at least: 3.0
15
+ WC tested up to: 7.2
16
 
17
  License: GNU General Public License v3.0
18
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
29
  define( 'KK_WC_AFFILIATE_ID', '82E7B644-DB42-40E9-9EDF-6FD10A4BAFB3' );
30
  define( 'KK_WC_WOOKLIKEN_BASE_URL', 'https://woo.kliken.com/' );
31
  define( 'KK_WC_AUTH_CALLBACK_URL', 'https://app.mysite-analytics.com/WebHooks/WooCommerceAuth/' );
 
32
 
33
  define( 'KK_WC_INTEGRATION_PAGE_ID', 'kk_wcintegration' );
34
 
languages/kliken-marketing-for-google-cs_CZ.mo CHANGED
Binary file
languages/kliken-marketing-for-google-da_DK.mo CHANGED
Binary file
languages/kliken-marketing-for-google-de_CH.mo CHANGED
Binary file
languages/kliken-marketing-for-google-de_DE.mo CHANGED
Binary file
languages/kliken-marketing-for-google-es_ES.mo CHANGED
Binary file
languages/kliken-marketing-for-google-fi.mo CHANGED
Binary file
languages/kliken-marketing-for-google-fr_FR.mo CHANGED
Binary file
languages/kliken-marketing-for-google-he_IL.mo CHANGED
Binary file
languages/kliken-marketing-for-google-hu_HU.mo CHANGED
Binary file
languages/kliken-marketing-for-google-id_ID.mo CHANGED
Binary file
languages/kliken-marketing-for-google-it_IT.mo CHANGED
Binary file
languages/kliken-marketing-for-google-ja.mo CHANGED
Binary file
languages/kliken-marketing-for-google-nb_NO.mo CHANGED
Binary file
languages/kliken-marketing-for-google-nl_NL.mo CHANGED
Binary file
languages/kliken-marketing-for-google-pl_PL.mo CHANGED
Binary file
languages/kliken-marketing-for-google-pt_BR.mo CHANGED
Binary file
languages/kliken-marketing-for-google-pt_PT.mo CHANGED
Binary file
languages/kliken-marketing-for-google-ru_RU.mo CHANGED
Binary file
languages/kliken-marketing-for-google-sk_SK.mo CHANGED
Binary file
languages/kliken-marketing-for-google-sv_SE.mo CHANGED
Binary file
languages/kliken-marketing-for-google-zh_CN.mo CHANGED
Binary file
languages/kliken-marketing-for-google.pot CHANGED
@@ -1,194 +1,235 @@
1
- # Copyright (C) 2021 Kliken
2
- # This file is distributed under the GNU General Public License v3.0.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Google Ads & Marketing by Kliken 1.0.7\n"
6
- "Report-Msgid-Bugs-To: http://www.sitewit.com/contact/\n"
7
- "POT-Creation-Date: 2021-01-27 18:58:01+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: SiteWit <wordpress@sitewit.com>\n"
13
- "Language-Team: SiteWit <wordpress@sitewit.com>\n"
14
- "Language: en\n"
15
- "Plural-Forms: nplurals=2; plural=n !=\n"
16
- "X-Poedit-Country: United States\n"
17
- "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
19
- "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
20
- "esc_html_x:1,2c;\n"
21
- "X-Poedit-Basepath: ../\n"
22
- "X-Poedit-SearchPath-0: .\n"
23
- "X-Poedit-Bookmarks: \n"
24
- "X-Textdomain-Support: yes\n"
25
- "X-Generator: grunt-wp-i18n1.0.2\n"
26
-
27
- #. translators: %s: A hyperlink
28
- #: classes/class-helper.php:465
29
- msgid ""
30
- "<strong>Google Ads & Marketing by Kliken plugin is almost ready.</strong> <a "
31
- "href=\"%s\">Click here</a> to get started."
32
- msgstr ""
33
-
34
- #: classes/class-plugin.php:55
35
- msgid "Google Ads & Marketing by Kliken plugin can only be called once"
36
- msgstr ""
37
-
38
- #: classes/class-plugin.php:122
39
- msgid "Dashboard"
40
- msgstr ""
41
-
42
- #: classes/class-plugin.php:125
43
- msgid "Support"
44
- msgstr ""
45
-
46
- #: classes/class-plugin.php:208
47
- msgid "This will dismiss the message permanently. Are you sure?"
48
- msgstr ""
49
-
50
- #: classes/class-plugin.php:273
51
- msgid "Google Ads & Marketing by Kliken requires WooCommerce to be activated"
52
- msgstr ""
53
-
54
- #. translators: %s: Version number of WooCommerce required to run plugin. Do
55
- #. not translate.
56
- #: classes/class-plugin.php:279
57
- msgid ""
58
- "Google Ads & Marketing by Kliken requires WooCommerce version %s or greater"
59
- msgstr ""
60
-
61
- #: classes/class-rest-misc-controller.php:63
62
- #: classes/class-rest-misc-controller.php:91
63
- msgid "Invalid Data"
64
- msgstr ""
65
-
66
- #: classes/class-rest-misc-controller.php:128
67
- msgid "Sorry, you cannot list resources."
68
- msgstr ""
69
-
70
- #. Plugin Name of the plugin/theme
71
- msgid "Google Ads & Marketing by Kliken"
72
- msgstr ""
73
-
74
- #: classes/class-wc-integration.php:47
75
- msgid "Account Id"
76
- msgstr ""
77
-
78
- #: classes/class-wc-integration.php:52
79
- msgid "Application Token"
80
- msgstr ""
81
-
82
- #: classes/class-wc-integration.php:57
83
- msgid "Google Verification Token"
84
- msgstr ""
85
-
86
- #: classes/class-wc-integration.php:63
87
- msgid "What are these options?"
88
- msgstr ""
89
-
90
- #: pages/dashboard.php:15
91
- msgid "Launch Google Shopping ads and get your products found online easily."
92
- msgstr ""
93
-
94
- #: pages/dashboard.php:26
95
- msgid "Your store is connected."
96
- msgstr ""
97
-
98
- #: pages/dashboard.php:28
99
- msgid "Your WooCommerce store is connected to your Kliken account."
100
- msgstr ""
101
-
102
- #: pages/dashboard.php:34
103
- msgid "Campaign Dashboard"
104
- msgstr ""
105
-
106
- #: pages/dashboard.php:36
107
- msgid "Open your dashboard to review your campaign's performance"
108
- msgstr ""
109
-
110
- #: pages/dashboard.php:41
111
- msgid "Create a New Google Shopping Campaign"
112
- msgstr ""
113
-
114
- #: pages/dashboard.php:43
115
- msgid ""
116
- "Build a campaign in a few minutes, and sell to customers as they search for "
117
- "your products on Google."
118
- msgstr ""
119
-
120
- #: pages/dashboard.php:48
121
- msgid "Manage Campaigns"
122
- msgstr ""
123
-
124
- #: pages/dashboard.php:50
125
- msgid ""
126
- "Make changes to your active campaigns, purchase one you built, or reinstate "
127
- "your cancelled campaigns."
128
- msgstr ""
129
-
130
- #: pages/dashboard.php:56
131
- msgid "Advanced Options"
132
- msgstr ""
133
-
134
- #: pages/dashboard.php:67
135
- msgid "Enable Edit"
136
- msgstr ""
137
-
138
- #: pages/dashboard.php:68
139
- msgid "Save Changes"
140
- msgstr ""
141
-
142
- #: pages/dashboard.php:72
143
- msgid "Authorize API Access"
144
- msgstr ""
145
-
146
- #: pages/getstarted.php:30
147
- msgid "Launch Google Shopping Ads and get your products found online easily."
148
- msgstr ""
149
-
150
- #: pages/getstarted.php:41
151
- msgid "Increase sales and revenue with Google Shopping Ads"
152
- msgstr ""
153
-
154
- #: pages/getstarted.php:43
155
- msgid "Use this WooCommerce and Google Ads integration to:"
156
- msgstr ""
157
-
158
- #: pages/getstarted.php:45
159
- msgid "Find more customers on Google"
160
- msgstr ""
161
-
162
- #: pages/getstarted.php:46
163
- msgid "Automate bidding to maximize sales for your marketing budget"
164
- msgstr ""
165
-
166
- #: pages/getstarted.php:47
167
- msgid "Keep your marketing and store in sync"
168
- msgstr ""
169
-
170
- #: pages/getstarted.php:48
171
- msgid "Create perfect shopping campaigns in minutes"
172
- msgstr ""
173
-
174
- #: pages/getstarted.php:51
175
- msgid "Get Started"
176
- msgstr ""
177
-
178
- #. Plugin URI of the plugin/theme
179
- msgid "https://woo.kliken.com/"
180
- msgstr ""
181
-
182
- #. Description of the plugin/theme
183
- msgid ""
184
- "The automated Google Shopping solution to get your products found on Google, "
185
- "and grow your WooCommerce Store!"
186
- msgstr ""
187
-
188
- #. Author of the plugin/theme
189
- msgid "Kliken"
190
- msgstr ""
191
-
192
- #. Author URI of the plugin/theme
193
- msgid "http://kliken.com/"
194
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2021 Kliken
2
+ # This file is distributed under the GNU General Public License v3.0.
3
+ #, fuzzy
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: AI Powered Marketing\n"
7
+ "Report-Msgid-Bugs-To: https://www.kliken.com/contact-us.html\n"
8
+ "POT-Creation-Date: 2022-12-08 16:58-0500\n"
9
+ "PO-Revision-Date: 2022-12-08 09:54-0500\n"
10
+ "Last-Translator: SiteWit <wordpress@sitewit.com>\n"
11
+ "Language-Team: SiteWit <wordpress@sitewit.com>\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=n !=\n"
16
+ "X-Generator: Poedit 3.2.2\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
20
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
21
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
22
+ "X-Poedit-SourceCharset: UTF-8\n"
23
+ "X-Poedit-WPHeader: kliken-marketing-for-google.php\n"
24
+ "X-Textdomain-Support: yes\n"
25
+ "X-Poedit-SearchPath-0: .\n"
26
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
27
+ "X-Poedit-SearchPathExcluded-1: vendor\n"
28
+
29
+ #. Plugin Name of the plugin/theme
30
+ #: classes/class-helper.php:376 classes/class-helper.php:471
31
+ #: classes/class-plugin.php:58 classes/class-plugin.php:282
32
+ #: classes/class-plugin.php:293 classes/class-wc-integration.php:25
33
+ #: pages/dashboard.php:13 pages/getstarted.php:28
34
+ msgid "AI Powered Marketing"
35
+ msgstr ""
36
+
37
+ #. translators: %s: Plugin name. %s: A hyperlink. Do not translate.
38
+ #: classes/class-helper.php:465
39
+ #, php-format
40
+ msgid ""
41
+ "<strong>%s plugin is almost ready.</strong> <a href=\"%s\">Click here</a> to "
42
+ "get started."
43
+ msgstr ""
44
+
45
+ #. translators: %s: Plugin name. Do not translate.
46
+ #: classes/class-plugin.php:57
47
+ #, php-format
48
+ msgid "%s plugin can only be called once."
49
+ msgstr ""
50
+
51
+ #: classes/class-plugin.php:128
52
+ msgid "Dashboard"
53
+ msgstr ""
54
+
55
+ #: classes/class-plugin.php:131
56
+ msgid "Support"
57
+ msgstr ""
58
+
59
+ #: classes/class-plugin.php:214
60
+ msgid "This will dismiss the message permanently. Are you sure?"
61
+ msgstr ""
62
+
63
+ #. translators: %s: Plugin name. Do not translate.
64
+ #: classes/class-plugin.php:281
65
+ #, php-format
66
+ msgid "%s requires WooCommerce to be activated."
67
+ msgstr ""
68
+
69
+ #. translators: %s: Plugin name. %s: Version number of WooCommerce required to run plugin. Do not translate.
70
+ #: classes/class-plugin.php:292
71
+ #, php-format
72
+ msgid "%s requires WooCommerce version %s or greater."
73
+ msgstr ""
74
+
75
+ #: classes/class-rest-misc-controller.php:63
76
+ #: classes/class-rest-misc-controller.php:91
77
+ msgid "Invalid Data."
78
+ msgstr ""
79
+
80
+ #: classes/class-rest-misc-controller.php:128
81
+ msgid "Sorry, you cannot list resources."
82
+ msgstr ""
83
+
84
+ #: classes/class-wc-integration.php:47
85
+ msgid "Account Id"
86
+ msgstr ""
87
+
88
+ #: classes/class-wc-integration.php:52
89
+ msgid "Application Token"
90
+ msgstr ""
91
+
92
+ #: classes/class-wc-integration.php:57
93
+ msgid "Google Verification Token"
94
+ msgstr ""
95
+
96
+ #: classes/class-wc-integration.php:63
97
+ msgid "What are these options?"
98
+ msgstr ""
99
+
100
+ #: pages/dashboard.php:15 pages/getstarted.php:30
101
+ msgid ""
102
+ "Reach beyond your competition on Google, Facebook and the Open Web, and "
103
+ "unleash the power of your brand with Kliken."
104
+ msgstr ""
105
+
106
+ #: pages/dashboard.php:27
107
+ msgid "Your store is connected."
108
+ msgstr ""
109
+
110
+ #: pages/dashboard.php:29
111
+ msgid "Your WooCommerce store is connected to your Kliken account."
112
+ msgstr ""
113
+
114
+ #: pages/dashboard.php:35
115
+ msgid "Create a New Kliken Ads Campaign"
116
+ msgstr ""
117
+
118
+ #: pages/dashboard.php:37
119
+ msgid ""
120
+ "Build a Kliken Ads campaign in less than 10 minutes, and start reaching "
121
+ "customers as they search for your products across the Open Web."
122
+ msgstr ""
123
+
124
+ #: pages/dashboard.php:42
125
+ msgid "Manage Your Kliken Ads Campaigns"
126
+ msgstr ""
127
+
128
+ #: pages/dashboard.php:44
129
+ msgid ""
130
+ "Make changes to your active campaigns, purchase one you've built, or "
131
+ "reinstate your canceled campaigns."
132
+ msgstr ""
133
+
134
+ #: pages/dashboard.php:49
135
+ msgid "Kliken Ads Open Web Campaign Dashboard"
136
+ msgstr ""
137
+
138
+ #: pages/dashboard.php:51
139
+ msgid "See how your ads are performing by visiting your dashboard."
140
+ msgstr ""
141
+
142
+ #: pages/dashboard.php:58
143
+ msgid "Create a New Google Shopping Campaign"
144
+ msgstr ""
145
+
146
+ #: pages/dashboard.php:60
147
+ msgid ""
148
+ "Build a campaign in a few minutes, and sell to customers as they search for "
149
+ "your products on Google."
150
+ msgstr ""
151
+
152
+ #: pages/dashboard.php:65
153
+ msgid "Manage Your Google Campaigns"
154
+ msgstr ""
155
+
156
+ #: pages/dashboard.php:67
157
+ msgid ""
158
+ "Make changes to your active campaigns, purchase ones you've built, or "
159
+ "reinstate your canceled campaigns."
160
+ msgstr ""
161
+
162
+ #: pages/dashboard.php:72
163
+ msgid "Google Campaign Dashboard"
164
+ msgstr ""
165
+
166
+ #: pages/dashboard.php:74
167
+ msgid "Open your dashboard to review your campaign's performance."
168
+ msgstr ""
169
+
170
+ #: pages/dashboard.php:80
171
+ msgid "Advanced Options"
172
+ msgstr ""
173
+
174
+ #: pages/dashboard.php:93
175
+ msgid "Enable Edit"
176
+ msgstr ""
177
+
178
+ #: pages/dashboard.php:94
179
+ msgid "Save Changes"
180
+ msgstr ""
181
+
182
+ #: pages/dashboard.php:99
183
+ msgid "Authorize API Access"
184
+ msgstr ""
185
+
186
+ #: pages/getstarted.php:42
187
+ msgid ""
188
+ "Grow your business with the #1 rated advertising extension on WooCommerce"
189
+ msgstr ""
190
+
191
+ #: pages/getstarted.php:44
192
+ msgid "With Kliken's All-In-One Marketing Solution, you can:"
193
+ msgstr ""
194
+
195
+ #: pages/getstarted.php:48
196
+ msgid ""
197
+ "Find ideal customers for your store as they are surfing the <strong>web</"
198
+ "strong>, searching on <strong>Google</strong>, or browsing <strong>Facebook</"
199
+ "strong>"
200
+ msgstr ""
201
+
202
+ #: pages/getstarted.php:58
203
+ msgid ""
204
+ "<strong>Retarget</strong> existing customers and increase your conversion "
205
+ "rates and sales"
206
+ msgstr ""
207
+
208
+ #: pages/getstarted.php:68
209
+ msgid ""
210
+ "Leverage Fortune 500 advertising power at a small price - <strong>packages "
211
+ "start as low as $5 per day</strong>"
212
+ msgstr ""
213
+
214
+ #: pages/getstarted.php:78
215
+ msgid "Get Started"
216
+ msgstr ""
217
+
218
+ #. Plugin URI of the plugin/theme
219
+ msgid "https://woo.kliken.com/"
220
+ msgstr ""
221
+
222
+ #. Description of the plugin/theme
223
+ msgid ""
224
+ "Kliken's all-in-one marketing platform helps business owners reach high-"
225
+ "intent customers, surpass your competition and realize significant growth in "
226
+ "sales, while decreasing conversion costs."
227
+ msgstr ""
228
+
229
+ #. Author of the plugin/theme
230
+ msgid "Kliken"
231
+ msgstr ""
232
+
233
+ #. Author URI of the plugin/theme
234
+ msgid "http://kliken.com/"
235
+ msgstr ""
pages/admin-style.php CHANGED
@@ -41,7 +41,7 @@
41
  .kk-wrapper .kk-box-content {
42
  background-color: white;
43
  border: 1px solid #cccccc;
44
- padding: 30px;
45
  }
46
 
47
  .kk-wrapper .sub-heading {
@@ -57,13 +57,12 @@
57
  }
58
 
59
  .kk-wrapper .kk-img-container {
60
- margin: 20px;
61
  }
62
 
63
- .kk-wrapper .kk-google-img {
64
- height: 40px;
65
  display: block;
66
- margin-bottom: -5px;
67
  }
68
 
69
  .kk-wrapper .kk-poweredby-img {
41
  .kk-wrapper .kk-box-content {
42
  background-color: white;
43
  border: 1px solid #cccccc;
44
+ padding: 10px 30px 30px;
45
  }
46
 
47
  .kk-wrapper .sub-heading {
57
  }
58
 
59
  .kk-wrapper .kk-img-container {
60
+ margin: 10px 20px;
61
  }
62
 
63
+ .kk-wrapper .kk-logo-img {
64
+ height: 120px;
65
  display: block;
 
66
  }
67
 
68
  .kk-wrapper .kk-poweredby-img {
pages/cartscript.php CHANGED
@@ -11,6 +11,8 @@ defined( 'ABSPATH' ) || exit;
11
 
12
  <script type="text/javascript">
13
  var swPreRegister = function() {
 
 
14
  let itemsForGTAG = [];
15
  let swCart = [];
16
  <?php foreach ($cart as $key => $value) : ?>
11
 
12
  <script type="text/javascript">
13
  var swPreRegister = function() {
14
+ sw.config.currency = "<?php echo esc_attr( $currency ); ?>";
15
+
16
  let itemsForGTAG = [];
17
  let swCart = [];
18
  <?php foreach ($cart as $key => $value) : ?>
pages/dashboard.php CHANGED
@@ -10,15 +10,16 @@ defined( 'ABSPATH' ) || exit;
10
  ?>
11
 
12
  <div class="wrap kk-wrapper">
13
- <h2><?php esc_html_e( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); ?></h2>
14
 
15
- <p><?php esc_html_e( 'Launch Google Shopping ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
16
 
17
  <div class="kk-box">
18
  <div class="kk-box-header">
19
  <div class="kk-img-container">
20
- <img src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/GoogleHeader-Logo.svg" alt="Google Logo" height="40" class="kk-google-img">
21
- <img src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/PoweredByKliken.png" alt="Powered by Kliken" class="kk-poweredby-img">
 
22
  </div>
23
  </div>
24
 
@@ -28,26 +29,49 @@ defined( 'ABSPATH' ) || exit;
28
  <p class="subhdr"><?php esc_html_e( 'Your WooCommerce store is connected to your Kliken account.', 'kliken-marketing-for-google' ); ?></p>
29
 
30
  <hr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  <div class="kk-link">
33
  <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/dashboard' ); ?>">
34
- <?php esc_html_e( 'Campaign Dashboard', 'kliken-marketing-for-google' ); ?>
35
  </a>
36
- <p class="sub-note"><?php esc_html_e( 'Open your dashboard to review your campaign\'s performance', 'kliken-marketing-for-google' ); ?></p>
37
  </div>
38
 
 
 
39
  <div class="kk-link">
40
- <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/create' ); ?>">
41
  <?php esc_html_e( 'Create a New Google Shopping Campaign', 'kliken-marketing-for-google' ); ?>
42
  </a>
43
  <p class="sub-note"><?php esc_html_e( 'Build a campaign in a few minutes, and sell to customers as they search for your products on Google.', 'kliken-marketing-for-google' ); ?></p>
44
  </div>
45
 
46
  <div class="kk-link">
47
- <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/manage' ); ?>">
48
- <?php esc_html_e( 'Manage Campaigns', 'kliken-marketing-for-google' ); ?>
 
 
 
 
 
 
 
49
  </a>
50
- <p class="sub-note"><?php esc_html_e( 'Make changes to your active campaigns, purchase one you built, or reinstate your cancelled campaigns.', 'kliken-marketing-for-google' ); ?></p>
51
  </div>
52
 
53
  <hr>
10
  ?>
11
 
12
  <div class="wrap kk-wrapper">
13
+ <h2><?php esc_html_e( 'AI Powered Marketing', 'kliken-marketing-for-google' ); ?></h2>
14
 
15
+ <p><?php esc_html_e( 'Reach beyond your competition on Google, Facebook and the Open Web, and unleash the power of your brand with Kliken.', 'kliken-marketing-for-google' ); ?></p>
16
 
17
  <div class="kk-box">
18
  <div class="kk-box-header">
19
  <div class="kk-img-container">
20
+ <img srcset="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline@2x.png 2x, https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline.png 1x"
21
+ src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline.png"
22
+ alt="Kliken Logo" class="kk-logo-img">
23
  </div>
24
  </div>
25
 
29
  <p class="subhdr"><?php esc_html_e( 'Your WooCommerce store is connected to your Kliken account.', 'kliken-marketing-for-google' ); ?></p>
30
 
31
  <hr>
32
+
33
+ <div class="kk-link">
34
+ <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/create' ); ?>">
35
+ <?php esc_html_e( 'Create a New Kliken Ads Campaign', 'kliken-marketing-for-google' ); ?>
36
+ </a>
37
+ <p class="sub-note"><?php esc_html_e( 'Build a Kliken Ads campaign in less than 10 minutes, and start reaching customers as they search for your products across the Open Web.', 'kliken-marketing-for-google' ); ?></p>
38
+ </div>
39
+
40
+ <div class="kk-link">
41
+ <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/manage' ); ?>">
42
+ <?php esc_html_e( 'Manage Your Kliken Ads Campaigns', 'kliken-marketing-for-google' ); ?>
43
+ </a>
44
+ <p class="sub-note"><?php esc_html_e( 'Make changes to your active campaigns, purchase one you\'ve built, or reinstate your canceled campaigns.', 'kliken-marketing-for-google' ); ?></p>
45
+ </div>
46
 
47
  <div class="kk-link">
48
  <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/shopping/dashboard' ); ?>">
49
+ <?php esc_html_e( 'Kliken Ads Open Web Campaign Dashboard', 'kliken-marketing-for-google' ); ?>
50
  </a>
51
+ <p class="sub-note"><?php esc_html_e( 'See how your ads are performing by visiting your dashboard.', 'kliken-marketing-for-google' ); ?></p>
52
  </div>
53
 
54
+ <hr>
55
+
56
  <div class="kk-link">
57
+ <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/openweb/default.aspx/new' ); ?>">
58
  <?php esc_html_e( 'Create a New Google Shopping Campaign', 'kliken-marketing-for-google' ); ?>
59
  </a>
60
  <p class="sub-note"><?php esc_html_e( 'Build a campaign in a few minutes, and sell to customers as they search for your products on Google.', 'kliken-marketing-for-google' ); ?></p>
61
  </div>
62
 
63
  <div class="kk-link">
64
+ <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/openweb/default.aspx/manage' ); ?>">
65
+ <?php esc_html_e( 'Manage Your Google Campaigns', 'kliken-marketing-for-google' ); ?>
66
+ </a>
67
+ <p class="sub-note"><?php esc_html_e( 'Make changes to your active campaigns, purchase ones you\'ve built, or reinstate your canceled campaigns.', 'kliken-marketing-for-google' ); ?></p>
68
+ </div>
69
+
70
+ <div class="kk-link">
71
+ <a class="sub-heading" href="<?php echo esc_url( KK_WC_WOOKLIKEN_BASE_URL . 'smb/openweb/default.aspx/stats' ); ?>">
72
+ <?php esc_html_e( 'Google Campaign Dashboard', 'kliken-marketing-for-google' ); ?>
73
  </a>
74
+ <p class="sub-note"><?php esc_html_e( 'Open your dashboard to review your campaign\'s performance.', 'kliken-marketing-for-google' ); ?></p>
75
  </div>
76
 
77
  <hr>
pages/getstarted.php CHANGED
@@ -25,30 +25,58 @@ defined( 'ABSPATH' ) || exit;
25
  </style>
26
 
27
  <div class="wrap kk-wrapper">
28
- <h2><?php esc_html_e( 'Google Ads & Marketing by Kliken', 'kliken-marketing-for-google' ); ?></h2>
29
 
30
- <p><?php esc_html_e( 'Launch Google Shopping Ads and get your products found online easily.', 'kliken-marketing-for-google' ); ?></p>
31
 
32
  <div class="kk-box">
33
  <div class="kk-box-header">
34
  <div class="kk-img-container">
35
- <img src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/GoogleHeader-Logo.svg" alt="Google Logo" height="40" class="kk-google-img">
36
- <img src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/PoweredByKliken.png" alt="Powered by Kliken" class="kk-poweredby-img">
 
37
  </div>
38
  </div>
39
 
40
  <div class="kk-box-content">
41
- <h1><?php esc_html_e( 'Increase sales and revenue with Google Shopping Ads', 'kliken-marketing-for-google' ); ?></h1>
42
 
43
- <p class="subhdr"><?php esc_html_e( 'Use this WooCommerce and Google Ads integration to:', 'kliken-marketing-for-google' ); ?></h5>
44
  <ul>
45
- <li><?php esc_html_e( 'Find more customers on Google', 'kliken-marketing-for-google' ); ?></li>
46
- <li><?php esc_html_e( 'Automate bidding to maximize sales for your marketing budget', 'kliken-marketing-for-google' ); ?></li>
47
- <li><?php esc_html_e( 'Keep your marketing and store in sync', 'kliken-marketing-for-google' ); ?></li>
48
- <li><?php esc_html_e( 'Create perfect shopping campaigns in minutes', 'kliken-marketing-for-google' ); ?></li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  </ul>
50
 
51
- <a id="getstarted_btn" href="<?php echo esc_url( \Kliken\WcPlugin\Helper::build_signup_link() ); ?>"><?php esc_html_e( 'Get Started', 'kliken-marketing-for-google' ); ?></a>
 
 
52
  </div>
53
  </div>
54
  </div>
25
  </style>
26
 
27
  <div class="wrap kk-wrapper">
28
+ <h2><?php esc_html_e( 'AI Powered Marketing', 'kliken-marketing-for-google' ); ?></h2>
29
 
30
+ <p><?php esc_html_e( 'Reach beyond your competition on Google, Facebook and the Open Web, and unleash the power of your brand with Kliken.', 'kliken-marketing-for-google' ); ?></p>
31
 
32
  <div class="kk-box">
33
  <div class="kk-box-header">
34
  <div class="kk-img-container">
35
+ <img srcset="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline@2x.png 2x, https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline.png 1x"
36
+ src="https://msacdn.s3.amazonaws.com/images/logos/woocommerce/KlikenLogoTagline.png"
37
+ alt="Kliken Logo" class="kk-logo-img">
38
  </div>
39
  </div>
40
 
41
  <div class="kk-box-content">
42
+ <h1><?php esc_html_e( 'Grow your business with the #1 rated advertising extension on WooCommerce', 'kliken-marketing-for-google' ); ?></h1>
43
 
44
+ <p class="subhdr"><?php esc_html_e( 'With Kliken\'s All-In-One Marketing Solution, you can:', 'kliken-marketing-for-google' ); ?></h5>
45
  <ul>
46
+ <li><?php
47
+ echo wp_kses (
48
+ __( 'Find ideal customers for your store as they are surfing the <strong>web</strong>, searching on <strong>Google</strong>, or browsing <strong>Facebook</strong>', 'kliken-marketing-for-google' ),
49
+ [
50
+ 'strong' => [],
51
+ ]
52
+ );
53
+ ?>
54
+ </li>
55
+ <li>
56
+ <?php
57
+ echo wp_kses (
58
+ __( '<strong>Retarget</strong> existing customers and increase your conversion rates and sales', 'kliken-marketing-for-google' ),
59
+ [
60
+ 'strong' => [],
61
+ ]
62
+ );
63
+ ?>
64
+ </li>
65
+ <li>
66
+ <?php
67
+ echo wp_kses (
68
+ __( 'Leverage Fortune 500 advertising power at a small price - <strong>packages start as low as $5 per day</strong>', 'kliken-marketing-for-google' ),
69
+ [
70
+ 'strong' => [],
71
+ ]
72
+ );
73
+ ?>
74
+ </li>
75
  </ul>
76
 
77
+ <a id="getstarted_btn" href="<?php echo esc_url( \Kliken\WcPlugin\Helper::build_signup_link() ); ?>">
78
+ <?php esc_html_e( 'Get Started', 'kliken-marketing-for-google' ); ?>
79
+ </a>
80
  </div>
81
  </div>
82
  </div>
readme.txt CHANGED
@@ -1,82 +1,85 @@
1
- === Google Ads & Marketing by Kliken ===
2
  Contributors: sitewit
3
  Tags: advertising, adwords, analytics, bing, google, leads, marketing, marketing platform, metrics, online advertising, online marketing, plugin, ppc, PPC, google shopping, shopping ads, product ads, ROI, conversions
4
  Requires at least: 4.4
5
- Tested up to: 6.0
6
  Requires PHP: 5.6
7
- Stable tag: 1.0.8
8
  WC requires at least: 3.0
9
- WC tested up to: 6.5
10
  License: GPLv3 or later License
11
  URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
13
- Google Ads & Marketing by Kliken is the easiest way to promote your products to interested shoppers across Google so you can get discovered on any budget.
14
 
15
 
16
  == Description ==
17
 
18
- ### Get your products in front of the millions of shoppers searching on Google ###
19
 
20
- Google Ads & Marketing by Kliken is the easiest way to promote your products to interested shoppers across Google so you can get discovered on any budget.
 
 
21
 
 
22
 
23
- ### About Google Ads & Marketing
24
 
25
- Kliken’s Google Ads & Marketing manages and automates everything you need to get your products on Google for $10/month. It helps eligible merchants:
26
 
27
- * Create or link a **Google Merchant Center Account**
28
- * **Optimize Smart Product feeds** with daily inventory sync
29
- * **Access free listings** on surfaces across Google and the Google Shopping Tab
30
- * **Run paid Smart Shopping campaigns** to promote products across Google, Gmail, YouTube and the Display Network
31
 
 
32
 
 
33
 
34
- ### How it works
35
-
36
- #### Create or link your Google Merchant Center Account
37
-
38
- We help you create or link your Woo store to the necessary accounts needed to get your products on Google. We also continue to optimize and manage these accounts so you don’t have to.
39
-
 
40
 
41
- #### Sync and optimize your store product feed
42
 
43
- Keeping your inventory up-to-date is easy with our automated product feed and daily syncs so you can make sure shoppers are only seeing your in-stock products when they find you on Google.
 
 
 
44
 
45
 
46
- #### Access free listings on the Google Shopping tab and surfaces across Google
47
-
48
- When eligible merchants sign up for Google Ads & Marketing by Kliken, they are automatically opted into free listings so that they can potentially show up on [surfaces across Google](https://support.google.com/merchants/answer/9199328) or the [Google Shopping tab](https://support.google.com/merchants/answer/9838672?hl=en) to drive free traffic to their approved products.
49
-
50
- Learn more about free listings [here](https://www.blog.google/products/shopping/its-now-free-to-sell-on-google/) and access the help center [here](https://support.google.com/merchants/answer/9838672).
51
-
52
-
53
- #### Run paid Smart Shopping Campaigns to show up across Google Shopping, Search, YouTube, Gmail, and the Google Display Network
54
 
55
- Smart Shopping campaigns help increase your sales and revenue by displaying your products to interested shoppers strategically across Google to drive traffic and sales.
 
56
 
57
- Select which categories you want to advertise and the extension will generate Google Smart Shopping feeds that automatically manage ad creation, targeting, bidding, budget allocation, sales and conversions.
58
 
 
 
59
 
60
- #### Start today and take advantage of this special offer from Google
 
61
 
62
- As a Google Partner, WooCommerce can offer new advertisers ad credits. Spend $150 within 31 days and automatically get an additional $150 worth of advertising credit* (See terms and conditions).
 
63
 
 
64
 
65
- #### What are the benefits of running Smart Shopping campaigns?
 
66
 
67
- * **Grow your sales:** Our customers see a 7X return on ad spend
68
- * **Expand your reach:** Your products will show up in front of shoppers across the Google Display Network, Shopping, Search, YouTube, Gmail, plus you only pay when users click on your ad
69
- * **Track performance:** Track your sales performance and campaign results in your Woo store
70
 
71
 
72
- ### Google Ads & Marketing Pricing
73
 
74
  #### The Kliken automation fee is $10 per month
75
 
76
- The automation fee covers everything you need to be successful on Google Ads & Marketing
77
-
78
 
79
- #### You can also choose your ads budget for Smart Shopping Campaigns
80
 
81
  We have seen the most success with merchants who start with the $300 budget so your feed can go through proper machine learning optimization and get better qualified leads.
82
 
@@ -88,21 +91,17 @@ The Kliken team is here to help you. Please send an email to [support@kliken.com
88
 
89
  ### Requirements
90
 
91
- There are a few basic requirements to get approved for Google Ads & Marketing. Making sure your store meets these basic requirements can help with getting your products on Google faster. These policies are meant to ensure customers have a great shopping experience in your WooCommerce store!
92
 
93
  * Return and refund policy: include a return and refund policy page that is clear and easy to find (e.g. link to policy in website footer or header). More info [here](https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=9216868). (Whether your store provides returns/refunds is OK! Just make sure to clearly state this)
94
  * Contact information: include accurate contact information, including 2 of the 3: email, phone number, or physical address. More info [here](https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=9216868).
95
  * Listing available payment methods before checkout with text or icons
96
 
97
- You can learn more about all the Google Ads & Marketing policies and how to help your store get approved [here](https://support.google.com/merchants/topic/7286989?hl=en&ref_topic=7259123).
98
-
99
 
100
  ### Terms & Conditions
101
 
102
- *Valid only for new Kliken customers. Promotional codes have no promotional value and entry of the promotional code serves only to begin your qualification for the associated promotional credit. To earn the promotional credit, start advertising! The advertising costs you accrue in t
103
- his account in the 31 days following the start of your campaign will be matched with advertising credit in the same amount, up to a maximum value of $150. Your account must be successfully billed by Kliken and remain in good standing in order to qualify for the promotional credit. The promotional credit will be applied within approximately 5 days after the 31st day of starting your campaign, as long as you’ve activated your account using the promotional code and fulfilled all requirements stated in the offer. For the complete terms and conditions, [click here](https://www.google.com/ads/coupons/terms.html).
104
-
105
- Please be aware that Automattic and our partners SiteWit/Kliken and Google have access to business metrics for each user so that Kliken can optimize each account. This data includes views, clicks, conversions, cost per click, cost, and revenue.
106
 
107
 
108
  == Frequently Asked Questions ==
@@ -129,15 +128,20 @@ Google Ads & Marketing for WooCommerce is a contract free service. You can cance
129
 
130
  == Screenshots ==
131
 
132
- 1. Trusted by WooCommerce Merchants
133
- 2. Stay in front of shoppers across Google search, Youtube, Gmail, and more
134
- 3. Sign up now to start advertising on Google
135
- 4. Get a simple overview of Revenue, Sales, and Campaign Performance
136
- 5. Pricing for any size business
 
137
 
138
 
139
  == Changelog ==
140
 
 
 
 
 
141
  = 1.0.8 =
142
  * Minor bug fixes.
143
 
1
+ === AI Powered Marketing ===
2
  Contributors: sitewit
3
  Tags: advertising, adwords, analytics, bing, google, leads, marketing, marketing platform, metrics, online advertising, online marketing, plugin, ppc, PPC, google shopping, shopping ads, product ads, ROI, conversions
4
  Requires at least: 4.4
5
+ Tested up to: 6.1
6
  Requires PHP: 5.6
7
+ Stable tag: 1.1.0
8
  WC requires at least: 3.0
9
+ WC tested up to: 7.2
10
  License: GPLv3 or later License
11
  URI: http://www.gnu.org/licenses/gpl-3.0.html
12
 
13
+ Kliken's all-in-one marketing helps businesses reach high-intent customers, beat the competition and see sales growth while lowering conversion costs.
14
 
15
 
16
  == Description ==
17
 
18
+ With Kliken's All-In-One Marketing Solution, you can:
19
 
20
+ * Find ideal customers for your store as they are surfing the __Open Web__, searching on __Google__, or browsing __Facebook__.
21
+ * __Retarget__ existing customers and increase your conversion rates and sales
22
+ * Leverage Fortune 500 advertising power at a small business price - packages start as low as __$5 per day__.
23
 
24
+ #### Grow your business with the #1 rated advertising extension on WooCommerce
25
 
26
+ Owning a small business is hard. Marketing that business shouldn't be. Kliken's all-in-one marketing platform helps business owners, like you, reach high-intent customers, surpass your competition and realize significant growth in sales, while decreasing conversion costs.
27
 
28
+ For over a decade, the Kliken team has built the best performing e-commerce advertising engine, across multiple platforms, giving our customers the time to do what you do best run your business, while Kliken helps grow your sales.
29
 
30
+ From start to finish in under 10 minutes, build your shopping campaign, define your audience, and preview your ads – all for FREE – no credit card required. Once you're ready to start growing your sales, select a monthly budget, checkout, and get more.
 
 
 
31
 
32
+ #### More Traffic. More Sales. More for your Money. Get More, with Kliken.
33
 
34
+ Kliken's AI Powered Marketing manages and automates everything you need to get your products on Google, Facebook, and the Open Web, for a low monthly cost. It helps eligible merchants:
35
 
36
+ * Promote your products to __ideal customers__ as they are surfing the Open Web with __Kliken Ads__
37
+ * __Retarget__ online visitors to maximize sales with __Kliken Ads__
38
+ * Create or link a __Google Merchant Center Account__
39
+ * __Optimize Product feeds__ with a daily inventory sync across all platforms
40
+ * __Access Google Product Listings__ on surfaces across Google and the Google Shopping Tab
41
+ * __Run Google Shopping Ads campaigns__ to promote products across Google, Gmail, YouTube and the Display Network
42
+ * __Run Facebook Ads campaigns__ to promote products on Facebook
43
 
44
+ #### AI Powered Marketing Features
45
 
46
+ * Grow your sales: Unleash your potential by finding the customers that are looking for exactly what you offer across Google, Facebook and the Open Web.
47
+ * Priced for small businesses: Flexible advertising budget options starting as low as $5 per day. Get everything you need to advertise your business, no matter which platform you choose.
48
+ * Maximize your marketing performance: Track your sales performance and campaign results in your WooCommerce dashboard. You can see exactly how many visitors Kliken sends your way from the Open Web, Google, and Facebook. PLUS, see how your marketing budget is spent every day.
49
+ * Track sales performance: View results across the Open Web, Google, and Facebook while Kliken computes your return on advertising spend and optimize your campaigns using AI, giving you real-time campaign performance.
50
 
51
 
52
+ ### How it works
 
 
 
 
 
 
 
53
 
54
+ #### Promote your products and retarget visitors as they surf the Web
55
+ We help you find ideal new customers interested in your products and increase sales to existing site visitors with Kliken Ads for the Open Web. We put your products in front of customers that already love what you sell and are ready to purchase – giving you maximum exposure with a greater return on advertising spend.
56
 
57
+ Kliken Ads is the easiest, most affordable way to find new customers and increase sales. In less than 10 minutes, our customers can build a full campaign ready to go live, preview the campaign, select a budget to fit the business and start growing sales. Packages start at $5 per day.
58
 
59
+ #### Create or link your Google Merchant Center Account
60
+ We help you create or link your Woo store to the necessary accounts needed to get your products on Google. We also continue to optimize and manage these accounts so you don’t have to.
61
 
62
+ #### Optimize Smart Product feeds with daily inventory sync
63
+ Keeping your inventory up-to-date is easy with our automated product feed and daily syncs so you can make sure shoppers are only seeing your in-stock products when they find you on Google.
64
 
65
+ #### Access free listings on the Google Shopping tab and surfaces across Google
66
+ When eligible merchants sign up for Google Shopping, they automatically opt into free listings so that they can potentially show up on [surfaces across Google](https://support.google.com/merchants/answer/9199328) or the [Google Shopping tab](https://support.google.com/merchants/answer/9838672?hl=en) to drive free traffic to their approved products.
67
 
68
+ Learn more about free listings [here](https://www.blog.google/products/shopping/its-now-free-to-sell-on-google/) and access the help center [here](https://support.google.com/merchants/answer/9838672).
69
 
70
+ #### Run paid Google Shopping Ads campaign to show up across Google Shopping, Search, YouTube, Gmail, and the Google Display Network
71
+ Google Shopping Ads campaigns (also called Performance Max Campaigns) help increase your sales and revenue by displaying your products to interested shoppers strategically across Google to drive traffic and sales.
72
 
73
+ Select which categories you want to advertise and the extension will generate Google Shopping feeds that automatically manage ad creation, targeting, bidding, budget allocation, sales, and conversions.
 
 
74
 
75
 
76
+ ### Kliken's AI Powered Marketing Pricing
77
 
78
  #### The Kliken automation fee is $10 per month
79
 
80
+ The automation fee covers everything you need to be successful on Google, Facebook and the Open Web.
 
81
 
82
+ #### You can also choose your Shopping Ads Campaign budget based on your needs.
83
 
84
  We have seen the most success with merchants who start with the $300 budget so your feed can go through proper machine learning optimization and get better qualified leads.
85
 
91
 
92
  ### Requirements
93
 
94
+ There are a few basic requirements to get approved for Google Shopping. Making sure your store meets these basic requirements can help with getting your products on Google faster. These policies are meant to ensure customers have a great shopping experience in your WooCommerce store!
95
 
96
  * Return and refund policy: include a return and refund policy page that is clear and easy to find (e.g. link to policy in website footer or header). More info [here](https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=9216868). (Whether your store provides returns/refunds is OK! Just make sure to clearly state this)
97
  * Contact information: include accurate contact information, including 2 of the 3: email, phone number, or physical address. More info [here](https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=9216868).
98
  * Listing available payment methods before checkout with text or icons
99
 
100
+ You can learn more about all the Google Shopping policies and how to help your store get approved [here](https://support.google.com/merchants/topic/7286989?hl=en&ref_topic=7259123).
 
101
 
102
  ### Terms & Conditions
103
 
104
+ *Valid only for new Kliken customers. Promotional codes have no promotional value and entry of the promotional code serves only to begin your qualification for the associated promotional credit. To earn the promotional credit, start advertising and spend $500 in the first 60 days to recieve a $500 advertising credit! Your account must be successfully billed by Kliken and remain in good standing in order to qualify for the promotional credit. The promotional credit will be applied within approximately 5 days after the 61st day of starting your campaign, as long as you’ve activated your account using the promotional code and fulfilled all requirements stated in the offer. For the complete terms and conditions, [click here](https://www.google.com/ads/coupons/terms.html).
 
 
 
105
 
106
 
107
  == Frequently Asked Questions ==
128
 
129
  == Screenshots ==
130
 
131
+ 1. Grow your sales across Google, Facebook and the Open Web
132
+ 2. Trusted by WooCommerce Merchants
133
+ 3. Attract your perfect customers across all devices
134
+ 4. Review campaign performance, revenue, sales and more from your dashboard
135
+ 5. Priced for any size business
136
+ 6. Google Ads Special spend $500 and recieve $500 in ad credit
137
 
138
 
139
  == Changelog ==
140
 
141
+ = 1.1.0 =
142
+ * Name and text changes.
143
+ * Support latest WordPress and WooCommerce version.
144
+
145
  = 1.0.8 =
146
  * Minor bug fixes.
147