Enhanced Ecommerce Google Analytics Plugin for WooCommerce - Version 4.9.3

Version Description

  • 27/09/2022 =
  • Changed the text domain for internationalization and making it compatible with other locales
Download this release

Release Info

Developer ramniktatvic
Plugin Icon 128x128 Enhanced Ecommerce Google Analytics Plugin for WooCommerce
Version 4.9.3
Comparing to
See all releases

Code changes from version 4.9.2 to 4.9.3

Files changed (33) hide show
  1. admin/class-conversios-admin.php +15 -15
  2. admin/class-conversios-onboarding.php +107 -107
  3. admin/class-enhanced-ecommerce-google-analytics-admin.php +6 -6
  4. admin/class-survey.php +12 -12
  5. admin/class-tvc-admin-helper.php +22 -22
  6. admin/helper/class-dashboard-helper.php +6 -6
  7. admin/helper/class-onboarding-helper.php +15 -15
  8. admin/helper/class-pmax-helper.php +6 -6
  9. admin/partials/class-conversios-header.php +30 -30
  10. admin/partials/general-fields.php +60 -60
  11. admin/partials/pricings.php +100 -100
  12. enhanced-ecommerce-google-analytics.php +3 -3
  13. includes/class-enhanced-ecommerce-google-analytics-activator.php +1 -1
  14. includes/class-enhanced-ecommerce-google-analytics-i18n.php +1 -1
  15. includes/class-enhanced-ecommerce-google-analytics.php +6 -6
  16. includes/data/class-tvc-ajax-file.php +12 -12
  17. includes/setup/CustomApi.php +1 -1
  18. includes/setup/account.php +15 -15
  19. includes/setup/add-campaign.php +36 -36
  20. includes/setup/class-conversios-dashboard.php +142 -142
  21. includes/setup/class-tvc-product-sync-helper.php +17 -17
  22. includes/setup/google-ads.php +20 -20
  23. includes/setup/google-shopping-feed-gaa-config.php +20 -20
  24. includes/setup/google-shopping-feed-shopping-campaigns.php +38 -38
  25. includes/setup/google-shopping-feed-sync-product.php +16 -16
  26. includes/setup/google-shopping-feed.php +27 -27
  27. includes/setup/help-html.php +38 -38
  28. includes/setup/pmax-add.php +22 -22
  29. includes/setup/pmax-edit.php +27 -27
  30. includes/setup/pmax.php +17 -17
  31. includes/setup/tatvic-category-wrapper.php +1 -1
  32. public/class-enhanced-ecommerce-google-analytics-public-pro.php +12 -12
  33. readme.txt +6 -3
admin/class-conversios-admin.php CHANGED
@@ -229,7 +229,7 @@ if ( ! class_exists( 'Conversios_Admin' ) ) {
229
  }
230
 
231
  add_menu_page(
232
- esc_html__('Conversios','conversios'), esc_html__('Conversios','conversios'), 'manage_options', "conversios", array($this, 'showPage'), esc_url_raw(plugin_dir_url(__FILE__) . 'images/tatvic_logo.png'), 26
233
  );
234
  if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
235
  require_once( ABSPATH . '/wp-admin/includes/woocommerce.php' );
@@ -237,38 +237,38 @@ if ( ! class_exists( 'Conversios_Admin' ) ) {
237
  if ( is_plugin_active_for_network( 'woocommerce/woocommerce.php') || in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
238
  add_submenu_page(
239
  'conversios',
240
- esc_html__('Dashboard','conversios'),
241
- esc_html__('Dashboard','conversios'),
242
  'manage_options',
243
  'conversios' );
244
  add_submenu_page(
245
  'conversios',
246
- esc_html__('Google Shopping', 'conversios'),
247
- esc_html__('Google Shopping', 'conversios'),
248
  'manage_options',
249
  'conversios-google-shopping-feed',
250
  array($this, 'showPage')
251
  );
252
  add_submenu_page(
253
  'conversios',
254
- esc_html__('Google Ads', 'conversios'),
255
- esc_html__('Google Ads', 'conversios'),
256
  'manage_options',
257
  'conversios-google-ads',
258
  array($this, 'showPage')
259
  );
260
  add_submenu_page(
261
  'conversios',
262
- esc_html__('Performance Max', 'conversios'),
263
- esc_html__('Performance Max', 'conversios'),
264
  'manage_options',
265
  'conversios-pmax',
266
  array($this, 'showPage')
267
  );
268
  add_submenu_page(
269
  'conversios',
270
- esc_html__('Account Settings', 'conversios'),
271
- esc_html__('Account Settings', 'conversios'),
272
  'manage_options',
273
  'conversios-google-analytics',
274
  array($this, 'showPage')
@@ -276,8 +276,8 @@ if ( ! class_exists( 'Conversios_Admin' ) ) {
276
 
277
  add_submenu_page(
278
  'conversios',
279
- esc_html__('Account Summary', 'conversios'),
280
- esc_html__('Account Summary', 'conversios'),
281
  'manage_options',
282
  'conversios-account',
283
  array($this, 'showPage')
@@ -285,8 +285,8 @@ if ( ! class_exists( 'Conversios_Admin' ) ) {
285
  if($plan_id == 1){
286
  add_submenu_page(
287
  'conversios',
288
- esc_html__('Free Vs Pro', 'conversios'),
289
- esc_html__('Free Vs Pro', 'conversios'),
290
  'manage_options',
291
  'conversios-pricings',
292
  array($this, 'showPage')
229
  }
230
 
231
  add_menu_page(
232
+ esc_html__('Conversios','enhanced-e-commerce-for-woocommerce-store'), esc_html__('Conversios','enhanced-e-commerce-for-woocommerce-store'), 'manage_options', "conversios", array($this, 'showPage'), esc_url_raw(plugin_dir_url(__FILE__) . 'images/tatvic_logo.png'), 26
233
  );
234
  if ( ! function_exists( 'is_plugin_active_for_network' ) ) {
235
  require_once( ABSPATH . '/wp-admin/includes/woocommerce.php' );
237
  if ( is_plugin_active_for_network( 'woocommerce/woocommerce.php') || in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
238
  add_submenu_page(
239
  'conversios',
240
+ esc_html__('Dashboard','enhanced-e-commerce-for-woocommerce-store'),
241
+ esc_html__('Dashboard','enhanced-e-commerce-for-woocommerce-store'),
242
  'manage_options',
243
  'conversios' );
244
  add_submenu_page(
245
  'conversios',
246
+ esc_html__('Google Shopping', 'enhanced-e-commerce-for-woocommerce-store'),
247
+ esc_html__('Google Shopping', 'enhanced-e-commerce-for-woocommerce-store'),
248
  'manage_options',
249
  'conversios-google-shopping-feed',
250
  array($this, 'showPage')
251
  );
252
  add_submenu_page(
253
  'conversios',
254
+ esc_html__('Google Ads', 'enhanced-e-commerce-for-woocommerce-store'),
255
+ esc_html__('Google Ads', 'enhanced-e-commerce-for-woocommerce-store'),
256
  'manage_options',
257
  'conversios-google-ads',
258
  array($this, 'showPage')
259
  );
260
  add_submenu_page(
261
  'conversios',
262
+ esc_html__('Performance Max', 'enhanced-e-commerce-for-woocommerce-store'),
263
+ esc_html__('Performance Max', 'enhanced-e-commerce-for-woocommerce-store'),
264
  'manage_options',
265
  'conversios-pmax',
266
  array($this, 'showPage')
267
  );
268
  add_submenu_page(
269
  'conversios',
270
+ esc_html__('Account Settings', 'enhanced-e-commerce-for-woocommerce-store'),
271
+ esc_html__('Account Settings', 'enhanced-e-commerce-for-woocommerce-store'),
272
  'manage_options',
273
  'conversios-google-analytics',
274
  array($this, 'showPage')
276
 
277
  add_submenu_page(
278
  'conversios',
279
+ esc_html__('Account Summary', 'enhanced-e-commerce-for-woocommerce-store'),
280
+ esc_html__('Account Summary', 'enhanced-e-commerce-for-woocommerce-store'),
281
  'manage_options',
282
  'conversios-account',
283
  array($this, 'showPage')
285
  if($plan_id == 1){
286
  add_submenu_page(
287
  'conversios',
288
+ esc_html__('Free Vs Pro', 'enhanced-e-commerce-for-woocommerce-store'),
289
+ esc_html__('Free Vs Pro', 'enhanced-e-commerce-for-woocommerce-store'),
290
  'manage_options',
291
  'conversios-pricings',
292
  array($this, 'showPage')
admin/class-conversios-onboarding.php CHANGED
@@ -71,7 +71,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
71
  $contData = json_decode($getCountris);
72
  if (!empty($user_country)) {
73
  $data = "<select id='selectCountry' name='country' class='form-control slect2bx' readonly='true'>";
74
- $data .= "<option value=''>".esc_html__("Please select country","conversios")."</option>";
75
  foreach ($contData as $key => $value) {
76
  $selected = ($value->code == $user_country) ? "selected='selected'" : "";
77
  $data .= "<option value=" . esc_attr($value->code) . " " . esc_attr($selected) . " >" . esc_attr($value->name) . "</option>";
@@ -79,7 +79,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
79
  $data .= "</select>";
80
  } else {
81
  $data = "<select id='selectCountry' name='country' class='form-control slect2bx'>";
82
- $data .= "<option value=''>".esc_html__("Please select country","conversios")."</option>";
83
  foreach ($contData as $key => $value) {
84
  $data .= "<option value=" . esc_attr($value->code) . ">" . esc_attr($value->name) . "</option>";
85
  }
@@ -201,8 +201,8 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
201
  <div class="container">
202
  <div class="smallcontainer">
203
  <div class="onbordingtop">
204
- <h2><?php esc_html_e("Let’s get you started.","conversios"); ?></h2>
205
- <p><?php esc_html_e("Automate eCommerce tracking in Google Analytics, Dynamic Remarketing and enhanced conversions tags and product feed sync in google merchant center to boost your eCommerce sales.","conversios"); ?></p>
206
  </div>
207
  <div class="row">
208
  <!-- onborading left start -->
@@ -214,7 +214,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
214
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
215
  </div>
216
  <div class="stepdetwrap">
217
- <h4><?php esc_html_e("Connect Conversios with your website","conversios"); ?></h4>
218
  <p><?php echo (isset($this->tvc_data['g_mail']) && esc_attr($this->subscriptionId) )?esc_attr($this->tvc_data['g_mail']):""; ?></p>
219
  </div>
220
  </div>
@@ -225,28 +225,28 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
225
  <div class="google-icon-wrapper">
226
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
227
  </div>
228
- <p class="btn-text"><b><?php esc_html_e("Sign in with google","conversios"); ?></b></p>
229
  </div>
230
  <?php } else{?>
231
 
232
  <?php if($this->is_refresh_token_expire == true){?>
233
- <p class="alert alert-primary"><?php esc_html_e("It seems the token to access your Google accounts is expired. Sign in again to continue.","conversios"); ?></p>
234
  <div class="google_connect_url google-btn">
235
  <div class="google-icon-wrapper">
236
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
237
  </div>
238
- <p class="btn-text"><b><?php esc_html_e("Sign in with google","conversios"); ?></b></p>
239
  </div>
240
  <?php } else{ ?>
241
  <div class="google_connect_url google-btn">
242
  <div class="google-icon-wrapper">
243
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
244
  </div>
245
- <p class="btn-text mr-35"><b><?php esc_html_e("Reauthorize","conversios"); ?></b></p>
246
  </div>
247
  <?php } ?>
248
  <?php } ?>
249
- <p><?php esc_html_e("Make sure you sign in with the google email account that has all privileges to access google analytics, google ads and google merchant center account that you want to configure for your store. We take programmatic access to your accounts to automate the Google analytics tracking and Google Shopping for you so that you do not need any developer or expert to set up the plugin.","conversios"); ?></p>
250
  </div>
251
  </div>
252
  </div>
@@ -258,29 +258,29 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
258
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
259
  </div>
260
  <div class="stepdetwrap">
261
- <h4><?php esc_html_e("Connect Google Analytics Account","conversios"); ?></h4>
262
- <p><?php esc_html_e("Select your Google Analytics account from the dropdown below and hit “Next”. That’s it..!! Google Analytics eCommerce tracking will be set up automatically. Isn’t it easy peasy??","conversios"); ?></p>
263
  </div>
264
  </div>
265
  <div class="stepmoredtlwrp">
266
  <div class="stepmoredtl">
267
  <form action="#">
268
  <div class="form-row">
269
- <h5><?php esc_html_e("How do you plan to tag your website?","conversios"); ?></h5>
270
  <div class="cstmrdobtn-item">
271
  <label for="univeral">
272
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "UA")); ?> name="analytic_tag_type" id="univeral" value="UA">
273
  <span class="checkmark"></span>
274
- <?php esc_html_e("Universal Analytics (Google Analytics 3)","conversios"); ?>
275
  </label>
276
  <div id="UA" class="slctunivr-filed">
277
  <div class="tvc-dropdown">
278
  <div class="tvc-dropdown-header" id="ua_web_property_id_option_val" data-profileid="" data-accountid="<?php if($googleDetail->ua_analytic_account_id){ echo esc_attr($googleDetail->ua_analytic_account_id); } ?>" data-val="<?php if($googleDetail->property_id){ echo esc_attr($googleDetail->property_id); } ?>"><?php if($googleDetail->property_id){
279
  echo esc_attr($googleDetail->property_id);
280
- }else{?><?php esc_html_e("Select Property Id","conversios"); ?><?php } ?></div>
281
  <div class="tvc-dropdown-content" id="ua_web_property_id_option">
282
- <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Property Id","conversios"); ?></option></div>
283
- <div class="tvc-ua-option-more option"><?php esc_html_e("Load More","conversios"); ?></div>
284
  </div>
285
  </div>
286
 
@@ -290,7 +290,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
290
  <label for="gglanytc">
291
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "GA4")); ?> name="analytic_tag_type" id="gglanytc" value="GA4">
292
  <span class="checkmark"></span>
293
- <?php esc_html_e("Google Analytics 4","conversios"); ?>
294
  </label>
295
  <div id="GA4" class="slctunivr-filed">
296
 
@@ -298,11 +298,11 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
298
  <div class="tvc-dropdown-header" id="ga4_web_measurement_id_option_val" data-name="" data-accountid="<?php if($googleDetail->ga4_analytic_account_id){ echo esc_attr($googleDetail->ga4_analytic_account_id); } ?>" data-val="<?php if($googleDetail->measurement_id){ echo esc_attr($googleDetail->measurement_id); } ?>">
299
  <?php if($googleDetail->measurement_id){
300
  echo esc_attr($googleDetail->measurement_id);
301
- }else{?><?php esc_html_e("Select Measurement Id","conversios"); ?>
302
  <?php } ?></div>
303
  <div class="tvc-dropdown-content" id="ga4_web_measurement_id_option">
304
- <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Measurement Id","conversios"); ?></option></div>
305
- <div class="tvc-ga4-option-more option"><?php esc_html_e("Load More","conversios"); ?></div>
306
  </div>
307
  </div>
308
 
@@ -312,7 +312,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
312
  <label for="both">
313
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "BOTH")); ?> name="analytic_tag_type" id="both" value="BOTH">
314
  <span class="checkmark"></span>
315
- <?php esc_html_e("Both","conversios"); ?>
316
  </label>
317
  <div id="BOTH" class="slctunivr-filed">
318
  <div class="botslectbxitem">
@@ -320,10 +320,10 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
320
  <div class="tvc-dropdown">
321
  <div class="tvc-dropdown-header" id="both_ua_web_property_id_option_val" data-profileid="" data-accountid="<?php if($googleDetail->ua_analytic_account_id){ echo esc_attr($googleDetail->ua_analytic_account_id); } ?>" data-val="<?php if($googleDetail->property_id){ echo esc_attr($googleDetail->property_id); } ?>"><?php if($googleDetail->property_id){
322
  echo esc_attr($googleDetail->property_id);
323
- }else{?><?php esc_html_e("Select Property Id","conversios"); ?><?php } ?></div>
324
  <div class="tvc-dropdown-content" id="both_ua_web_property_id_option">
325
- <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Property Id","conversios"); ?></option></div>
326
- <div class="tvc-ua-option-more option"><?php esc_html_e("Load More","conversios"); ?></div>
327
  </div>
328
  </div>
329
 
@@ -334,11 +334,11 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
334
  <div class="tvc-dropdown-header" id="both_ga4_web_measurement_id_option_val" data-name="" data-accountid="<?php if($googleDetail->ga4_analytic_account_id){ echo esc_attr($googleDetail->ga4_analytic_account_id); } ?>" data-val="<?php if($googleDetail->measurement_id){ echo esc_attr($googleDetail->measurement_id); } ?>">
335
  <?php if($googleDetail->measurement_id){
336
  echo esc_attr($googleDetail->measurement_id);
337
- }else{?><?php esc_html_e("Select Measurement Id","conversios"); ?>
338
  <?php } ?></div>
339
  <div class="tvc-dropdown-content" id="both_ga4_web_measurement_id_option">
340
- <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Measurement Id","conversios"); ?></option></div>
341
- <div class="tvc-ga4-option-more option"><?php esc_html_e("Load More","conversios"); ?></div>
342
  </div>
343
  </div>
344
  </div>
@@ -347,20 +347,20 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
347
  </div>
348
  </div>
349
  <div class="form-row">
350
- <h5><?php esc_html_e("Advance Settings (Optional)","conversios"); ?></h5>
351
  <div class="chckbxbgbx">
352
  <div class="cstmcheck-item">
353
  <label for="enhanced_e_commerce_tracking">
354
  <input type="checkbox" class="custom-control-input" name="enhanced_e_commerce_tracking" id="enhanced_e_commerce_tracking" <?php echo esc_attr($is_e_e_tracking); ?>>
355
  <span class="checkmark"></span>
356
- <?php esc_html_e("Enhaced e-commerce tracking","conversios"); ?>
357
  </label>
358
  </div>
359
  <div class="cstmcheck-item">
360
  <label for="add_gtag_snippet">
361
  <input type="checkbox" class="custom-control-input" name="add_gtag_snippe" id="add_gtag_snippet" <?php echo esc_attr($is_a_g_snippet); ?>>
362
  <span class="checkmark"></span>
363
- <?php esc_html_e("Add gtag.js snippet","conversios"); ?>
364
  </label>
365
  </div>
366
  </div>
@@ -368,7 +368,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
368
  <div class="stepsbmtbtn">
369
  <input type="hidden" id="subscriptionPropertyId" name="subscriptionPropertyId" value="<?php echo (property_exists($googleDetail,"property_id"))?esc_attr($googleDetail->property_id):""; ?>">
370
  <input type="hidden" id="subscriptionMeasurementId" name="subscriptionMeasurementId" value="<?php echo (property_exists($googleDetail,"measurement_id"))?esc_attr($googleDetail->measurement_id):""; ?>">
371
- <button type="button" disabled id="step_1" class="stepnextbtn stpnxttrgr"><?php esc_html_e("Next","conversios"); ?></button>
372
  </div>
373
  </form>
374
  </div>
@@ -382,8 +382,8 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
382
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
383
  </div>
384
  <div class="stepdetwrap">
385
- <h4><?php esc_html_e("Connect Google Ads account","conversios"); ?></h4>
386
- <p><?php esc_html_e("Select the Google Ads account from the drop down or create a new one. Once you connect Google Ads account, dynamic remarketing, Google Ads conversion and enhanced conversion tags will be activated which will help your reach out to your store visitor based on their browsing behavior and your campaign measurements will be effective. DO NOT MISS THIS if you really want to increase your eCommerce sales.","conversios"); ?></p>
387
  </div>
388
  </div>
389
  <div class="stepmoredtlwrp">
@@ -393,25 +393,25 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
393
  <div class="ggladsselectbx">
394
  <input type="hidden" id="subscriptionGoogleAdsId" name="subscriptionGoogleAdsId" value="<?php echo property_exists($googleDetail,"google_ads_id")?esc_attr($googleDetail->google_ads_id):""; ?>">
395
  <select class="slect2bx google_ads_sel" id="ads-account" name="customer_id">
396
- <option value=''><?php esc_html_e("Select Google Ads Account","conversios"); ?></option>
397
  </select>
398
  </div>
399
- <div class="orwrp"><?php esc_html_e("or","conversios"); ?></div>
400
  <div class="creatnewwrp">
401
- <button type="button" class="cretnewbtn newggladsbtn"><span class="plusicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png'); ?>" alt="" /></span> <?php esc_html_e("Create New","conversios"); ?></button>
402
  </div>
403
  </div>
404
 
405
  <div class="selcttopwrap">
406
  <div class="onbrdpp-body alert alert-primary" style="display:none;" id="new_google_ads_section">
407
- <h4><?php esc_html_e("Account Created","conversios"); ?></h4>
408
- <p><?php esc_html_e("Your Google Ads Account has been created","conversios"); ?> <strong>(<b><span id="new_google_ads_id"></span></b>).</strong></p>
409
- <h5><?php esc_html_e("Steps to claim your Google Ads Account:","conversios"); ?></h5>
410
  <ol>
411
- <li><?php esc_html_e("Accept invitation mail from Google Ads sent to your email address","conversios"); ?> <em><?php echo (isset($this->tvc_data['g_mail']))?esc_attr($this->tvc_data['g_mail']):""; ?></em><span id="invitationLink"><br><em>OR</em> Open
412
  <a href="" target="_blank" id="ads_invitationLink">Invitation Link</a></span>
413
  </li>
414
- <li><?php esc_html_e("Log into your Google Ads account and set up your billing preferences","conversios"); ?></li>
415
  </ol>
416
  </div>
417
  </div>
@@ -423,20 +423,20 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
423
  $is_d_r_tags = (property_exists($googleDetail,"dynamic_remarketing_tags") && $googleDetail->dynamic_remarketing_tags == 1)?"checked":(($defaulSelection == 1)?"checked":"");
424
  $is_g_ad_c_tracking = (property_exists($googleDetail,"google_ads_conversion_tracking") && $googleDetail->google_ads_conversion_tracking == 1)?"checked":(($defaulSelection == 1)?"checked":"");
425
  ?>
426
- <h5><?php esc_html_e("Advance Settings (Optional)","conversios"); ?></h5>
427
  <div class="chckbxbgbx dsplcolmview">
428
  <div class="cstmcheck-item">
429
  <label for="remarketing_tag">
430
  <input type="checkbox" class="custom-control-input" name="remarketing_tag" id="remarketing_tag" value="1" <?php echo esc_attr($is_r_tags); ?>>
431
  <span class="checkmark"></span>
432
- <?php esc_html_e("Enable Google Remarketing Tag","conversios"); ?>
433
  </label>
434
  </div>
435
  <div class="cstmcheck-item">
436
  <label for="dynamic_remarketing_tags">
437
  <input type="checkbox" class="custom-control-input" name="dynamic_remarketing_tags" id="dynamic_remarketing_tags" value="1" <?php echo esc_attr($is_d_r_tags); ?>>
438
  <span class="checkmark"></span>
439
- <?php esc_html_e("Enable Dynamic Remarketing Tag","conversios"); ?>
440
  </label>
441
  </div>
442
  <div class="cstmcheck-item <?php if($this->plan_id == 1){?>cstmcheck-item-pro <?php } ?>">
@@ -444,9 +444,9 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
444
  <?php if($this->plan_id != 1){?>
445
  <input type="checkbox" class="custom-control-input" name="google_ads_conversion_tracking" id="google_ads_conversion_tracking" value="1" <?php echo esc_attr($is_g_ad_c_tracking); ?>>
446
  <span class="checkmark"></span>
447
- <?php esc_html_e("Google Ads conversion tracking","conversios"); ?>
448
  <?php }else{?>
449
- <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lock.svg'); ?>"><label><?php esc_html_e("Google Ads conversion tracking (Pro Plan)","conversios"); ?></label>
450
  <?php } ?>
451
  </label>
452
  </div>
@@ -454,13 +454,13 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
454
  <label for="link_google_analytics_with_google_ads">
455
  <input type="checkbox" class="custom-control-input" name="link_google_analytics_with_google_ads" id="link_google_analytics_with_google_ads" value="1" <?php echo esc_attr($is_l_g_an_w_g_ad); ?>>
456
  <span class="checkmark"></span>
457
- <?php esc_html_e("Link Google Analytics with Google Ads","conversios"); ?>
458
  </label>
459
  </div>
460
  </div>
461
  </div>
462
  <div class="stepsbmtbtn">
463
- <button type="button" id="step_2" class="stepnextbtn stpnxttrgr"><?php esc_html_e("Next","conversios"); ?></button>
464
  <!-- add dslbbtn class for disable button -->
465
  </div>
466
  </form>
@@ -475,8 +475,8 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
475
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
476
  </div>
477
  <div class="stepdetwrap">
478
- <h4><?php esc_html_e("Select Google Merchant Center Account","conversios"); ?></h4>
479
- <p><?php esc_html_e("Make your WooCommerce shop and products available to millions of shoppers across google.","conversios"); ?></p>
480
  </div>
481
  </div>
482
  <div class="stepmoredtlwrp">
@@ -486,24 +486,24 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
486
  <div class="form-group" style="display:none;" id="new_merchant_section">
487
  <div class="text-center">
488
  <div class="alert alert-primary" style="padding: 10px;" role="alert">
489
- <label class="form-label-control font-weight-bold"><?php esc_html_e("New Google Merchant Center with account id: ","conversios"); ?><span id="new_merchant_id"></span> <?php esc_html_e('is created successfully. Click on "Save" to finish the configuration.',"conversios"); ?></label>
490
  </div>
491
  </div>
492
  </div>
493
  <div id="tvc_merchant_section">
494
  <div class="ggladsselectbx">
495
  <select class="slect2bx" id="google_merchant_center_id" name="google_merchant_center_id">
496
- <option value=''><?php esc_html_e("Select Google Merchant Center","conversios"); ?></option>
497
  </select>
498
  </div>
499
- <div class="orwrp"><?php esc_html_e("or","conversios"); ?></div>
500
  <div class="creatnewwrp">
501
- <button type="button" class="cretnewbtn newmrchntbtn"><span class="plusicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png'); ?>" alt="" /></span> <?php esc_html_e("Create New","conversios"); ?></button>
502
  </div>
503
  </div>
504
  </div>
505
  <div class="stepsbmtbtn">
506
- <button type="button" id="step_3" data-enchanter="finish" class="stepnextbtn finishbtn"><?php esc_html_e("Save","conversios"); ?></button>
507
  <!-- add dslbbtn class for disable button -->
508
  </div>
509
  <input type="hidden" id="subscriptionMerchantCenId" name="subscriptionMerchantCenId" value="<?php echo property_exists($googleDetail,"google_merchant_center_id")?esc_attr($googleDetail->google_merchant_center_id):""; ?>">
@@ -528,23 +528,23 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
528
  <div class="sidebrcontainer">
529
  <div class="onbrd-rdmbx">
530
  <div class="rdm-amnt">
531
- <small><?php esc_html_e("Google Ads Credit of","conversios"); ?></small>
532
  <?php echo esc_attr($off_credit_amt); ?>
533
  </div>
534
- <p><?php esc_html_e("New users can get ".esc_attr($off_credit_amt)." in Ad Credits when they spend their first ".esc_attr($off_credit_amt)." on Google Ads within 60 days.","conversios"); ?></p>
535
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/new-google-spend-match.pdf"); ?>" class="lrnmorbtn"><?php esc_html_e("Terms and conditions apply","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/arrow_right.png'); ?>" alt="" /></a>
536
  </div>
537
  <div class="onbrdrgt-nav">
538
  <ul>
539
- <li><a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>"><?php echo esc_html_e("Installation Manual","conversios"); ?></a></li>
540
- <li><a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" href=""><?php esc_html_e("Google Shopping Guide","conversios"); ?></a></li>
541
- <li><a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" href=""><?php esc_html_e("FAQ","conversios"); ?></a></li>
542
  </ul>
543
  </div>
544
  <div class="onbrdr-msg">
545
  <ul>
546
- <li><?php esc_html_e('Not able to connect with any of the google accounts, reach out to us ','conversios'); ?>
547
- <a class="contct-lnk" target="_blank" href="<?php echo esc_url_raw("https://conversios.io/contact-us/?utm_source=app_woo&utm_medium=inapp&utm_campaign=pro_contact"); ?>" href=""><?php esc_html_e("here.","conversios"); ?>
548
  </a>
549
  </li>
550
  </ul>
@@ -564,21 +564,21 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
564
  <div class="onbrdppmain" role="document">
565
  <div class="onbrdnpp-cntner acccretppcntnr">
566
  <div class="onbrdnpp-hdr">
567
- <h4><?php esc_html_e("You have not selected Google Ads account.","conversios"); ?></h4>
568
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
569
  </div>
570
  <div class="onbrdpp-body">
571
- <p><?php esc_html_e("If you do not select Google Ads account, you will not be able to use some of the major features like:","conversios"); ?></p>
572
  <ul>
573
- <li><?php esc_html_e("Dynamic Remarketing Tags","conversios"); ?> </li>
574
- <li><?php esc_html_e("Google Smart Shopping Campaigns","conversios"); ?></li>
575
- <li><?php esc_html_e("Google Analytics and Google Ads linking","conversios"); ?></li>
576
  </ul>
577
- <p><?php esc_html_e("Are you sure you want to continue without selecting Google Ads account?","conversios"); ?></p>
578
  </div>
579
  <div class="ppfooterbtn">
580
- <button type="button" class="ppblubtn btn-secondary" data-dismiss="modal" id="ads-skip-cancel"><?php esc_html_e("Cancel","conversios"); ?></button>
581
- <button type="button" class="ppblubtn btn-primary" data-dismiss="modal" id="ads-skip-continue"><?php esc_html_e("Continue","conversios"); ?></button>
582
  </div>
583
  </div>
584
  </div>
@@ -588,14 +588,14 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
588
  <div class="onbrdppmain">
589
  <div class="onbrdnpp-cntner ggladsppcntnr">
590
  <div class="onbrdnpp-hdr">
591
- <h4><?php esc_html_e("Enable Google Ads Account","conversios"); ?></h4>
592
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
593
  </div>
594
  <div class="onbrdpp-body">
595
- <p><?php esc_html_e("You’ll receive an invite from Google on your email. Accept the invitation to enable your Google Ads Account.","conversios"); ?></p>
596
  </div>
597
  <div class="ppfooterbtn">
598
- <button type="button" id="ads-continue" class="ppblubtn sndinvitebtn"><?php esc_html_e("Send Invite","conversios"); ?></button>
599
  </div>
600
  </div>
601
  </div>
@@ -605,16 +605,16 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
605
  <div class="onbrdppmain">
606
  <div class="onbrdnpp-cntner acccretppcntnr">
607
  <div class="onbrdnpp-hdr">
608
- <h4><?php esc_html_e("You have not selected Google merchant center account.","conversios"); ?></h4>
609
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
610
  </div>
611
  <div class="onbrdpp-body">
612
- <p><?php esc_html_e("If you do not select a merchant center account, you will not be able to use complete google shopping features.","conversios"); ?></p>
613
- <p><?php esc_html_e("Are you sure you want to continue without selecting a merchant center account?","conversios"); ?></p>
614
  </div>
615
  <div class="ppfooterbtn">
616
- <button type="button" class="ppblubtn btn-secondary" data-dismiss="modal" id="merchant-center-skip-cancel"><?php esc_html_e("Cancel","conversios"); ?></button>
617
- <button type="button" class="ppblubtn btn-primary" data-dismiss="modal" id="merchant-center-skip-continue"><?php esc_html_e("Continue","conversios"); ?></button>
618
  </div>
619
  </div>
620
  </div>
@@ -628,11 +628,11 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
628
  <div class="row">
629
  <div class="crtemrchnpp-lft">
630
  <div class="crtemrchpplft-top">
631
- <h4><?php esc_html_e("Create Google Merchant Center Account","conversios"); ?></h4>
632
- <p><?php esc_html_e("Before you can upload product data, you’ll need to verify and claim your store’s website URL. Claiming associates your website URL with your Google Merchant Center account.","conversios"); ?></p>
633
  </div>
634
  <div class="claimedbx">
635
- <?php esc_html_e("Your site will automatically be claimed and verified.","conversios"); ?>
636
  </div>
637
  <div class="mrchntformwrp">
638
  <form action="#">
@@ -643,14 +643,14 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
643
  <label for="adult_content">
644
  <input class="" type="checkbox" name="adult_content" id="adult_content">
645
  <span class="checkmark"></span>
646
- <?php esc_html_e("My site contains","conversios"); ?>
647
  </label>
648
- <strong><?php esc_html_e("Adult Content","conversios"); ?></strong>
649
  </div>
650
  </div>
651
  <div class="form-row">
652
- <input type="text" class="fromfiled" name="store_name" id="store_name" placeholder="<?php esc_html_e("Enter Store Name","conversios"); ?>" required>
653
- <div class="inputinfotxt"><?php esc_html_e("This name will appear in your Shopping Ads.","conversios"); ?></div>
654
  </div>
655
  <div class="form-row">
656
  <?php echo $this->get_countries($this->tvc_data['user_country']); ?>
@@ -660,27 +660,27 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
660
  <label for="terms_conditions">
661
  <input class="" type="checkbox" name="concent" id="terms_conditions">
662
  <span class="checkmark"></span>
663
- <?php esc_html_e("I accept the","conversios"); ?>
664
  </label>
665
- <a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/160173?hl=en"); ?>"><?php esc_html_e("terms & conditions","conversios"); ?></a>
666
  </div>
667
  </div>
668
  </form>
669
  </div>
670
  <div class="ppfooterbtn">
671
- <button type="button" id="create_merchant_account" class="cretemrchntbtn"><?php esc_html_e("Create Account","conversios"); ?>
672
  </button>
673
  </div>
674
  </div>
675
  <div class="crtemrchnpp-right">
676
- <h6><?php esc_html_e("To use Google Shopping, your website must meet these requirements:","conversios"); ?></h6>
677
  <ul>
678
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6149970?hl=en"); ?>"><?php esc_html_e("Google Shopping ads policies","conversios"); ?></a></li>
679
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Accurate Contact Information","conversios"); ?></a></li>
680
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150122"); ?>"><?php esc_html_e("Secure collection of process and personal data","conversios"); ?></a></li>
681
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Return Policy","conversios"); ?></a></li>
682
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Billing terms & conditions","conversios"); ?></a></li>
683
- <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150118"); ?>"><?php esc_html_e("Complete checkout process","conversios"); ?></a></li>
684
  </ul>
685
  </div>
686
  </div>
@@ -695,16 +695,16 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
695
  <div class="onbrdppmain">
696
  <div class="onbrdnpp-cntner congratppcntnr">
697
  <div class="onbrdnpp-hdr txtcnter">
698
- <h2><?php esc_html_e("Congratulations!!","conversios"); ?></h2>
699
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png'); ?>" alt="" /></div>
700
  </div>
701
  <div class="onbrdpp-body congratppbody">
702
- <p><?php esc_html_e("All the Google accounts are successfully configured with your store. Below is the summary.","conversios"); ?></p>
703
  <div class="congratppdtlwrp">
704
  <div class="cngrtppdtl-item" id="google_analytics_property_id_info">
705
  <div class="cngtrpplft">
706
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
707
- <?php esc_html_e("Google Analytics Property Id:","conversios"); ?>
708
  </div>
709
  <div class="cngtrpprgt" id="selected_google_analytics_property"></div>
710
  <div>
@@ -714,7 +714,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
714
  <div class="cngrtppdtl-item" id="google_analytics_measurement_id_info">
715
  <div class="cngtrpplft">
716
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
717
- <?php esc_html_e("Google Analytics 4 Measurement Id:","conversios"); ?>
718
  </div>
719
  <div class="cngtrpprgt" id="selected_google_analytics_measurement"></div>
720
  <div>
@@ -724,7 +724,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
724
  <div class="cngrtppdtl-item" id="google_ads_info">
725
  <div class="cngtrpplft">
726
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
727
- <?php esc_html_e("Google Ads Account:","conversios"); ?>
728
  </div>
729
  <div class="cngtrpprgt" id="selected_google_ads_account"></div>
730
  <div>
@@ -734,7 +734,7 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
734
  <div class="cngrtppdtl-item" id="google_merchant_center_info">
735
  <div class="cngtrpplft">
736
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
737
- <?php esc_html_e("Google Merchant Center Account","conversios"); ?>
738
  </div>
739
  <div class="cngtrpprgt" id="selected_google_merchant_center"></div>
740
  <div>
@@ -744,8 +744,8 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
744
  </div>
745
  </div>
746
  <div class="ppfooterbtn">
747
- <button type="button" id="confirm_selection" class="ppblubtn"><?php esc_html_e("Confirm and go to Product Sync","conversios"); ?></button>
748
- <button type="button" id="confirm_selection_dash" class="ppblubtn"><?php esc_html_e("Confirm and go to the Dashboard ","conversios");?> </button>
749
  </div>
750
  </div>
751
  </div>
@@ -1085,8 +1085,8 @@ if ( ! class_exists( 'Conversios_Onboarding' ) ) {
1085
  // Getting started - shows after installation.
1086
  if(isset($_GET['page']) && sanitize_text_field($_GET['page']) == "conversios_onboarding"){
1087
  add_dashboard_page(
1088
- esc_html__( 'Welcome to Conversios Onboarding', 'conversios' ),
1089
- esc_html__( 'Welcome to Conversios Onboarding', 'conversios' ),
1090
  apply_filters( 'conversios_welcome', 'manage_options' ),
1091
  'conversios_onboarding',
1092
  array( $this, 'welcome_screen' )
71
  $contData = json_decode($getCountris);
72
  if (!empty($user_country)) {
73
  $data = "<select id='selectCountry' name='country' class='form-control slect2bx' readonly='true'>";
74
+ $data .= "<option value=''>".esc_html__("Please select country","enhanced-e-commerce-for-woocommerce-store")."</option>";
75
  foreach ($contData as $key => $value) {
76
  $selected = ($value->code == $user_country) ? "selected='selected'" : "";
77
  $data .= "<option value=" . esc_attr($value->code) . " " . esc_attr($selected) . " >" . esc_attr($value->name) . "</option>";
79
  $data .= "</select>";
80
  } else {
81
  $data = "<select id='selectCountry' name='country' class='form-control slect2bx'>";
82
+ $data .= "<option value=''>".esc_html__("Please select country","enhanced-e-commerce-for-woocommerce-store")."</option>";
83
  foreach ($contData as $key => $value) {
84
  $data .= "<option value=" . esc_attr($value->code) . ">" . esc_attr($value->name) . "</option>";
85
  }
201
  <div class="container">
202
  <div class="smallcontainer">
203
  <div class="onbordingtop">
204
+ <h2><?php esc_html_e("Let’s get you started.","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
205
+ <p><?php esc_html_e("Automate eCommerce tracking in Google Analytics, Dynamic Remarketing and enhanced conversions tags and product feed sync in google merchant center to boost your eCommerce sales.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
206
  </div>
207
  <div class="row">
208
  <!-- onborading left start -->
214
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
215
  </div>
216
  <div class="stepdetwrap">
217
+ <h4><?php esc_html_e("Connect Conversios with your website","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
218
  <p><?php echo (isset($this->tvc_data['g_mail']) && esc_attr($this->subscriptionId) )?esc_attr($this->tvc_data['g_mail']):""; ?></p>
219
  </div>
220
  </div>
225
  <div class="google-icon-wrapper">
226
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
227
  </div>
228
+ <p class="btn-text"><b><?php esc_html_e("Sign in with google","enhanced-e-commerce-for-woocommerce-store"); ?></b></p>
229
  </div>
230
  <?php } else{?>
231
 
232
  <?php if($this->is_refresh_token_expire == true){?>
233
+ <p class="alert alert-primary"><?php esc_html_e("It seems the token to access your Google accounts is expired. Sign in again to continue.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
234
  <div class="google_connect_url google-btn">
235
  <div class="google-icon-wrapper">
236
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
237
  </div>
238
+ <p class="btn-text"><b><?php esc_html_e("Sign in with google","enhanced-e-commerce-for-woocommerce-store"); ?></b></p>
239
  </div>
240
  <?php } else{ ?>
241
  <div class="google_connect_url google-btn">
242
  <div class="google-icon-wrapper">
243
  <img class="google-icon" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/g-logo.png'); ?>"/>
244
  </div>
245
+ <p class="btn-text mr-35"><b><?php esc_html_e("Reauthorize","enhanced-e-commerce-for-woocommerce-store"); ?></b></p>
246
  </div>
247
  <?php } ?>
248
  <?php } ?>
249
+ <p><?php esc_html_e("Make sure you sign in with the google email account that has all privileges to access google analytics, google ads and google merchant center account that you want to configure for your store. We take programmatic access to your accounts to automate the Google analytics tracking and Google Shopping for you so that you do not need any developer or expert to set up the plugin.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
250
  </div>
251
  </div>
252
  </div>
258
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
259
  </div>
260
  <div class="stepdetwrap">
261
+ <h4><?php esc_html_e("Connect Google Analytics Account","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
262
+ <p><?php esc_html_e("Select your Google Analytics account from the dropdown below and hit “Next”. That’s it..!! Google Analytics eCommerce tracking will be set up automatically. Isn’t it easy peasy??","enhanced-e-commerce-for-woocommerce-store"); ?></p>
263
  </div>
264
  </div>
265
  <div class="stepmoredtlwrp">
266
  <div class="stepmoredtl">
267
  <form action="#">
268
  <div class="form-row">
269
+ <h5><?php esc_html_e("How do you plan to tag your website?","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
270
  <div class="cstmrdobtn-item">
271
  <label for="univeral">
272
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "UA")); ?> name="analytic_tag_type" id="univeral" value="UA">
273
  <span class="checkmark"></span>
274
+ <?php esc_html_e("Universal Analytics (Google Analytics 3)","enhanced-e-commerce-for-woocommerce-store"); ?>
275
  </label>
276
  <div id="UA" class="slctunivr-filed">
277
  <div class="tvc-dropdown">
278
  <div class="tvc-dropdown-header" id="ua_web_property_id_option_val" data-profileid="" data-accountid="<?php if($googleDetail->ua_analytic_account_id){ echo esc_attr($googleDetail->ua_analytic_account_id); } ?>" data-val="<?php if($googleDetail->property_id){ echo esc_attr($googleDetail->property_id); } ?>"><?php if($googleDetail->property_id){
279
  echo esc_attr($googleDetail->property_id);
280
+ }else{?><?php esc_html_e("Select Property Id","enhanced-e-commerce-for-woocommerce-store"); ?><?php } ?></div>
281
  <div class="tvc-dropdown-content" id="ua_web_property_id_option">
282
+ <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Property Id","enhanced-e-commerce-for-woocommerce-store"); ?></option></div>
283
+ <div class="tvc-ua-option-more option"><?php esc_html_e("Load More","enhanced-e-commerce-for-woocommerce-store"); ?></div>
284
  </div>
285
  </div>
286
 
290
  <label for="gglanytc">
291
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "GA4")); ?> name="analytic_tag_type" id="gglanytc" value="GA4">
292
  <span class="checkmark"></span>
293
+ <?php esc_html_e("Google Analytics 4","enhanced-e-commerce-for-woocommerce-store"); ?>
294
  </label>
295
  <div id="GA4" class="slctunivr-filed">
296
 
298
  <div class="tvc-dropdown-header" id="ga4_web_measurement_id_option_val" data-name="" data-accountid="<?php if($googleDetail->ga4_analytic_account_id){ echo esc_attr($googleDetail->ga4_analytic_account_id); } ?>" data-val="<?php if($googleDetail->measurement_id){ echo esc_attr($googleDetail->measurement_id); } ?>">
299
  <?php if($googleDetail->measurement_id){
300
  echo esc_attr($googleDetail->measurement_id);
301
+ }else{?><?php esc_html_e("Select Measurement Id","enhanced-e-commerce-for-woocommerce-store"); ?>
302
  <?php } ?></div>
303
  <div class="tvc-dropdown-content" id="ga4_web_measurement_id_option">
304
+ <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Measurement Id","enhanced-e-commerce-for-woocommerce-store"); ?></option></div>
305
+ <div class="tvc-ga4-option-more option"><?php esc_html_e("Load More","enhanced-e-commerce-for-woocommerce-store"); ?></div>
306
  </div>
307
  </div>
308
 
312
  <label for="both">
313
  <input type="radio" <?php echo esc_attr($this->is_checked($tracking_option, "BOTH")); ?> name="analytic_tag_type" id="both" value="BOTH">
314
  <span class="checkmark"></span>
315
+ <?php esc_html_e("Both","enhanced-e-commerce-for-woocommerce-store"); ?>
316
  </label>
317
  <div id="BOTH" class="slctunivr-filed">
318
  <div class="botslectbxitem">
320
  <div class="tvc-dropdown">
321
  <div class="tvc-dropdown-header" id="both_ua_web_property_id_option_val" data-profileid="" data-accountid="<?php if($googleDetail->ua_analytic_account_id){ echo esc_attr($googleDetail->ua_analytic_account_id); } ?>" data-val="<?php if($googleDetail->property_id){ echo esc_attr($googleDetail->property_id); } ?>"><?php if($googleDetail->property_id){
322
  echo esc_attr($googleDetail->property_id);
323
+ }else{?><?php esc_html_e("Select Property Id","enhanced-e-commerce-for-woocommerce-store"); ?><?php } ?></div>
324
  <div class="tvc-dropdown-content" id="both_ua_web_property_id_option">
325
+ <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Property Id","enhanced-e-commerce-for-woocommerce-store"); ?></option></div>
326
+ <div class="tvc-ua-option-more option"><?php esc_html_e("Load More","enhanced-e-commerce-for-woocommerce-store"); ?></div>
327
  </div>
328
  </div>
329
 
334
  <div class="tvc-dropdown-header" id="both_ga4_web_measurement_id_option_val" data-name="" data-accountid="<?php if($googleDetail->ga4_analytic_account_id){ echo esc_attr($googleDetail->ga4_analytic_account_id); } ?>" data-val="<?php if($googleDetail->measurement_id){ echo esc_attr($googleDetail->measurement_id); } ?>">
335
  <?php if($googleDetail->measurement_id){
336
  echo esc_attr($googleDetail->measurement_id);
337
+ }else{?><?php esc_html_e("Select Measurement Id","enhanced-e-commerce-for-woocommerce-store"); ?>
338
  <?php } ?></div>
339
  <div class="tvc-dropdown-content" id="both_ga4_web_measurement_id_option">
340
+ <div class="tvc-select-items"><option value=""><?php esc_html_e("Select Measurement Id","enhanced-e-commerce-for-woocommerce-store"); ?></option></div>
341
+ <div class="tvc-ga4-option-more option"><?php esc_html_e("Load More","enhanced-e-commerce-for-woocommerce-store"); ?></div>
342
  </div>
343
  </div>
344
  </div>
347
  </div>
348
  </div>
349
  <div class="form-row">
350
+ <h5><?php esc_html_e("Advance Settings (Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
351
  <div class="chckbxbgbx">
352
  <div class="cstmcheck-item">
353
  <label for="enhanced_e_commerce_tracking">
354
  <input type="checkbox" class="custom-control-input" name="enhanced_e_commerce_tracking" id="enhanced_e_commerce_tracking" <?php echo esc_attr($is_e_e_tracking); ?>>
355
  <span class="checkmark"></span>
356
+ <?php esc_html_e("Enhaced e-commerce tracking","enhanced-e-commerce-for-woocommerce-store"); ?>
357
  </label>
358
  </div>
359
  <div class="cstmcheck-item">
360
  <label for="add_gtag_snippet">
361
  <input type="checkbox" class="custom-control-input" name="add_gtag_snippe" id="add_gtag_snippet" <?php echo esc_attr($is_a_g_snippet); ?>>
362
  <span class="checkmark"></span>
363
+ <?php esc_html_e("Add gtag.js snippet","enhanced-e-commerce-for-woocommerce-store"); ?>
364
  </label>
365
  </div>
366
  </div>
368
  <div class="stepsbmtbtn">
369
  <input type="hidden" id="subscriptionPropertyId" name="subscriptionPropertyId" value="<?php echo (property_exists($googleDetail,"property_id"))?esc_attr($googleDetail->property_id):""; ?>">
370
  <input type="hidden" id="subscriptionMeasurementId" name="subscriptionMeasurementId" value="<?php echo (property_exists($googleDetail,"measurement_id"))?esc_attr($googleDetail->measurement_id):""; ?>">
371
+ <button type="button" disabled id="step_1" class="stepnextbtn stpnxttrgr"><?php esc_html_e("Next","enhanced-e-commerce-for-woocommerce-store"); ?></button>
372
  </div>
373
  </form>
374
  </div>
382
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
383
  </div>
384
  <div class="stepdetwrap">
385
+ <h4><?php esc_html_e("Connect Google Ads account","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
386
+ <p><?php esc_html_e("Select the Google Ads account from the drop down or create a new one. Once you connect Google Ads account, dynamic remarketing, Google Ads conversion and enhanced conversion tags will be activated which will help your reach out to your store visitor based on their browsing behavior and your campaign measurements will be effective. DO NOT MISS THIS if you really want to increase your eCommerce sales.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
387
  </div>
388
  </div>
389
  <div class="stepmoredtlwrp">
393
  <div class="ggladsselectbx">
394
  <input type="hidden" id="subscriptionGoogleAdsId" name="subscriptionGoogleAdsId" value="<?php echo property_exists($googleDetail,"google_ads_id")?esc_attr($googleDetail->google_ads_id):""; ?>">
395
  <select class="slect2bx google_ads_sel" id="ads-account" name="customer_id">
396
+ <option value=''><?php esc_html_e("Select Google Ads Account","enhanced-e-commerce-for-woocommerce-store"); ?></option>
397
  </select>
398
  </div>
399
+ <div class="orwrp"><?php esc_html_e("or","enhanced-e-commerce-for-woocommerce-store"); ?></div>
400
  <div class="creatnewwrp">
401
+ <button type="button" class="cretnewbtn newggladsbtn"><span class="plusicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png'); ?>" alt="" /></span> <?php esc_html_e("Create New","enhanced-e-commerce-for-woocommerce-store"); ?></button>
402
  </div>
403
  </div>
404
 
405
  <div class="selcttopwrap">
406
  <div class="onbrdpp-body alert alert-primary" style="display:none;" id="new_google_ads_section">
407
+ <h4><?php esc_html_e("Account Created","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
408
+ <p><?php esc_html_e("Your Google Ads Account has been created","enhanced-e-commerce-for-woocommerce-store"); ?> <strong>(<b><span id="new_google_ads_id"></span></b>).</strong></p>
409
+ <h5><?php esc_html_e("Steps to claim your Google Ads Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
410
  <ol>
411
+ <li><?php esc_html_e("Accept invitation mail from Google Ads sent to your email address","enhanced-e-commerce-for-woocommerce-store"); ?> <em><?php echo (isset($this->tvc_data['g_mail']))?esc_attr($this->tvc_data['g_mail']):""; ?></em><span id="invitationLink"><br><em>OR</em> Open
412
  <a href="" target="_blank" id="ads_invitationLink">Invitation Link</a></span>
413
  </li>
414
+ <li><?php esc_html_e("Log into your Google Ads account and set up your billing preferences","enhanced-e-commerce-for-woocommerce-store"); ?></li>
415
  </ol>
416
  </div>
417
  </div>
423
  $is_d_r_tags = (property_exists($googleDetail,"dynamic_remarketing_tags") && $googleDetail->dynamic_remarketing_tags == 1)?"checked":(($defaulSelection == 1)?"checked":"");
424
  $is_g_ad_c_tracking = (property_exists($googleDetail,"google_ads_conversion_tracking") && $googleDetail->google_ads_conversion_tracking == 1)?"checked":(($defaulSelection == 1)?"checked":"");
425
  ?>
426
+ <h5><?php esc_html_e("Advance Settings (Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
427
  <div class="chckbxbgbx dsplcolmview">
428
  <div class="cstmcheck-item">
429
  <label for="remarketing_tag">
430
  <input type="checkbox" class="custom-control-input" name="remarketing_tag" id="remarketing_tag" value="1" <?php echo esc_attr($is_r_tags); ?>>
431
  <span class="checkmark"></span>
432
+ <?php esc_html_e("Enable Google Remarketing Tag","enhanced-e-commerce-for-woocommerce-store"); ?>
433
  </label>
434
  </div>
435
  <div class="cstmcheck-item">
436
  <label for="dynamic_remarketing_tags">
437
  <input type="checkbox" class="custom-control-input" name="dynamic_remarketing_tags" id="dynamic_remarketing_tags" value="1" <?php echo esc_attr($is_d_r_tags); ?>>
438
  <span class="checkmark"></span>
439
+ <?php esc_html_e("Enable Dynamic Remarketing Tag","enhanced-e-commerce-for-woocommerce-store"); ?>
440
  </label>
441
  </div>
442
  <div class="cstmcheck-item <?php if($this->plan_id == 1){?>cstmcheck-item-pro <?php } ?>">
444
  <?php if($this->plan_id != 1){?>
445
  <input type="checkbox" class="custom-control-input" name="google_ads_conversion_tracking" id="google_ads_conversion_tracking" value="1" <?php echo esc_attr($is_g_ad_c_tracking); ?>>
446
  <span class="checkmark"></span>
447
+ <?php esc_html_e("Google Ads conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?>
448
  <?php }else{?>
449
+ <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lock.svg'); ?>"><label><?php esc_html_e("Google Ads conversion tracking (Pro Plan)","enhanced-e-commerce-for-woocommerce-store"); ?></label>
450
  <?php } ?>
451
  </label>
452
  </div>
454
  <label for="link_google_analytics_with_google_ads">
455
  <input type="checkbox" class="custom-control-input" name="link_google_analytics_with_google_ads" id="link_google_analytics_with_google_ads" value="1" <?php echo esc_attr($is_l_g_an_w_g_ad); ?>>
456
  <span class="checkmark"></span>
457
+ <?php esc_html_e("Link Google Analytics with Google Ads","enhanced-e-commerce-for-woocommerce-store"); ?>
458
  </label>
459
  </div>
460
  </div>
461
  </div>
462
  <div class="stepsbmtbtn">
463
+ <button type="button" id="step_2" class="stepnextbtn stpnxttrgr"><?php esc_html_e("Next","enhanced-e-commerce-for-woocommerce-store"); ?></button>
464
  <!-- add dslbbtn class for disable button -->
465
  </div>
466
  </form>
475
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/check-wbg.png'); ?>" alt="" />
476
  </div>
477
  <div class="stepdetwrap">
478
+ <h4><?php esc_html_e("Select Google Merchant Center Account","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
479
+ <p><?php esc_html_e("Make your WooCommerce shop and products available to millions of shoppers across google.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
480
  </div>
481
  </div>
482
  <div class="stepmoredtlwrp">
486
  <div class="form-group" style="display:none;" id="new_merchant_section">
487
  <div class="text-center">
488
  <div class="alert alert-primary" style="padding: 10px;" role="alert">
489
+ <label class="form-label-control font-weight-bold"><?php esc_html_e("New Google Merchant Center with account id: ","enhanced-e-commerce-for-woocommerce-store"); ?><span id="new_merchant_id"></span> <?php esc_html_e('is created successfully. Click on "Save" to finish the configuration.',"enhanced-e-commerce-for-woocommerce-store"); ?></label>
490
  </div>
491
  </div>
492
  </div>
493
  <div id="tvc_merchant_section">
494
  <div class="ggladsselectbx">
495
  <select class="slect2bx" id="google_merchant_center_id" name="google_merchant_center_id">
496
+ <option value=''><?php esc_html_e("Select Google Merchant Center","enhanced-e-commerce-for-woocommerce-store"); ?></option>
497
  </select>
498
  </div>
499
+ <div class="orwrp"><?php esc_html_e("or","enhanced-e-commerce-for-woocommerce-store"); ?></div>
500
  <div class="creatnewwrp">
501
+ <button type="button" class="cretnewbtn newmrchntbtn"><span class="plusicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png'); ?>" alt="" /></span> <?php esc_html_e("Create New","enhanced-e-commerce-for-woocommerce-store"); ?></button>
502
  </div>
503
  </div>
504
  </div>
505
  <div class="stepsbmtbtn">
506
+ <button type="button" id="step_3" data-enchanter="finish" class="stepnextbtn finishbtn"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
507
  <!-- add dslbbtn class for disable button -->
508
  </div>
509
  <input type="hidden" id="subscriptionMerchantCenId" name="subscriptionMerchantCenId" value="<?php echo property_exists($googleDetail,"google_merchant_center_id")?esc_attr($googleDetail->google_merchant_center_id):""; ?>">
528
  <div class="sidebrcontainer">
529
  <div class="onbrd-rdmbx">
530
  <div class="rdm-amnt">
531
+ <small><?php esc_html_e("Google Ads Credit of","enhanced-e-commerce-for-woocommerce-store"); ?></small>
532
  <?php echo esc_attr($off_credit_amt); ?>
533
  </div>
534
+ <p><?php esc_html_e("New users can get ".esc_attr($off_credit_amt)." in Ad Credits when they spend their first ".esc_attr($off_credit_amt)." on Google Ads within 60 days.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
535
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/new-google-spend-match.pdf"); ?>" class="lrnmorbtn"><?php esc_html_e("Terms and conditions apply","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/arrow_right.png'); ?>" alt="" /></a>
536
  </div>
537
  <div class="onbrdrgt-nav">
538
  <ul>
539
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>"><?php echo esc_html_e("Installation Manual","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
540
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" href=""><?php esc_html_e("Google Shopping Guide","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
541
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" href=""><?php esc_html_e("FAQ","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
542
  </ul>
543
  </div>
544
  <div class="onbrdr-msg">
545
  <ul>
546
+ <li><?php esc_html_e('Not able to connect with any of the google accounts, reach out to us ','enhanced-e-commerce-for-woocommerce-store'); ?>
547
+ <a class="contct-lnk" target="_blank" href="<?php echo esc_url_raw("https://conversios.io/contact-us/?utm_source=app_woo&utm_medium=inapp&utm_campaign=pro_contact"); ?>" href=""><?php esc_html_e("here.","enhanced-e-commerce-for-woocommerce-store"); ?>
548
  </a>
549
  </li>
550
  </ul>
564
  <div class="onbrdppmain" role="document">
565
  <div class="onbrdnpp-cntner acccretppcntnr">
566
  <div class="onbrdnpp-hdr">
567
+ <h4><?php esc_html_e("You have not selected Google Ads account.","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
568
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
569
  </div>
570
  <div class="onbrdpp-body">
571
+ <p><?php esc_html_e("If you do not select Google Ads account, you will not be able to use some of the major features like:","enhanced-e-commerce-for-woocommerce-store"); ?></p>
572
  <ul>
573
+ <li><?php esc_html_e("Dynamic Remarketing Tags","enhanced-e-commerce-for-woocommerce-store"); ?> </li>
574
+ <li><?php esc_html_e("Google Smart Shopping Campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></li>
575
+ <li><?php esc_html_e("Google Analytics and Google Ads linking","enhanced-e-commerce-for-woocommerce-store"); ?></li>
576
  </ul>
577
+ <p><?php esc_html_e("Are you sure you want to continue without selecting Google Ads account?","enhanced-e-commerce-for-woocommerce-store"); ?></p>
578
  </div>
579
  <div class="ppfooterbtn">
580
+ <button type="button" class="ppblubtn btn-secondary" data-dismiss="modal" id="ads-skip-cancel"><?php esc_html_e("Cancel","enhanced-e-commerce-for-woocommerce-store"); ?></button>
581
+ <button type="button" class="ppblubtn btn-primary" data-dismiss="modal" id="ads-skip-continue"><?php esc_html_e("Continue","enhanced-e-commerce-for-woocommerce-store"); ?></button>
582
  </div>
583
  </div>
584
  </div>
588
  <div class="onbrdppmain">
589
  <div class="onbrdnpp-cntner ggladsppcntnr">
590
  <div class="onbrdnpp-hdr">
591
+ <h4><?php esc_html_e("Enable Google Ads Account","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
592
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
593
  </div>
594
  <div class="onbrdpp-body">
595
+ <p><?php esc_html_e("You’ll receive an invite from Google on your email. Accept the invitation to enable your Google Ads Account.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
596
  </div>
597
  <div class="ppfooterbtn">
598
+ <button type="button" id="ads-continue" class="ppblubtn sndinvitebtn"><?php esc_html_e("Send Invite","enhanced-e-commerce-for-woocommerce-store"); ?></button>
599
  </div>
600
  </div>
601
  </div>
605
  <div class="onbrdppmain">
606
  <div class="onbrdnpp-cntner acccretppcntnr">
607
  <div class="onbrdnpp-hdr">
608
+ <h4><?php esc_html_e("You have not selected Google merchant center account.","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
609
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png');?>" alt="" /></div>
610
  </div>
611
  <div class="onbrdpp-body">
612
+ <p><?php esc_html_e("If you do not select a merchant center account, you will not be able to use complete google shopping features.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
613
+ <p><?php esc_html_e("Are you sure you want to continue without selecting a merchant center account?","enhanced-e-commerce-for-woocommerce-store"); ?></p>
614
  </div>
615
  <div class="ppfooterbtn">
616
+ <button type="button" class="ppblubtn btn-secondary" data-dismiss="modal" id="merchant-center-skip-cancel"><?php esc_html_e("Cancel","enhanced-e-commerce-for-woocommerce-store"); ?></button>
617
+ <button type="button" class="ppblubtn btn-primary" data-dismiss="modal" id="merchant-center-skip-continue"><?php esc_html_e("Continue","enhanced-e-commerce-for-woocommerce-store"); ?></button>
618
  </div>
619
  </div>
620
  </div>
628
  <div class="row">
629
  <div class="crtemrchnpp-lft">
630
  <div class="crtemrchpplft-top">
631
+ <h4><?php esc_html_e("Create Google Merchant Center Account","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
632
+ <p><?php esc_html_e("Before you can upload product data, you’ll need to verify and claim your store’s website URL. Claiming associates your website URL with your Google Merchant Center account.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
633
  </div>
634
  <div class="claimedbx">
635
+ <?php esc_html_e("Your site will automatically be claimed and verified.","enhanced-e-commerce-for-woocommerce-store"); ?>
636
  </div>
637
  <div class="mrchntformwrp">
638
  <form action="#">
643
  <label for="adult_content">
644
  <input class="" type="checkbox" name="adult_content" id="adult_content">
645
  <span class="checkmark"></span>
646
+ <?php esc_html_e("My site contains","enhanced-e-commerce-for-woocommerce-store"); ?>
647
  </label>
648
+ <strong><?php esc_html_e("Adult Content","enhanced-e-commerce-for-woocommerce-store"); ?></strong>
649
  </div>
650
  </div>
651
  <div class="form-row">
652
+ <input type="text" class="fromfiled" name="store_name" id="store_name" placeholder="<?php esc_html_e("Enter Store Name","enhanced-e-commerce-for-woocommerce-store"); ?>" required>
653
+ <div class="inputinfotxt"><?php esc_html_e("This name will appear in your Shopping Ads.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
654
  </div>
655
  <div class="form-row">
656
  <?php echo $this->get_countries($this->tvc_data['user_country']); ?>
660
  <label for="terms_conditions">
661
  <input class="" type="checkbox" name="concent" id="terms_conditions">
662
  <span class="checkmark"></span>
663
+ <?php esc_html_e("I accept the","enhanced-e-commerce-for-woocommerce-store"); ?>
664
  </label>
665
+ <a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/160173?hl=en"); ?>"><?php esc_html_e("terms & conditions","enhanced-e-commerce-for-woocommerce-store"); ?></a>
666
  </div>
667
  </div>
668
  </form>
669
  </div>
670
  <div class="ppfooterbtn">
671
+ <button type="button" id="create_merchant_account" class="cretemrchntbtn"><?php esc_html_e("Create Account","enhanced-e-commerce-for-woocommerce-store"); ?>
672
  </button>
673
  </div>
674
  </div>
675
  <div class="crtemrchnpp-right">
676
+ <h6><?php esc_html_e("To use Google Shopping, your website must meet these requirements:","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
677
  <ul>
678
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6149970?hl=en"); ?>"><?php esc_html_e("Google Shopping ads policies","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
679
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Accurate Contact Information","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
680
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150122"); ?>"><?php esc_html_e("Secure collection of process and personal data","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
681
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Return Policy","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
682
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150127"); ?>"><?php esc_html_e("Billing terms & conditions","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
683
+ <li><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6150118"); ?>"><?php esc_html_e("Complete checkout process","enhanced-e-commerce-for-woocommerce-store"); ?></a></li>
684
  </ul>
685
  </div>
686
  </div>
695
  <div class="onbrdppmain">
696
  <div class="onbrdnpp-cntner congratppcntnr">
697
  <div class="onbrdnpp-hdr txtcnter">
698
+ <h2><?php esc_html_e("Congratulations!!","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
699
  <div class="ppclsbtn clsbtntrgr"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-icon.png'); ?>" alt="" /></div>
700
  </div>
701
  <div class="onbrdpp-body congratppbody">
702
+ <p><?php esc_html_e("All the Google accounts are successfully configured with your store. Below is the summary.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
703
  <div class="congratppdtlwrp">
704
  <div class="cngrtppdtl-item" id="google_analytics_property_id_info">
705
  <div class="cngtrpplft">
706
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
707
+ <?php esc_html_e("Google Analytics Property Id:","enhanced-e-commerce-for-woocommerce-store"); ?>
708
  </div>
709
  <div class="cngtrpprgt" id="selected_google_analytics_property"></div>
710
  <div>
714
  <div class="cngrtppdtl-item" id="google_analytics_measurement_id_info">
715
  <div class="cngtrpplft">
716
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
717
+ <?php esc_html_e("Google Analytics 4 Measurement Id:","enhanced-e-commerce-for-woocommerce-store"); ?>
718
  </div>
719
  <div class="cngtrpprgt" id="selected_google_analytics_measurement"></div>
720
  <div>
724
  <div class="cngrtppdtl-item" id="google_ads_info">
725
  <div class="cngtrpplft">
726
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
727
+ <?php esc_html_e("Google Ads Account:","enhanced-e-commerce-for-woocommerce-store"); ?>
728
  </div>
729
  <div class="cngtrpprgt" id="selected_google_ads_account"></div>
730
  <div>
734
  <div class="cngrtppdtl-item" id="google_merchant_center_info">
735
  <div class="cngtrpplft">
736
  <span class="cngrtchckicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-check.png'); ?>" alt="" /></span>
737
+ <?php esc_html_e("Google Merchant Center Account","enhanced-e-commerce-for-woocommerce-store"); ?>
738
  </div>
739
  <div class="cngtrpprgt" id="selected_google_merchant_center"></div>
740
  <div>
744
  </div>
745
  </div>
746
  <div class="ppfooterbtn">
747
+ <button type="button" id="confirm_selection" class="ppblubtn"><?php esc_html_e("Confirm and go to Product Sync","enhanced-e-commerce-for-woocommerce-store"); ?></button>
748
+ <button type="button" id="confirm_selection_dash" class="ppblubtn"><?php esc_html_e("Confirm and go to the Dashboard ","enhanced-e-commerce-for-woocommerce-store");?> </button>
749
  </div>
750
  </div>
751
  </div>
1085
  // Getting started - shows after installation.
1086
  if(isset($_GET['page']) && sanitize_text_field($_GET['page']) == "conversios_onboarding"){
1087
  add_dashboard_page(
1088
+ esc_html__( 'Welcome to Conversios Onboarding', 'enhanced-e-commerce-for-woocommerce-store' ),
1089
+ esc_html__( 'Welcome to Conversios Onboarding', 'enhanced-e-commerce-for-woocommerce-store' ),
1090
  apply_filters( 'conversios_welcome', 'manage_options' ),
1091
  'conversios_onboarding',
1092
  array( $this, 'welcome_screen' )
admin/class-enhanced-ecommerce-google-analytics-admin.php CHANGED
@@ -57,7 +57,7 @@ class Enhanced_Ecommerce_Google_Analytics_Admin extends TVC_Admin_Helper {
57
  }else{
58
  if(!$this->get_subscriptionId()){
59
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_a">
60
- <p>'. esc_html__("Tatvic EE plugin is now fully compatible with Google Analytics 4. Also, explore the new features of Google Shopping and Dynamic remarketing to reach million of shoppers across Google and scale your eCommerce business faster.","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("CONFIGURE NOW","conversios").'</u></b></a></p>
61
  </div>';
62
  }
63
  }
@@ -68,7 +68,7 @@ class Enhanced_Ecommerce_Google_Analytics_Admin extends TVC_Admin_Helper {
68
  $googleDetail = $google_detail['setting'];
69
  if(isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id =="" && $this->subscriptionId != "" ){
70
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_b">
71
- <p>'. esc_html__("Leverage the power of Google Shopping to reach out millions of shoppers across Google. Automate entire Google Shopping and get eligible for free listing when user searches on Google for products similar to your eCommerce business.","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("Automate now","conversios").'</u></b></a></p>
72
  </div>';
73
 
74
  }
@@ -77,7 +77,7 @@ class Enhanced_Ecommerce_Google_Analytics_Admin extends TVC_Admin_Helper {
77
  if(isset($ee_additional_data['dismissed_ee_adimin_notic_c']) && $ee_additional_data['dismissed_ee_adimin_notic_c'] == 1){
78
  }else{
79
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_c">
80
- <p>'. esc_html__("Now access important eCommerce KPIs and Google Ads campaign performance data directly in your wordpress backend to improve your marketing ROI.","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("View it from here.","conversios").'</u></b></a></p>
81
  </div>';
82
 
83
  }
@@ -88,7 +88,7 @@ class Enhanced_Ecommerce_Google_Analytics_Admin extends TVC_Admin_Helper {
88
 
89
  if($fb_pixel_id == ""){
90
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_d">
91
- <img style="float: left; height: 45px;" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/fb-pixel.jpg").'" ><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Introducing the all-new Facebook Pixel Tracking in Conversios today!","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios-google-analytics#fb_pixel_id').'"><b><u>'. esc_html__(" Check it out for yourself.","conversios").'</u></b></a></p>
92
  </div>';
93
  }
94
  }
@@ -98,14 +98,14 @@ class Enhanced_Ecommerce_Google_Analytics_Admin extends TVC_Admin_Helper {
98
  $gm_id = isset($ee_settings['gm_id'])?$ee_settings['gm_id']:"";
99
  if($gm_id != ""){
100
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_e">
101
- <img style="float: left; height: 45px;" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/icon-dashboard.jpg").'" ><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Your GA4 Dashboard is just a click away !","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios&ga_type=ga4').'"><b><u>'. esc_html__(" Go to GA4 Dashboard.","conversios").'</u></b></a></p>
102
  </div>';
103
  }
104
  }
105
 
106
  if(isset($ee_additional_data['dismissed_ee_adimin_notic_f']) && $ee_additional_data['dismissed_ee_adimin_notic_f'] == 1){
107
  }else {
108
- echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_f"><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Grow your business with Performance Max Campaigns. You can create a campaign through our plugin with just a few clicks, and promote products across Google Platforms,","conversios").' <a href="'.esc_url_raw('admin.php?page=conversios-pmax').'"><b><u>'. esc_html__(" Try now.","conversios").'</u></b></a></p>
109
  </div>';
110
 
111
  }
57
  }else{
58
  if(!$this->get_subscriptionId()){
59
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_a">
60
+ <p>'. esc_html__("Tatvic EE plugin is now fully compatible with Google Analytics 4. Also, explore the new features of Google Shopping and Dynamic remarketing to reach million of shoppers across Google and scale your eCommerce business faster.","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("CONFIGURE NOW","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
61
  </div>';
62
  }
63
  }
68
  $googleDetail = $google_detail['setting'];
69
  if(isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id =="" && $this->subscriptionId != "" ){
70
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_b">
71
+ <p>'. esc_html__("Leverage the power of Google Shopping to reach out millions of shoppers across Google. Automate entire Google Shopping and get eligible for free listing when user searches on Google for products similar to your eCommerce business.","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("Automate now","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
72
  </div>';
73
 
74
  }
77
  if(isset($ee_additional_data['dismissed_ee_adimin_notic_c']) && $ee_additional_data['dismissed_ee_adimin_notic_c'] == 1){
78
  }else{
79
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_c">
80
+ <p>'. esc_html__("Now access important eCommerce KPIs and Google Ads campaign performance data directly in your wordpress backend to improve your marketing ROI.","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios').'"><b><u>'. esc_html__("View it from here.","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
81
  </div>';
82
 
83
  }
88
 
89
  if($fb_pixel_id == ""){
90
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_d">
91
+ <img style="float: left; height: 45px;" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/fb-pixel.jpg").'" ><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Introducing the all-new Facebook Pixel Tracking in Conversios today!","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios-google-analytics#fb_pixel_id').'"><b><u>'. esc_html__(" Check it out for yourself.","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
92
  </div>';
93
  }
94
  }
98
  $gm_id = isset($ee_settings['gm_id'])?$ee_settings['gm_id']:"";
99
  if($gm_id != ""){
100
  echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_e">
101
+ <img style="float: left; height: 45px;" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/icon-dashboard.jpg").'" ><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Your GA4 Dashboard is just a click away !","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios&ga_type=ga4').'"><b><u>'. esc_html__(" Go to GA4 Dashboard.","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
102
  </div>';
103
  }
104
  }
105
 
106
  if(isset($ee_additional_data['dismissed_ee_adimin_notic_f']) && $ee_additional_data['dismissed_ee_adimin_notic_f'] == 1){
107
  }else {
108
+ echo '<div class="notice notice-info is-dismissible" data-id="ee_adimin_notic_f"><p style="line-height: 28px; margin-left: 5px; display: inline-block;">'. esc_html__("Grow your business with Performance Max Campaigns. You can create a campaign through our plugin with just a few clicks, and promote products across Google Platforms,","enhanced-e-commerce-for-woocommerce-store").' <a href="'.esc_url_raw('admin.php?page=conversios-pmax').'"><b><u>'. esc_html__(" Try now.","enhanced-e-commerce-for-woocommerce-store").'</u></b></a></p>
109
  </div>';
110
 
111
  }
admin/class-survey.php CHANGED
@@ -113,7 +113,7 @@ if ( ! class_exists( 'TVC_Survey' ) ) {
113
  $form.submit(function(event) {
114
  event.preventDefault();
115
  if (! $form.find('input[type=radio]:checked').val()) {
116
- $form.find('.ee-survey-footer').prepend('<span class="error"><?php echo esc_js( esc_html__( 'Please select an option', 'conversios' ) ); ?></span>');
117
  return;
118
  }
119
  var data = {
@@ -249,32 +249,32 @@ if ( ! class_exists( 'TVC_Survey' ) ) {
249
 
250
  $options = array(
251
  1 => array(
252
- "title" => esc_html__("No longer need the plugin","enhanced-e-commerce-for-woocommerce-store", "conversios"),
253
  ),
254
  2 => array(
255
- 'title' => esc_html__("Switching to a different plugin","conversios"),
256
- 'details' => esc_html__( 'Please share which plugin', 'conversios' ),
257
  ),
258
  3 => array(
259
- 'title' => esc_html__("Couldn't get the plugin to work","conversios"),
260
  ),
261
  4 => array(
262
- 'title' => esc_html__("It's a temporary deactivation","conversios"),
263
  ),
264
  5 => array(
265
- 'title' => esc_html__("Other","conversios"),
266
- 'details' => esc_html__( 'Please share the reason', 'conversios' ),
267
  ),
268
  );
269
  ?>
270
  <div class="ee-survey-modal" id="ee-survey-<?php echo esc_attr($this->plugin); ?>">
271
  <div class="ee-survey-wrap">
272
  <form class="ee-survey" method="post">
273
- <span class="ee-survey-title"><span class="dashicons dashicons-admin-customizer"></span><?php echo ' ' . esc_html__( 'Quick Feedback', 'conversios' ); ?></span>
274
  <span class="ee-survey-desc">
275
  <?php
276
  // Translators: Placeholder for the plugin name.
277
- echo sprintf( esc_html__('If you have a moment, please share why you are deactivating %s:', 'conversios' ), esc_attr($this->name) );
278
  ?>
279
  </span>
280
  <div class="ee-survey-options">
@@ -293,10 +293,10 @@ if ( ! class_exists( 'TVC_Survey' ) ) {
293
  </div>
294
  <div class="ee-survey-footer">
295
  <button type="submit" class="ee-survey-submit button button-primary button-large">
296
- <?php echo sprintf( esc_html__('Submit %s Deactivate', 'conversios' ), '&amp;' ); ?>
297
  </button>
298
  <a href="#" class="ee-survey-deactivate">
299
- <?php echo esc_html__('Close', 'conversios' ); ?>
300
  </a>
301
  </div>
302
  </form>
113
  $form.submit(function(event) {
114
  event.preventDefault();
115
  if (! $form.find('input[type=radio]:checked').val()) {
116
+ $form.find('.ee-survey-footer').prepend('<span class="error"><?php echo esc_js( esc_html__( 'Please select an option', 'enhanced-e-commerce-for-woocommerce-store' ) ); ?></span>');
117
  return;
118
  }
119
  var data = {
249
 
250
  $options = array(
251
  1 => array(
252
+ "title" => esc_html__("No longer need the plugin","enhanced-e-commerce-for-woocommerce-store", "enhanced-e-commerce-for-woocommerce-store"),
253
  ),
254
  2 => array(
255
+ 'title' => esc_html__("Switching to a different plugin","enhanced-e-commerce-for-woocommerce-store"),
256
+ 'details' => esc_html__( 'Please share which plugin', 'enhanced-e-commerce-for-woocommerce-store' ),
257
  ),
258
  3 => array(
259
+ 'title' => esc_html__("Couldn't get the plugin to work","enhanced-e-commerce-for-woocommerce-store"),
260
  ),
261
  4 => array(
262
+ 'title' => esc_html__("It's a temporary deactivation","enhanced-e-commerce-for-woocommerce-store"),
263
  ),
264
  5 => array(
265
+ 'title' => esc_html__("Other","enhanced-e-commerce-for-woocommerce-store"),
266
+ 'details' => esc_html__( 'Please share the reason', 'enhanced-e-commerce-for-woocommerce-store' ),
267
  ),
268
  );
269
  ?>
270
  <div class="ee-survey-modal" id="ee-survey-<?php echo esc_attr($this->plugin); ?>">
271
  <div class="ee-survey-wrap">
272
  <form class="ee-survey" method="post">
273
+ <span class="ee-survey-title"><span class="dashicons dashicons-admin-customizer"></span><?php echo ' ' . esc_html__( 'Quick Feedback', 'enhanced-e-commerce-for-woocommerce-store' ); ?></span>
274
  <span class="ee-survey-desc">
275
  <?php
276
  // Translators: Placeholder for the plugin name.
277
+ echo sprintf( esc_html__('If you have a moment, please share why you are deactivating %s:', 'enhanced-e-commerce-for-woocommerce-store' ), esc_attr($this->name) );
278
  ?>
279
  </span>
280
  <div class="ee-survey-options">
293
  </div>
294
  <div class="ee-survey-footer">
295
  <button type="submit" class="ee-survey-submit button button-primary button-large">
296
+ <?php echo sprintf( esc_html__('Submit %s Deactivate', 'enhanced-e-commerce-for-woocommerce-store' ), '&amp;' ); ?>
297
  </button>
298
  <a href="#" class="ee-survey-deactivate">
299
+ <?php echo esc_html__('Close', 'enhanced-e-commerce-for-woocommerce-store' ); ?>
300
  </a>
301
  </div>
302
  </form>
admin/class-tvc-admin-helper.php CHANGED
@@ -218,7 +218,7 @@ Class TVC_Admin_Helper{
218
  $google_detail["prod_sync_status"] = (object) $syncProductStat;
219
  $this->set_ee_options_data($google_detail);
220
  }
221
- return array( "error"=>false, "api_rs"=>$api_rs, "message"=>esc_html__("Details updated successfully.","conversios") );
222
  }
223
  }
224
  /*
@@ -234,7 +234,7 @@ Class TVC_Admin_Helper{
234
  $googleDetail = $google_detail->data;
235
  }
236
  }else{
237
- return array("error"=>true, "message"=>esc_html__("Please try after some time.","conversios"));
238
  }
239
  //}
240
 
@@ -256,7 +256,7 @@ Class TVC_Admin_Helper{
256
  //print_r($prod_sync_status);
257
  //exit;
258
  $this->set_ee_options_data(array("setting" => $googleDetail, "prod_sync_status" => (object) $prod_sync_status, "campaigns_list"=>$campaigns_list, "sync_time"=>current_time( 'timestamp' )));
259
- return array("error"=>false, "message"=>esc_html__("Details updated successfully.","conversios"));
260
  }
261
  /*
262
  * update remarketing snippets
@@ -780,16 +780,16 @@ Class TVC_Admin_Helper{
780
  $notice_text ="";
781
  $call_js_function_args="";
782
  if (isset($googleDetail->is_site_verified) && isset($googleDetail->is_domain_claim) && $googleDetail->is_site_verified == '0' && $googleDetail->is_domain_claim == '0') {
783
- $title = esc_html__("Site verification and Domain claim for merchant center account failed.","conversios");
784
- $message = esc_html__("Without a verified and claimed website, your product will get disapproved.","conversios");
785
  $call_js_function_args = "both";
786
  }else if(isset($googleDetail->is_site_verified) && $googleDetail->is_site_verified == '0'){
787
- $title = esc_html__("Site verification for merchant center account failed.","conversios");
788
- $message = esc_html__("Without a verified website, your product will get disapproved.","conversios");
789
  $call_js_function_args = "site_verified";
790
  }else if(isset($googleDetail->is_domain_claim) && $googleDetail->is_domain_claim == '0'){
791
- $title = esc_html__("Site claimed website for merchant center account failed.","conversios");
792
- $message = esc_html__("Without a claimed website, your product will get disapproved.","conversios");
793
  $call_js_function_args = "domain_claim";
794
  }
795
  if($message!= "" && $title != ""){
@@ -801,7 +801,7 @@ Class TVC_Admin_Helper{
801
  </div>
802
  <div class="erralertrigt">
803
  <h6><?php echo esc_attr($title); ?></h6>
804
- <p><?php echo esc_attr($message); ?> <a href="javascript:void(0)" id="call_both_verification" onclick="call_tvc_site_verified_and_domain_claim('<?php echo esc_attr($call_js_function_args); ?>');"><?php esc_html_e("Click here","conversios"); ?></a> <?php esc_html_e("to verify and claim the domain.","conversios"); ?></p>
805
  </div>
806
  </div>
807
  </div>
@@ -868,7 +868,7 @@ Class TVC_Admin_Helper{
868
  if(isset($google_detail['setting']) && $google_detail['setting']){
869
  $googleDetail = $google_detail['setting'];
870
  if($googleDetail->is_site_verified == '0'){
871
- return array('error'=>true, 'msg'=>esc_html__("First need to verified your site. Click on site verification refresh icon to verified your site.","conversios"));
872
  }else if(property_exists($googleDetail,"is_domain_claim") && $googleDetail->is_domain_claim == '0'){
873
  //'website_url' => $googleDetail->site_url,
874
  $postData = [
@@ -882,10 +882,10 @@ Class TVC_Admin_Helper{
882
  return array('error'=>true, 'msg'=>$claimWebsite->errors);
883
  }else{
884
  $this->update_subscription_details_api_to_db();
885
- return array('error'=>false, 'msg'=>esc_html__("Domain claimed successfully.", "conversios"));
886
  }
887
  }else{
888
- return array('error'=>false, 'msg'=>esc_html__("Already domain claimed successfully.", "conversios"));
889
  }
890
  }
891
  }
@@ -936,7 +936,7 @@ Class TVC_Admin_Helper{
936
  return array('error'=>true, 'msg'=>esc_html($siteVerification_tag->errors));
937
  }else{
938
  $this->update_subscription_details_api_to_db();
939
- return array('error'=>false, 'msg'=>esc_html__("Site verification successfully.","conversios"));
940
  }
941
  }else{
942
  return array('error'=>true, 'msg'=> esc_html($siteVerificationToken_tag->errors));
@@ -944,11 +944,11 @@ Class TVC_Admin_Helper{
944
  // one more try
945
  }else{
946
  $this->update_subscription_details_api_to_db();
947
- return array('error'=>false, 'msg'=>esc_html__("Site verification successfully.","conversios"));
948
  }
949
  }
950
  }else{
951
- return array('error'=>false, 'msg'=>esc_html__("Already site verification successfully.","conversios"));
952
  }
953
  }
954
  }
@@ -1055,14 +1055,14 @@ Class TVC_Admin_Helper{
1055
  $nofifications = [];
1056
 
1057
  $nofifications["tvc_f_notif_1"] = array(
1058
- "tittle"=>esc_html__("Congratulations..!! You are one step closer.","conversios"),
1059
- "html"=>esc_html__("Thanks for installing the new avatar of Enhanced Ecommerce for WooCommerce plugin. Explore the full potential of Google Analytics, Google Ads and Google shopping by setting up all your Google accounts and take data driven decisions to scale your eCommerce business faster.", "conversios")
1060
  );
1061
  $nofifications["tvc_f_notif_2"] = array(
1062
- "tittle"=>esc_html__("Share your feedback.","conversios"),
1063
- "html"=>esc_html__("Your feedback is very important to us. Please write about your experience and the new feature requests here.","conversios"),
1064
  "link"=>"https://wordpress.org/support/plugin/enhanced-e-commerce-for-woocommerce-store/reviews/",
1065
- "link_title"=>esc_html__("Share Feedback", "conversios"),
1066
  "link_type"=>"external"
1067
  );
1068
 
@@ -1088,7 +1088,7 @@ Class TVC_Admin_Helper{
1088
  if($diffrent_day == 6 ){
1089
  $nofifications["tvc_expired_plan_not_".date("YYYY_m_d",$current)] = array(
1090
  "tittle"=>"Plan Expired..!!",
1091
- "html"=>esc_html__("Your plan is expired now. Contact “analytics2@tatvic.com” or call us at “(415) 968-6313” to renew your plan.", "conversios")
1092
  );
1093
  }
1094
  }
218
  $google_detail["prod_sync_status"] = (object) $syncProductStat;
219
  $this->set_ee_options_data($google_detail);
220
  }
221
+ return array( "error"=>false, "api_rs"=>$api_rs, "message"=>esc_html__("Details updated successfully.","enhanced-e-commerce-for-woocommerce-store") );
222
  }
223
  }
224
  /*
234
  $googleDetail = $google_detail->data;
235
  }
236
  }else{
237
+ return array("error"=>true, "message"=>esc_html__("Please try after some time.","enhanced-e-commerce-for-woocommerce-store"));
238
  }
239
  //}
240
 
256
  //print_r($prod_sync_status);
257
  //exit;
258
  $this->set_ee_options_data(array("setting" => $googleDetail, "prod_sync_status" => (object) $prod_sync_status, "campaigns_list"=>$campaigns_list, "sync_time"=>current_time( 'timestamp' )));
259
+ return array("error"=>false, "message"=>esc_html__("Details updated successfully.","enhanced-e-commerce-for-woocommerce-store"));
260
  }
261
  /*
262
  * update remarketing snippets
780
  $notice_text ="";
781
  $call_js_function_args="";
782
  if (isset($googleDetail->is_site_verified) && isset($googleDetail->is_domain_claim) && $googleDetail->is_site_verified == '0' && $googleDetail->is_domain_claim == '0') {
783
+ $title = esc_html__("Site verification and Domain claim for merchant center account failed.","enhanced-e-commerce-for-woocommerce-store");
784
+ $message = esc_html__("Without a verified and claimed website, your product will get disapproved.","enhanced-e-commerce-for-woocommerce-store");
785
  $call_js_function_args = "both";
786
  }else if(isset($googleDetail->is_site_verified) && $googleDetail->is_site_verified == '0'){
787
+ $title = esc_html__("Site verification for merchant center account failed.","enhanced-e-commerce-for-woocommerce-store");
788
+ $message = esc_html__("Without a verified website, your product will get disapproved.","enhanced-e-commerce-for-woocommerce-store");
789
  $call_js_function_args = "site_verified";
790
  }else if(isset($googleDetail->is_domain_claim) && $googleDetail->is_domain_claim == '0'){
791
+ $title = esc_html__("Site claimed website for merchant center account failed.","enhanced-e-commerce-for-woocommerce-store");
792
+ $message = esc_html__("Without a claimed website, your product will get disapproved.","enhanced-e-commerce-for-woocommerce-store");
793
  $call_js_function_args = "domain_claim";
794
  }
795
  if($message!= "" && $title != ""){
801
  </div>
802
  <div class="erralertrigt">
803
  <h6><?php echo esc_attr($title); ?></h6>
804
+ <p><?php echo esc_attr($message); ?> <a href="javascript:void(0)" id="call_both_verification" onclick="call_tvc_site_verified_and_domain_claim('<?php echo esc_attr($call_js_function_args); ?>');"><?php esc_html_e("Click here","enhanced-e-commerce-for-woocommerce-store"); ?></a> <?php esc_html_e("to verify and claim the domain.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
805
  </div>
806
  </div>
807
  </div>
868
  if(isset($google_detail['setting']) && $google_detail['setting']){
869
  $googleDetail = $google_detail['setting'];
870
  if($googleDetail->is_site_verified == '0'){
871
+ return array('error'=>true, 'msg'=>esc_html__("First need to verified your site. Click on site verification refresh icon to verified your site.","enhanced-e-commerce-for-woocommerce-store"));
872
  }else if(property_exists($googleDetail,"is_domain_claim") && $googleDetail->is_domain_claim == '0'){
873
  //'website_url' => $googleDetail->site_url,
874
  $postData = [
882
  return array('error'=>true, 'msg'=>$claimWebsite->errors);
883
  }else{
884
  $this->update_subscription_details_api_to_db();
885
+ return array('error'=>false, 'msg'=>esc_html__("Domain claimed successfully.", "enhanced-e-commerce-for-woocommerce-store"));
886
  }
887
  }else{
888
+ return array('error'=>false, 'msg'=>esc_html__("Already domain claimed successfully.", "enhanced-e-commerce-for-woocommerce-store"));
889
  }
890
  }
891
  }
936
  return array('error'=>true, 'msg'=>esc_html($siteVerification_tag->errors));
937
  }else{
938
  $this->update_subscription_details_api_to_db();
939
+ return array('error'=>false, 'msg'=>esc_html__("Site verification successfully.","enhanced-e-commerce-for-woocommerce-store"));
940
  }
941
  }else{
942
  return array('error'=>true, 'msg'=> esc_html($siteVerificationToken_tag->errors));
944
  // one more try
945
  }else{
946
  $this->update_subscription_details_api_to_db();
947
+ return array('error'=>false, 'msg'=>esc_html__("Site verification successfully.","enhanced-e-commerce-for-woocommerce-store"));
948
  }
949
  }
950
  }else{
951
+ return array('error'=>false, 'msg'=>esc_html__("Already site verification successfully.","enhanced-e-commerce-for-woocommerce-store"));
952
  }
953
  }
954
  }
1055
  $nofifications = [];
1056
 
1057
  $nofifications["tvc_f_notif_1"] = array(
1058
+ "tittle"=>esc_html__("Congratulations..!! You are one step closer.","enhanced-e-commerce-for-woocommerce-store"),
1059
+ "html"=>esc_html__("Thanks for installing the new avatar of Enhanced Ecommerce for WooCommerce plugin. Explore the full potential of Google Analytics, Google Ads and Google shopping by setting up all your Google accounts and take data driven decisions to scale your eCommerce business faster.", "enhanced-e-commerce-for-woocommerce-store")
1060
  );
1061
  $nofifications["tvc_f_notif_2"] = array(
1062
+ "tittle"=>esc_html__("Share your feedback.","enhanced-e-commerce-for-woocommerce-store"),
1063
+ "html"=>esc_html__("Your feedback is very important to us. Please write about your experience and the new feature requests here.","enhanced-e-commerce-for-woocommerce-store"),
1064
  "link"=>"https://wordpress.org/support/plugin/enhanced-e-commerce-for-woocommerce-store/reviews/",
1065
+ "link_title"=>esc_html__("Share Feedback", "enhanced-e-commerce-for-woocommerce-store"),
1066
  "link_type"=>"external"
1067
  );
1068
 
1088
  if($diffrent_day == 6 ){
1089
  $nofifications["tvc_expired_plan_not_".date("YYYY_m_d",$current)] = array(
1090
  "tittle"=>"Plan Expired..!!",
1091
+ "html"=>esc_html__("Your plan is expired now. Contact “analytics2@tatvic.com” or call us at “(415) 968-6313” to renew your plan.", "enhanced-e-commerce-for-woocommerce-store")
1092
  );
1093
  }
1094
  }
admin/helper/class-dashboard-helper.php CHANGED
@@ -72,7 +72,7 @@ if(!class_exists('Conversios_Dashboard_Helper')){
72
  }
73
 
74
  }else{
75
- $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","conversios"));
76
  }
77
  echo json_encode($return);
78
  wp_die();
@@ -105,7 +105,7 @@ if(!class_exists('Conversios_Dashboard_Helper')){
105
  $return = array('error'=>true,'errors'=>$errormsg, 'status' => $api_rs->status);
106
  }
107
  }else{
108
- $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","conversios"));
109
  }
110
  echo json_encode($return);
111
  wp_die();
@@ -151,7 +151,7 @@ if(!class_exists('Conversios_Dashboard_Helper')){
151
  );
152
  $api_rs = $this->CustomApi->get_google_analytics_reports($data);
153
  }else{
154
- $return = array('error'=>true, 'errors'=>esc_html__("GA3 view id is not to be null","conversios"));
155
  }
156
  }else{
157
  if( $ga4_property_id !="" ){
@@ -163,7 +163,7 @@ if(!class_exists('Conversios_Dashboard_Helper')){
163
  );
164
  $api_rs = $this->CustomApi->get_google_analytics_reports_ga4($data);
165
  }else{
166
- $return = array('error'=>true, 'errors'=>esc_html__("GA4 property id is not to be null","conversios"));
167
  }
168
  }
169
 
@@ -175,10 +175,10 @@ if(!class_exists('Conversios_Dashboard_Helper')){
175
  $return = array('error'=>true,'errors'=>$api_rs->message);
176
  }
177
  }else if($subscription_id != "" && ( $ga_traking_type == "GA4" || $ga_traking_type == "BOTH" )){
178
- $return = array('error'=>true,'errors'=>esc_html__("GA tracking type is not to be null","conversios"));
179
  }
180
  }else{
181
- $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","conversios"));
182
  }
183
  echo json_encode($return);
184
  wp_die();
72
  }
73
 
74
  }else{
75
+ $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
76
  }
77
  echo json_encode($return);
78
  wp_die();
105
  $return = array('error'=>true,'errors'=>$errormsg, 'status' => $api_rs->status);
106
  }
107
  }else{
108
+ $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
109
  }
110
  echo json_encode($return);
111
  wp_die();
151
  );
152
  $api_rs = $this->CustomApi->get_google_analytics_reports($data);
153
  }else{
154
+ $return = array('error'=>true, 'errors'=>esc_html__("GA3 view id is not to be null","enhanced-e-commerce-for-woocommerce-store"));
155
  }
156
  }else{
157
  if( $ga4_property_id !="" ){
163
  );
164
  $api_rs = $this->CustomApi->get_google_analytics_reports_ga4($data);
165
  }else{
166
+ $return = array('error'=>true, 'errors'=>esc_html__("GA4 property id is not to be null","enhanced-e-commerce-for-woocommerce-store"));
167
  }
168
  }
169
 
175
  $return = array('error'=>true,'errors'=>$api_rs->message);
176
  }
177
  }else if($subscription_id != "" && ( $ga_traking_type == "GA4" || $ga_traking_type == "BOTH" )){
178
+ $return = array('error'=>true,'errors'=>esc_html__("GA tracking type is not to be null","enhanced-e-commerce-for-woocommerce-store"));
179
  }
180
  }else{
181
+ $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
182
  }
183
  echo json_encode($return);
184
  wp_die();
admin/helper/class-onboarding-helper.php CHANGED
@@ -91,7 +91,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
91
  echo json_encode($api_obj->getAnalyticsWebProperties($_POST));
92
  wp_die();
93
  }else{
94
- echo esc_html__("Admin security nonce is not verified.","conversios");
95
  }
96
  }
97
 
@@ -109,7 +109,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
109
 
110
  wp_die();
111
  }else{
112
- echo esc_html__("Admin security nonce is not verified.","conversios");
113
  }
114
  }
115
 
@@ -126,7 +126,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
126
  echo json_encode($api_obj->getGoogleAdsAccountList($_POST));
127
  wp_die();
128
  }else{
129
- echo esc_html__("Admin security nonce is not verified.","conversios");
130
  }
131
  }
132
  /**
@@ -142,7 +142,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
142
  echo json_encode($api_obj->createGoogleAdsAccount($_POST));
143
  wp_die();
144
  }else{
145
- echo esc_html__("Admin security nonce is not verified.","conversios");
146
  }
147
  }
148
 
@@ -159,7 +159,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
159
  echo json_encode($api_obj->saveGoogleAdsData($_POST));
160
  wp_die();
161
  }else{
162
- echo esc_html__("Admin security nonce is not verified.","conversios");
163
  }
164
  }
165
 
@@ -176,7 +176,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
176
  echo json_encode($api_obj->linkAnalyticToAdsAccount($_POST));
177
  wp_die();
178
  }else{
179
- echo esc_html__("Admin security nonce is not verified.","conversios");
180
  }
181
  }
182
 
@@ -193,7 +193,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
193
  echo json_encode($api_obj->listMerchantCenterAccount($_POST));
194
  wp_die();
195
  }else{
196
- echo esc_html__("Admin security nonce is not verified.","conversios");
197
  }
198
  }
199
  /**
@@ -209,7 +209,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
209
  echo json_encode($api_obj->createMerchantAccount($_POST));
210
  wp_die();
211
  }else{
212
- echo esc_html__("Admin security nonce is not verified.","conversios");
213
  }
214
  }
215
 
@@ -226,7 +226,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
226
  echo json_encode($api_obj->saveMechantData($_POST));
227
  wp_die();
228
  }else{
229
- echo esc_html__("Admin security nonce is not verified.","conversios");
230
  }
231
  }
232
  /**
@@ -244,7 +244,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
244
  echo json_encode($api_obj->getConversionList($_POST));
245
  wp_die();
246
  }else{
247
- echo esc_html__("Admin security nonce is not verified.","conversios");
248
  }
249
  }
250
 
@@ -261,7 +261,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
261
  echo json_encode($api_obj->linkGoogleAdsToMerchantCenter($_POST));
262
  wp_die();
263
  }else{
264
- echo esc_html__("Admin security nonce is not verified.","conversios");
265
  }
266
  }
267
  /**
@@ -277,7 +277,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
277
  echo json_encode($api_obj->getSubscriptionDetails($tvc_data, sanitize_text_field($_POST['subscription_id']) ));
278
  wp_die();
279
  }else{
280
- echo esc_html__("Admin security nonce is not verified.","conversios");
281
  }
282
  }
283
 
@@ -297,7 +297,7 @@ if(!class_exists('Conversios_Onboarding_Helper')):
297
  echo json_encode($return_rs);
298
  wp_die();
299
  }else{
300
- echo esc_html__("Admin security nonce is not verified.","conversios");
301
  }
302
  }
303
 
@@ -1042,12 +1042,12 @@ if(!class_exists('Conversios_Onboarding_ApiCall') ){
1042
  $return->data =$response->data;
1043
  $return->error = false;
1044
  if(isset($response->data) && count($response->data) > 0){
1045
- $return->message = esc_html__("Google Ads conversion tracking setting success.","conversios");
1046
  }else{
1047
  $response = $this->createConversion($postData);
1048
  if(isset($response->error) && $response->error == false){
1049
  $return->error = false;
1050
- $return->message = esc_html__("Google Ads conversion tracking setting success.","conversios");
1051
  }else{
1052
  $return->error = true;
1053
  $errors = json_decode($response->errors[0]);
91
  echo json_encode($api_obj->getAnalyticsWebProperties($_POST));
92
  wp_die();
93
  }else{
94
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
95
  }
96
  }
97
 
109
 
110
  wp_die();
111
  }else{
112
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
113
  }
114
  }
115
 
126
  echo json_encode($api_obj->getGoogleAdsAccountList($_POST));
127
  wp_die();
128
  }else{
129
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
130
  }
131
  }
132
  /**
142
  echo json_encode($api_obj->createGoogleAdsAccount($_POST));
143
  wp_die();
144
  }else{
145
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
146
  }
147
  }
148
 
159
  echo json_encode($api_obj->saveGoogleAdsData($_POST));
160
  wp_die();
161
  }else{
162
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
163
  }
164
  }
165
 
176
  echo json_encode($api_obj->linkAnalyticToAdsAccount($_POST));
177
  wp_die();
178
  }else{
179
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
180
  }
181
  }
182
 
193
  echo json_encode($api_obj->listMerchantCenterAccount($_POST));
194
  wp_die();
195
  }else{
196
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
197
  }
198
  }
199
  /**
209
  echo json_encode($api_obj->createMerchantAccount($_POST));
210
  wp_die();
211
  }else{
212
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
213
  }
214
  }
215
 
226
  echo json_encode($api_obj->saveMechantData($_POST));
227
  wp_die();
228
  }else{
229
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
230
  }
231
  }
232
  /**
244
  echo json_encode($api_obj->getConversionList($_POST));
245
  wp_die();
246
  }else{
247
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
248
  }
249
  }
250
 
261
  echo json_encode($api_obj->linkGoogleAdsToMerchantCenter($_POST));
262
  wp_die();
263
  }else{
264
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
265
  }
266
  }
267
  /**
277
  echo json_encode($api_obj->getSubscriptionDetails($tvc_data, sanitize_text_field($_POST['subscription_id']) ));
278
  wp_die();
279
  }else{
280
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
281
  }
282
  }
283
 
297
  echo json_encode($return_rs);
298
  wp_die();
299
  }else{
300
+ echo esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store");
301
  }
302
  }
303
 
1042
  $return->data =$response->data;
1043
  $return->error = false;
1044
  if(isset($response->data) && count($response->data) > 0){
1045
+ $return->message = esc_html__("Google Ads conversion tracking setting success.","enhanced-e-commerce-for-woocommerce-store");
1046
  }else{
1047
  $response = $this->createConversion($postData);
1048
  if(isset($response->error) && $response->error == false){
1049
  $return->error = false;
1050
+ $return->message = esc_html__("Google Ads conversion tracking setting success.","enhanced-e-commerce-for-woocommerce-store");
1051
  }else{
1052
  $return->error = true;
1053
  $errors = json_decode($response->errors[0]);
admin/helper/class-pmax-helper.php CHANGED
@@ -80,7 +80,7 @@ if(!class_exists('Conversios_PMax_Helper')){
80
  }
81
  }
82
  }else{
83
- $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","conversios"));
84
  }
85
  echo json_encode($return);
86
  wp_die();
@@ -121,7 +121,7 @@ if(!class_exists('Conversios_PMax_Helper')){
121
  $require_fields = array("customer_id","merchant_id","campaign_name","budget","target_country");
122
  foreach($require_fields as $val){
123
  if(isset($form_array[$val]) && $form_array[$val] ==""){
124
- $return = array('error'=>true, 'message'=>esc_html__(str_replace("_"," ",$val)." is required field.","conversios"));
125
  }
126
  }
127
  if(!empty($return)){
@@ -148,7 +148,7 @@ if(!class_exists('Conversios_PMax_Helper')){
148
  }
149
  }
150
  }else{
151
- $return = array('error'=>true, 'message' => esc_html__("Admin security nonce is not verified.","conversios"));
152
  }
153
  echo json_encode($return);
154
  wp_die();
@@ -183,7 +183,7 @@ if(!class_exists('Conversios_PMax_Helper')){
183
  $require_fields = array("customer_id","merchant_id","campaign_name","budget","target_country","campaign_budget_resource_name","resource_name");
184
  foreach($require_fields as $val){
185
  if(isset($form_array[$val]) && $form_array[$val] ==""){
186
- $return = array('error'=>true, 'message'=>esc_html__(str_replace("_"," ",$val)." is required field.","conversios"));
187
  }
188
  }
189
  if(!empty($return)){
@@ -219,7 +219,7 @@ if(!class_exists('Conversios_PMax_Helper')){
219
  }
220
  }
221
  }else{
222
- $return = array('error'=>true, 'message' => esc_html__("Admin security nonce is not verified.","conversios"));
223
  }
224
  echo json_encode($return);
225
  wp_die();
@@ -252,7 +252,7 @@ if(!class_exists('Conversios_PMax_Helper')){
252
  $return = array('error'=>true,'errors'=>$errormsg, 'status' => $api_rs->status);
253
  }
254
  }else{
255
- $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","conversios"));
256
  }
257
  echo json_encode($return);
258
  wp_die();
80
  }
81
  }
82
  }else{
83
+ $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
84
  }
85
  echo json_encode($return);
86
  wp_die();
121
  $require_fields = array("customer_id","merchant_id","campaign_name","budget","target_country");
122
  foreach($require_fields as $val){
123
  if(isset($form_array[$val]) && $form_array[$val] ==""){
124
+ $return = array('error'=>true, 'message'=>esc_html__(str_replace("_"," ",$val)." is required field.","enhanced-e-commerce-for-woocommerce-store"));
125
  }
126
  }
127
  if(!empty($return)){
148
  }
149
  }
150
  }else{
151
+ $return = array('error'=>true, 'message' => esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
152
  }
153
  echo json_encode($return);
154
  wp_die();
183
  $require_fields = array("customer_id","merchant_id","campaign_name","budget","target_country","campaign_budget_resource_name","resource_name");
184
  foreach($require_fields as $val){
185
  if(isset($form_array[$val]) && $form_array[$val] ==""){
186
+ $return = array('error'=>true, 'message'=>esc_html__(str_replace("_"," ",$val)." is required field.","enhanced-e-commerce-for-woocommerce-store"));
187
  }
188
  }
189
  if(!empty($return)){
219
  }
220
  }
221
  }else{
222
+ $return = array('error'=>true, 'message' => esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
223
  }
224
  echo json_encode($return);
225
  wp_die();
252
  $return = array('error'=>true,'errors'=>$errormsg, 'status' => $api_rs->status);
253
  }
254
  }else{
255
+ $return = array('error'=>true,'errors'=>esc_html__("Admin security nonce is not verified.","enhanced-e-commerce-for-woocommerce-store"));
256
  }
257
  echo json_encode($return);
258
  wp_die();
admin/partials/class-conversios-header.php CHANGED
@@ -47,8 +47,8 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
47
  <span class="errmsgicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/error-white-icon.png'); ?>" alt="error" /></span>
48
  </div>
49
  <div class="erralertrigt">
50
- <h6><?php echo esc_html_e("Hey,","conversios"); ?></h6>
51
- <p><?php echo esc_html_e("It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin required.","conversios"); ?> </p>
52
  </div>
53
  </div>
54
  </div>
@@ -62,12 +62,12 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
62
  <div class="row">
63
  <div class="promoleft">
64
  <div class="promobandmsg">
65
- <?php esc_html_e("Level up your game by getting detail insights on every products. Make the informed decision for your next campaign.","conversios"); ?>
66
  </div>
67
  </div>
68
  <div class="promoright">
69
  <div class="prmoupgrdbtn">
70
- <a target="_blank" href="<?php echo esc_url_raw($this->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Top+Bar+upgrading+to+pro&utm_campaign=Upsell+at+Conversios'); ?>" class="upgradebtn"><?php esc_html_e("Upgrade","conversios"); ?></a>
71
  </div>
72
  </div>
73
  </div>
@@ -86,7 +86,7 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
86
  */
87
  public function conversios_header(){
88
 
89
- $plan_name = esc_html__("Free Plan","conversios");
90
  if(isset($this->subscription_data->plan_name) && !in_array($this->subscription_data->plan_id, array("1"))){
91
  $plan_name = $this->subscription_data->plan_name;
92
  }
@@ -109,7 +109,7 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
109
  </div>
110
  </div>
111
  <div class="hdrcntcbx mblhdrcntcbx">
112
- <?php printf("%s <span><a href=\"tel:+1 (415) 968-6313\">+1 (415) 968-6313</a></span>",esc_html_e("For any query, contact us at","conversios")); ?>
113
  </div>
114
  </div>
115
  </div>
@@ -138,17 +138,17 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
138
  'icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/conversios-menu.png"),
139
  'acitve_icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/active-conversios-menu.png")
140
  ),
141
- 'conversios-google-shopping-feed'=>array('title'=>esc_html__('Google Shopping','conversios')),
142
- 'conversios-google-ads'=>array('title'=>esc_html__('Google Ads','conversios')),
143
- 'conversios-pmax'=>array('title'=>esc_html__('Performance Max','conversios'),
144
  'icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/conversios-google-ads-menu.png"),
145
  'acitve_icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/active-conversios-google-ads-menu.png")
146
  ),
147
- 'conversios-google-analytics'=>array('title'=>esc_html__('Account Settings','conversios')),
148
  );
149
  }
150
  if($this->plan_id == 1){
151
- $conversios_menu_list['conversios-pricings'] = array('title'=>esc_html__('Free Vs Pro','conversios'),'icon'=>'');
152
  }
153
  return apply_filters('conversios_menu_list', $conversios_menu_list, $conversios_menu_list);
154
  }
@@ -215,7 +215,7 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
215
  <div id="feedback-form-wrapper">
216
  <div id="feedback_record_btn">
217
  <button type="button" class="feedback_btn btn-11">
218
- <?php esc_html_e("Feedback","conversios"); ?>
219
  </button>
220
  </div>
221
  <div id="feedback_form_modal" class="pp-modal whitepopup">
@@ -225,42 +225,42 @@ if ( ! class_exists( 'Conversios_Header' ) ) {
225
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
226
  </div>
227
  <div class="upgradsbscrptnpp-hdr">
228
- <h5><?php esc_html_e("Your feedback is valuable","conversios"); ?></h5>
229
  </div>
230
  <div class="ppmodal-body">
231
  <form id="customer_feedback_form">
232
  <div class="feedback-form-group">
233
- <label class="feedback_que_label" for="feedback_question_one"><?php esc_html_e("The Conversios plugin helps me to get more insight about business which helps me to take business decisions? *","conversios"); ?></label>
234
  <div class="rating-input-wrapper">
235
- <label class="feedback_label"><input name="feedback_question_one" type="radio" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","conversios"); ?></span></label>
236
- <label class="feedback_label"><input type="radio" name="feedback_question_one" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","conversios"); ?></span></label>
237
- <label class="feedback_label"><input type="radio" name="feedback_question_one" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","conversios"); ?></span></label>
238
- <label class="feedback_label"><input type="radio" name="feedback_question_one" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","conversios"); ?></span></label>
239
  </div>
240
  </div>
241
  <div class="feedback-form-group">
242
- <label class="feedback_que_label" for="feedback_question_two"><?php esc_html_e("The Conversios plugin helps me to simplified the Google Ads and Google Merchant Centre? *","conversios"); ?></label>
243
  <div class="rating-input-wrapper">
244
- <label class="feedback_label"><input type="radio" name="feedback_question_two" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","conversios"); ?></span></label>
245
- <label class="feedback_label"><input type="radio" name="feedback_question_two" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","conversios"); ?></span></label>
246
- <label class="feedback_label"><input type="radio" name="feedback_question_two" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","conversios"); ?></span></label>
247
- <label class="feedback_label"><input type="radio" name="feedback_question_two" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","conversios"); ?></span></label>
248
  </div>
249
  </div>
250
  <div class="feedback-form-group feedback_txtarea_div">
251
- <label class="feedback_que_label" for="feedback_question_three"><?php esc_html_e("You are satisfied with the Conversion plugin? *","conversios"); ?></label>
252
  <div class="rating-input-wrapper">
253
- <label class="feedback_label"><input type="radio" name="feedback_question_three" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","conversios"); ?></span></label>
254
- <label class="feedback_label"><input type="radio" name="feedback_question_three" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","conversios"); ?></span></label>
255
- <label class="feedback_label"><input type="radio" name="feedback_question_three" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","conversios"); ?></span></label>
256
- <label class="feedback_label"><input type="radio" name="feedback_question_three" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","conversios"); ?></span></label>
257
  </div>
258
  </div>
259
  <div class="feedback-form-group feedback_txtarea_div">
260
- <label class="feedback_que_label" for="feedback_description"><?php esc_html_e("How could we make the Conversios plugin better for you?","conversios"); ?></label>
261
  <textarea class="feedback_txtarea" id="feedback_description" onkeyup="feedback_charcountupdate(this.value)" rows="5" maxlength="300"></textarea><span id="charcount"></span>
262
  </div>
263
- <button id="submit_wooplugin_feedback" type="submit" class="blueupgrdbtn"><?php esc_html_e("Submit","conversios"); ?></button>
264
  </form>
265
  </div>
266
  </div>
47
  <span class="errmsgicon"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/error-white-icon.png'); ?>" alt="error" /></span>
48
  </div>
49
  <div class="erralertrigt">
50
+ <h6><?php echo esc_html_e("Hey,","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
51
+ <p><?php echo esc_html_e("It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin required.","enhanced-e-commerce-for-woocommerce-store"); ?> </p>
52
  </div>
53
  </div>
54
  </div>
62
  <div class="row">
63
  <div class="promoleft">
64
  <div class="promobandmsg">
65
+ <?php esc_html_e("Level up your game by getting detail insights on every products. Make the informed decision for your next campaign.","enhanced-e-commerce-for-woocommerce-store"); ?>
66
  </div>
67
  </div>
68
  <div class="promoright">
69
  <div class="prmoupgrdbtn">
70
+ <a target="_blank" href="<?php echo esc_url_raw($this->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Top+Bar+upgrading+to+pro&utm_campaign=Upsell+at+Conversios'); ?>" class="upgradebtn"><?php esc_html_e("Upgrade","enhanced-e-commerce-for-woocommerce-store"); ?></a>
71
  </div>
72
  </div>
73
  </div>
86
  */
87
  public function conversios_header(){
88
 
89
+ $plan_name = esc_html__("Free Plan","enhanced-e-commerce-for-woocommerce-store");
90
  if(isset($this->subscription_data->plan_name) && !in_array($this->subscription_data->plan_id, array("1"))){
91
  $plan_name = $this->subscription_data->plan_name;
92
  }
109
  </div>
110
  </div>
111
  <div class="hdrcntcbx mblhdrcntcbx">
112
+ <?php printf("%s <span><a href=\"tel:+1 (415) 968-6313\">+1 (415) 968-6313</a></span>",esc_html_e("For any query, contact us at","enhanced-e-commerce-for-woocommerce-store")); ?>
113
  </div>
114
  </div>
115
  </div>
138
  'icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/conversios-menu.png"),
139
  'acitve_icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/active-conversios-menu.png")
140
  ),
141
+ 'conversios-google-shopping-feed'=>array('title'=>esc_html__('Google Shopping','enhanced-e-commerce-for-woocommerce-store')),
142
+ 'conversios-google-ads'=>array('title'=>esc_html__('Google Ads','enhanced-e-commerce-for-woocommerce-store')),
143
+ 'conversios-pmax'=>array('title'=>esc_html__('Performance Max','enhanced-e-commerce-for-woocommerce-store'),
144
  'icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/conversios-google-ads-menu.png"),
145
  'acitve_icon'=>esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/active-conversios-google-ads-menu.png")
146
  ),
147
+ 'conversios-google-analytics'=>array('title'=>esc_html__('Account Settings','enhanced-e-commerce-for-woocommerce-store')),
148
  );
149
  }
150
  if($this->plan_id == 1){
151
+ $conversios_menu_list['conversios-pricings'] = array('title'=>esc_html__('Free Vs Pro','enhanced-e-commerce-for-woocommerce-store'),'icon'=>'');
152
  }
153
  return apply_filters('conversios_menu_list', $conversios_menu_list, $conversios_menu_list);
154
  }
215
  <div id="feedback-form-wrapper">
216
  <div id="feedback_record_btn">
217
  <button type="button" class="feedback_btn btn-11">
218
+ <?php esc_html_e("Feedback","enhanced-e-commerce-for-woocommerce-store"); ?>
219
  </button>
220
  </div>
221
  <div id="feedback_form_modal" class="pp-modal whitepopup">
225
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
226
  </div>
227
  <div class="upgradsbscrptnpp-hdr">
228
+ <h5><?php esc_html_e("Your feedback is valuable","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
229
  </div>
230
  <div class="ppmodal-body">
231
  <form id="customer_feedback_form">
232
  <div class="feedback-form-group">
233
+ <label class="feedback_que_label" for="feedback_question_one"><?php esc_html_e("The Conversios plugin helps me to get more insight about business which helps me to take business decisions? *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
234
  <div class="rating-input-wrapper">
235
+ <label class="feedback_label"><input name="feedback_question_one" type="radio" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
236
+ <label class="feedback_label"><input type="radio" name="feedback_question_one" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
237
+ <label class="feedback_label"><input type="radio" name="feedback_question_one" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
238
+ <label class="feedback_label"><input type="radio" name="feedback_question_one" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
239
  </div>
240
  </div>
241
  <div class="feedback-form-group">
242
+ <label class="feedback_que_label" for="feedback_question_two"><?php esc_html_e("The Conversios plugin helps me to simplified the Google Ads and Google Merchant Centre? *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
243
  <div class="rating-input-wrapper">
244
+ <label class="feedback_label"><input type="radio" name="feedback_question_two" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
245
+ <label class="feedback_label"><input type="radio" name="feedback_question_two" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
246
+ <label class="feedback_label"><input type="radio" name="feedback_question_two" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
247
+ <label class="feedback_label"><input type="radio" name="feedback_question_two" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
248
  </div>
249
  </div>
250
  <div class="feedback-form-group feedback_txtarea_div">
251
+ <label class="feedback_que_label" for="feedback_question_three"><?php esc_html_e("You are satisfied with the Conversion plugin? *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
252
  <div class="rating-input-wrapper">
253
+ <label class="feedback_label"><input type="radio" name="feedback_question_three" value="1" /><span class="feedback_options"><?php esc_html_e("Strongly Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
254
+ <label class="feedback_label"><input type="radio" name="feedback_question_three" value="2" /><span class="feedback_options"><?php esc_html_e("Agree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
255
+ <label class="feedback_label"><input type="radio" name="feedback_question_three" value="3" /><span class="feedback_options"><?php esc_html_e("Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
256
+ <label class="feedback_label"><input type="radio" name="feedback_question_three" value="4" /><span class="feedback_options"><?php esc_html_e("Strongly Disagree","enhanced-e-commerce-for-woocommerce-store"); ?></span></label>
257
  </div>
258
  </div>
259
  <div class="feedback-form-group feedback_txtarea_div">
260
+ <label class="feedback_que_label" for="feedback_description"><?php esc_html_e("How could we make the Conversios plugin better for you?","enhanced-e-commerce-for-woocommerce-store"); ?></label>
261
  <textarea class="feedback_txtarea" id="feedback_description" onkeyup="feedback_charcountupdate(this.value)" rows="5" maxlength="300"></textarea><span id="charcount"></span>
262
  </div>
263
+ <button id="submit_wooplugin_feedback" type="submit" class="blueupgrdbtn"><?php esc_html_e("Submit","enhanced-e-commerce-for-woocommerce-store"); ?></button>
264
  </form>
265
  </div>
266
  </div>
admin/partials/general-fields.php CHANGED
@@ -46,7 +46,7 @@ if (isset($_POST['ee_submit_plugin'])) {
46
  $TVC_Admin_Helper->update_app_status();
47
 
48
  $class='alert-message tvc-alert-success';
49
- $message_p = esc_html__( 'Your settings have been saved.', 'conversios' );
50
  }
51
  $data = unserialize(get_option('ee_options'));
52
  $subscription_id = $TVC_Admin_Helper->get_subscriptionId();
@@ -72,11 +72,11 @@ if(isset($google_detail['setting'])){
72
  <?php if($plan_id == 1){?>
73
  <div class="licence tvc-licence" >
74
  <div class="tvc_licence_key_wapper <?php if($plan_id != 1){?>tvc-hide<?php }?>">
75
- <p><?php esc_html_e("You are using our free plugin, no licence needed ! Happy analyzing..!! :)","conversios"); ?></p>
76
- <p class="font-weight-bold"><?php esc_html_e("To unlock more features of google products, consider our","conversios"); ?> <a href="<?php echo esc_url_raw($TVC_Admin_Helper->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Google+Analytics+Screen+pro+version&utm_campaign=Upsell+at+Conversios'); ?>" target="_blank"><?php esc_html_e("pro version.","conversios"); ?></a></p>
77
  <form method="post" name="google-analytic" id="tvc-licence-active">
78
  <div class="input-group">
79
- <input type="text" id="licence_key" name="licence_key" class="form-control" placeholder="<?php esc_html_e("Already purchased? Enter licence key","conversios"); ?>" required="">
80
  <div class="input-group-append">
81
  <button type="submit" class="btn btn-primary" name="verify-licence-key"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/right-arrow.svg'); ?>" alt="active licence key"></button>
82
  </div>
@@ -89,12 +89,12 @@ if(isset($google_detail['setting'])){
89
  <div class="">
90
  <div class="row mb-3">
91
  <div class="col-6 col-md-6 col-lg-6">
92
- <h2 class="ga-title"><?php esc_html_e("Connected Google Analytics Account:","conversios"); ?></h2>
93
  </div>
94
  <div class="col-6 col-md-6 col-lg-6 text-right">
95
  <div class="acc-num">
96
  <p class="ga-text">
97
- <?php echo (isset($data['ga_id']) && $data['ga_id'] != '') ? $data['ga_id'] : '<span>'.esc_html__("Get started","conversios").'</span>'; ?>
98
  </p>
99
  <?php
100
  if (isset($data['ga_id']) && $data['ga_id'] != '') {
@@ -107,12 +107,12 @@ if(isset($google_detail['setting'])){
107
  </div>
108
  <div class="row mb-3">
109
  <div class="col-6 col-md-6 col-lg-6">
110
- <h2 class="ga-title"><?php esc_html_e("Connected Google Analytics 4 Account:","conversios"); ?></h2>
111
  </div>
112
  <div class="col-6 col-md-6 col-lg-6 text-right">
113
  <div class="acc-num">
114
  <p class="ga-text">
115
- <?php echo (isset($data['gm_id']) && $data['gm_id'] != '') ? esc_attr($data['gm_id']) : '<span>'.esc_html__("Get started","conversios").'</span>'; ?>
116
  </p>
117
  <?php
118
  if (isset($data['gm_id']) && esc_attr($data['gm_id']) != '') {
@@ -125,12 +125,12 @@ if(isset($google_detail['setting'])){
125
  </div>
126
  <div class="row mb-3">
127
  <div class="col-6 col-md-6 col-lg-6">
128
- <h2 class="ga-title"><?php esc_html_e("Linked Google Ads Account:","conversios"); ?></h2>
129
  </div>
130
  <div class="col-6 col-md-6 col-lg-6 text-right">
131
  <div class="acc-num">
132
  <p class="ga-text">
133
- <?php echo (isset($data['google_ads_id']) && $data['google_ads_id'] != '') ? esc_attr($data['google_ads_id']) : '<span>'.esc_html__("Get started","conversios").'</span>'; ?>
134
  </p>
135
  <?php
136
  if (isset($data['google_ads_id']) && esc_attr($data['google_ads_id']) != '') {
@@ -143,12 +143,12 @@ if(isset($google_detail['setting'])){
143
  </div>
144
  <div class="row mb-3">
145
  <div class="col-6 col-md-6 col-lg-6">
146
- <h2 class="ga-title"><?php esc_html_e("Linked Google Merchant Center Account:","conversios"); ?></h2>
147
  </div>
148
  <div class="col-6 col-md-6 col-lg-6 text-right">
149
  <div class="acc-num">
150
  <p class="ga-text">
151
- <?php echo (isset($data['google_merchant_id']) && $data['google_merchant_id'] != '') ? esc_attr($data['google_merchant_id']) : '<span>'.esc_html__("Get started","conversios").'</span>'; ?>
152
  </p>
153
  <?php
154
  if (isset($data['google_merchant_id']) && esc_attr($data['google_merchant_id']) != '') {
@@ -166,33 +166,33 @@ if(isset($google_detail['setting'])){
166
  <tbody>
167
  <tr>
168
  <th width="155px">
169
- <label class="ga-title align-middle" for="tracking_code"><?php esc_html_e("Tracking Code","conversios"); ?></label>
170
  </th>
171
  <td>
172
  <label class="align-middle">
173
  <?php $ga_ST = !empty($data['ga_ST']) ? 'checked' : ''; ?>
174
  <input type="checkbox" name="ga_ST" id="ga_ST" <?php echo esc_attr($ga_ST); ?> >
175
- <label class="custom-control-label" for="ga_ST"><?php esc_html_e("Add Global Site Tracking Code 'gtag.js'","conversios"); ?></label>
176
  <div class="tvc-tooltip">
177
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature adds new gtag.js tracking code to your store. You don't need to enable this if gtag.js is implemented via any third party analytics plugin.","conversios"); ?></span>
178
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
179
  </div>
180
  </label><br/>
181
  <label class="align-middle">
182
  <?php $ga_eeT = !empty($data['ga_eeT']) ? 'checked' : ''; ?>
183
  <input type="checkbox" name="ga_eeT" id="ga_eeT" <?php echo esc_attr($ga_eeT); ?> >
184
- <label class="custom-control-label" for="ga_eeT"><?php esc_html_e("Add Enhanced Ecommerce Tracking Code","conversios"); ?></label>
185
  <div class="tvc-tooltip">
186
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature adds Enhanced Ecommerce Tracking Code to your Store.","conversios"); ?></span>
187
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
188
  </div>
189
  </label><br/>
190
  <label class="align-middle">
191
  <?php $ga_gUser = !empty($data['ga_gUser']) ? 'checked' : ''; ?>
192
  <input type="checkbox" name="ga_gUser" id="ga_gUser" <?php echo esc_attr($ga_gUser); ?> >
193
- <label class="custom-control-label" for="ga_gUser"><?php esc_html_e("Add Code to Track the Login Step of Guest Users (Optional)","conversios"); ?></label>
194
  <div class="tvc-tooltip">
195
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("If you have Guest Check out enable, we recommend you to add this code.","conversios"); ?></span>
196
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
197
  </div>
198
  </label>
@@ -201,13 +201,13 @@ if(isset($google_detail['setting'])){
201
  <?php if(isset($data['gm_id']) && $data['gm_id'] != '' && $plan_id != 1){ ?>
202
  <tr>
203
  <th>
204
- <label class="ga-title align-middle"><?php esc_html_e("GA4 - API secrets ","conversios"); ?><span class="tvc-pro"> (PRO)</span></label>
205
  </th>
206
  <td>
207
  <?php $ga4_api_secret = isset($data['ga4_api_secret'])?$data['ga4_api_secret']:""; ?>
208
  <input type="text" class="fromfiled" name="ga4_api_secret" id="ga4_api_secret" value="<?php echo esc_attr($ga4_api_secret); ?>">
209
  <div class="tvc-tooltip">
210
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("How to get 'Measurement Protocol API Secret' in GA4: Click Admin > Click Data streams (Under Property) > Select the stream > Additional Settings - Measurement Protocol API secrets > Create a new API secret.","conversios"); ?></span>
211
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
212
  </div>
213
  <br>To track refund order
@@ -216,16 +216,16 @@ if(isset($google_detail['setting'])){
216
  <?php } ?>
217
  <tr>
218
  <th>
219
- <label class="ga-title align-middle" for= "ga_CG" ><?php esc_html_e("Content Grouping","conversios"); ?> <span class="tvc-pro"> (PRO)</span></label>
220
  </th>
221
  <td>
222
  <label class="align-middle">
223
  <?php $ga_CG = (!empty($data['ga_CG'])) ? 'checked' : '';
224
  if($plan_id==1){ $ga_CG ="";}?>
225
  <input type="checkbox" name="ga_CG" id="ga_CG" <?php if($plan_id==1){?> onclick="return false;"<?php } ?> <?php echo esc_attr($ga_CG);?> >
226
- <label class="custom-control-label" for="ga_CG"><?php esc_html_e("Add Code to enable content grouping","conversios"); ?></label>
227
  <div class="tvc-tooltip">
228
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Content grouping helps you group your web pages (content).","conversios"); ?></span>
229
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
230
  </div>
231
  </label>
@@ -233,17 +233,17 @@ if(isset($google_detail['setting'])){
233
  </tr>
234
  <tr>
235
  <th>
236
- <label class="ga-title align-middle" for= "ga_optimize" ><?php esc_html_e("Google Optimize","conversios"); ?> <span class="tvc-pro"> (PRO)</span></label>
237
  </th>
238
  <td>
239
  <?php
240
  if($plan_id==1){?>
241
- <input type="text" name="ga_optimize_id" id="ga_optimize_id" value = "<?php echo !empty($data['ga_optimize_id']) ? esc_attr($data['ga_optimize_id']) : '';?>" placeholder="<?php esc_html_e("Google Optimize ID","conversios"); ?>" disabled>
242
  <?php }else{ ?>
243
- <input type="text" name="ga_optimize_id" id="ga_optimize_id" value = "<?php echo !empty($data['ga_optimize_id']) ? esc_attr($data['ga_optimize_id']) : '';?>" placeholder="<?php esc_html_e("Google Optimize ID","conversios"); ?>">
244
  <?php } ?>
245
  <div class="tvc-tooltip">
246
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter a valid google optimize container ID.","conversios"); ?></span>
247
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
248
  </div>
249
 
@@ -251,30 +251,30 @@ if(isset($google_detail['setting'])){
251
  </tr>
252
  <tr>
253
  <th>
254
- <label class="ga-title align-middle" for="ga_Impr"><?php esc_html_e("Impression Thresold","conversios"); ?></label>
255
  </th>
256
  <td>
257
  <?php $ga_Impr = !empty($data['ga_Impr']) ? $data['ga_Impr'] : 6; ?>
258
  <input type="number" min="1" id="ga_Impr" name = "ga_Impr" value = "<?php echo esc_attr($ga_Impr); ?>">
259
  <label for="ga_Impr"></label>
260
  <div class="tvc-tooltip">
261
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature sets Impression threshold for category page. It sends hit after these many numbers of products impressions.","conversios"); ?></span>
262
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
263
  </div>
264
- <p class="description"><b><?php esc_html_e("Note : To avoid processing load on server we recommend upto 6 Impression Thresold.","conversios"); ?></b></p>
265
  </td>
266
  </tr>
267
  <tr>
268
  <th>
269
- <label class="ga-title align-middle" for="ga_IPA"><?php esc_html_e("I.P. Anoymization","conversios"); ?></label>
270
  </th>
271
  <td>
272
  <label class="align-middle">
273
  <?php $ga_IPA = !empty($data['ga_IPA']) ? 'checked' : ''; ?>
274
  <input class="" type="checkbox" name="ga_IPA" id="ga_IPA" <?php echo esc_attr($ga_IPA); ?>>
275
- <label class="custom-control-label" for="ga_IPA"><?php esc_html_e("Enable I.P. Anonymization","conversios"); ?></label>
276
  <div class="tvc-tooltip">
277
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Use this feature to anonymize (or stop collecting) the I.P Address of your users in Google Analytics. Be in legal compliance by using I.P Anonymization which is important for EU countries As per the GDPR compliance.","conversios"); ?></span>
278
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
279
  </div>
280
  </label>
@@ -282,13 +282,13 @@ if(isset($google_detail['setting'])){
282
  </tr>
283
  <tr>
284
  <th>
285
- <label class="ga-title align-middle"><img style="height: 20px;" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/fb-icon.png"); ?>" > <?php esc_html_e("Facebook pixel ID","conversios"); ?></label>
286
  </th>
287
  <td>
288
  <?php $fb_pixel_id = isset($data['fb_pixel_id'])?$data['fb_pixel_id']:""; ?>
289
  <input type="text" class="fromfiled" name="fb_pixel_id" id="fb_pixel_id" value="<?php echo esc_attr($fb_pixel_id); ?>">
290
  <div class="tvc-tooltip">
291
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("The Facebook pixel ID looks like. 518896233175751","conversios"); ?></span>
292
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
293
  </div>
294
  </td>
@@ -296,9 +296,9 @@ if(isset($google_detail['setting'])){
296
  <tr>
297
  <td colspan="2" style="padding: 0.5rem 0;">
298
  <div class="ga-title con_tracking_integration con_faq_title" data-id="sec_con_integration">
299
- <?php esc_html_e("Google Analytics Event Tracking - Custom Integration","conversios"); ?>
300
  <div class="tvc-tooltip">
301
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature is for the woocommerce store which has changed standard woocommerce hooks or implemented custom woocommerce hooks.","conversios"); ?></span>
302
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
303
  </div>
304
  <img class="faq_icon" style="height: 20px;" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/arrow-down-sign.png"); ?>" ></div>
@@ -306,9 +306,9 @@ if(isset($google_detail['setting'])){
306
  <table class="tracking-trigger">
307
  <tr><th colspan="2">
308
  <span>
309
- <?php esc_html_e("Product data collection method ","conversios"); ?>
310
  <div class="tvc-tooltip">
311
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When you have custom woocommerce implementation and you have modified standard woocommerce hooks, you can configure/select your custom hooks from below to enable google analytics tracking for specific events.","conversios"); ?></span>
312
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
313
  </div>
314
  </span>
@@ -316,7 +316,7 @@ if(isset($google_detail['setting'])){
316
  </th></tr>
317
  <tr>
318
  <th style="padding: 0 1rem; width: 35%;">
319
- <label class="ga-title align-middle"><?php esc_html_e("Product list","conversios"); ?></label>
320
  </th>
321
  <td>
322
  <?php $tvc_product_list_data_collection_method = isset($data['tvc_product_list_data_collection_method'])?$data['tvc_product_list_data_collection_method']:"woocommerce_after_shop_loop_item";
@@ -339,7 +339,7 @@ if(isset($google_detail['setting'])){
339
  }?>
340
  </select>
341
  <div class="tvc-tooltip">
342
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When product impressions, clicks or add to cart google analytics ecommerce events are not working on your store, select the implemented hook from the dropdown.","conversios"); ?></span>
343
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
344
  </div>
345
  <small>(At home, collection, shop, product details and cart page)</small>
@@ -347,7 +347,7 @@ if(isset($google_detail['setting'])){
347
  </tr>
348
  <tr>
349
  <th style="padding: 0 1rem;">
350
- <label class="ga-title align-middle"><?php esc_html_e("Product detail page","conversios"); ?></label>
351
  </th>
352
  <td>
353
  <?php $tvc_product_detail_data_collection_method = isset($data['tvc_product_detail_data_collection_method'])?$data['tvc_product_detail_data_collection_method']:"woocommerce_after_single_product";
@@ -369,14 +369,14 @@ if(isset($google_detail['setting'])){
369
  }?>
370
  </select>
371
  <div class="tvc-tooltip">
372
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your product detail page is not being tracked in google analytics (view_item), try changing the relevant hook from the dropdown.","conversios"); ?></span>
373
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
374
  </div>
375
  </td>
376
  </tr>
377
  <tr>
378
  <th style="padding: 0 1rem;">
379
- <label class="ga-title align-middle"><?php esc_html_e("Checkout page","conversios"); ?></label>
380
  </th>
381
  <td>
382
  <?php
@@ -401,7 +401,7 @@ if(isset($google_detail['setting'])){
401
  }?>
402
  </select>
403
  <div class="tvc-tooltip">
404
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your checkout is not being tracked in google analytics (checkout events), try changing the relevant hook from the dropdown.","conversios"); ?></span>
405
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
406
  </div>
407
  </td>
@@ -409,7 +409,7 @@ if(isset($google_detail['setting'])){
409
 
410
  <tr>
411
  <th style="padding: 0 1rem;">
412
- <label class="ga-title align-middle"><?php esc_html_e("Order confirmation page","conversios"); ?></label>
413
  </th>
414
  <td>
415
  <?php
@@ -431,7 +431,7 @@ if(isset($google_detail['setting'])){
431
  }?>
432
  </select>
433
  <div class="tvc-tooltip">
434
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your transactions are not being tracked in google analytics (purchase event), try changing the relevant hook from the dropdown.","conversios"); ?></span>
435
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
436
  </div>
437
  </td>
@@ -439,16 +439,16 @@ if(isset($google_detail['setting'])){
439
 
440
  <tr><th colspan="2">
441
  <span>
442
- <?php esc_html_e("Event selector","conversios"); ?>
443
  <div class="tvc-tooltip">
444
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("If you change your front end class or id for below events, select/input the changed class or id.","conversios"); ?></span>
445
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
446
  </div>
447
  </span>
448
  </th></tr>
449
  <tr>
450
  <th style="padding: 0 1rem;">
451
- <label class="ga-title align-middle"><?php esc_html_e("Product page AddToCart button","conversios"); ?></label>
452
  </th>
453
  <td>
454
  <?php $tvc_product_detail_addtocart_selector = isset($data['tvc_product_detail_addtocart_selector'])?$data['tvc_product_detail_addtocart_selector']:"default";
@@ -492,7 +492,7 @@ if(isset($google_detail['setting'])){
492
  <?php $tvc_product_detail_addtocart_selector_val = isset($data['tvc_product_detail_addtocart_selector_val'])?$data['tvc_product_detail_addtocart_selector_val']:""; ?>
493
  <input type="text" class="fromfiled" name="tvc_product_detail_addtocart_selector_val" id="tvc_product_detail_addtocart_selector_val" value="<?php echo esc_attr($tvc_product_detail_addtocart_selector_val); ?>">
494
  <div class="tvc-tooltip">
495
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your button selector (id or calss) value. You can add multiple classes using comma separated string.","conversios"); ?></span>
496
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
497
  </div>
498
  </span>
@@ -501,7 +501,7 @@ if(isset($google_detail['setting'])){
501
  </tr>
502
  <tr>
503
  <th style="padding: 0 1rem;">
504
- <label class="ga-title align-middle"><?php esc_html_e("Checkout Step 2","conversios"); ?></label>
505
  </th>
506
  <td>
507
  <?php $tvc_checkout_step_2_selector = isset($data['tvc_checkout_step_2_selector'])?$data['tvc_checkout_step_2_selector']:"default";
@@ -543,7 +543,7 @@ if(isset($google_detail['setting'])){
543
  <?php $tvc_checkout_step_2_selector_val = isset($data['tvc_checkout_step_2_selector_val'])?$data['tvc_checkout_step_2_selector_val']:""; ?>
544
  <input type="text" class="fromfiled" name="tvc_checkout_step_2_selector_val" id="tvc_checkout_step_2_selector_val" value="<?php echo esc_attr($tvc_checkout_step_2_selector_val); ?>">
545
  <div class="tvc-tooltip">
546
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your selector (id or calss) value. You can add multiple classes using comma separated string.","conversios"); ?></span>
547
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
548
  </div>
549
  </span>
@@ -551,7 +551,7 @@ if(isset($google_detail['setting'])){
551
  </tr>
552
  <tr>
553
  <th style="padding: 0 1rem;">
554
- <label class="ga-title align-middle"><?php esc_html_e("Checkout Step 3","conversios"); ?></label>
555
  </th>
556
  <td>
557
  <?php $tvc_checkout_step_3_selector = isset($data['tvc_checkout_step_3_selector'])?$data['tvc_checkout_step_3_selector']:"default";
@@ -593,7 +593,7 @@ if(isset($google_detail['setting'])){
593
  <?php $tvc_checkout_step_3_selector_val = isset($data['tvc_checkout_step_3_selector_val'])?$data['tvc_checkout_step_3_selector_val']:""; ?>
594
  <input type="text" class="fromfiled" name="tvc_checkout_step_3_selector_val" id="tvc_checkout_step_3_selector_val" value="<?php echo esc_attr($tvc_checkout_step_3_selector_val); ?>">
595
  <div class="tvc-tooltip">
596
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your button selector (id or calss) value. You can add multiple classes using comma separated string.","conversios"); ?></span>
597
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
598
  </div>
599
  </span>
@@ -605,15 +605,15 @@ if(isset($google_detail['setting'])){
605
  </tr>
606
  <tr>
607
  <th>
608
- <label class="ga-title align-middle" for="ga_PrivacyPolicy"><?php esc_html_e("Privacy Policy","conversios"); ?></label>
609
  </th>
610
  <td>
611
  <label class="align-middle">
612
  <?php $ga_PrivacyPolicy = !empty($data['ga_PrivacyPolicy']) ? 'checked' : ''; ?>
613
  <input type="checkbox" name="ga_PrivacyPolicy" id="ga_PrivacyPolicy" required="required" <?php echo esc_attr($ga_PrivacyPolicy); ?>>
614
- <label class="custom-control-label" for="ga_PrivacyPolicy"><?php esc_html_e("Accept Privacy Policy of Plugin","conversios"); ?></label>
615
 
616
- <p class="description"><?php esc_html_e("By using Conversios plugin, you agree to Conversios plugin's","conversios"); ?> <a href= "<?php echo esc_url_raw("https://www.tatvic.com/privacy-policy/?ref=plugin_policy&utm_source=plugin_backend&utm_medium=woo_premium_plugin&utm_campaign=GDPR_complaince_ecomm_plugins"); ?>" target="_blank"><?php esc_html_e("Privacy Policy","conversios"); ?></a></p>
617
  </label>
618
  </td>
619
  </tr>
@@ -625,7 +625,7 @@ if(isset($google_detail['setting'])){
625
  <input type="hidden" id="google_ads_id" name = "google_ads_id" value="<?= esc_attr((!empty($data['google_ads_id']))?$data['google_ads_id']:""); ?>"/>
626
  <input type="hidden" id="google_merchant_id" name = "google_merchant_id" value="<?= esc_attr((!empty($data['google_merchant_id']))?$data['google_merchant_id']:""); ?>"/>
627
  <input type="hidden" name="subscription_id" value="<?php echo esc_attr((!empty($data['subscription_id']))?$data['subscription_id']:""); ?>">
628
- <button type="submit" class="btn btn-primary" id="ee_submit_plugin" name="ee_submit_plugin"><?php esc_html_e("Save","conversios"); ?></button>
629
  </p>
630
  </form>
631
  </div>
46
  $TVC_Admin_Helper->update_app_status();
47
 
48
  $class='alert-message tvc-alert-success';
49
+ $message_p = esc_html__( 'Your settings have been saved.', 'enhanced-e-commerce-for-woocommerce-store' );
50
  }
51
  $data = unserialize(get_option('ee_options'));
52
  $subscription_id = $TVC_Admin_Helper->get_subscriptionId();
72
  <?php if($plan_id == 1){?>
73
  <div class="licence tvc-licence" >
74
  <div class="tvc_licence_key_wapper <?php if($plan_id != 1){?>tvc-hide<?php }?>">
75
+ <p><?php esc_html_e("You are using our free plugin, no licence needed ! Happy analyzing..!! :)","enhanced-e-commerce-for-woocommerce-store"); ?></p>
76
+ <p class="font-weight-bold"><?php esc_html_e("To unlock more features of google products, consider our","enhanced-e-commerce-for-woocommerce-store"); ?> <a href="<?php echo esc_url_raw($TVC_Admin_Helper->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Google+Analytics+Screen+pro+version&utm_campaign=Upsell+at+Conversios'); ?>" target="_blank"><?php esc_html_e("pro version.","enhanced-e-commerce-for-woocommerce-store"); ?></a></p>
77
  <form method="post" name="google-analytic" id="tvc-licence-active">
78
  <div class="input-group">
79
+ <input type="text" id="licence_key" name="licence_key" class="form-control" placeholder="<?php esc_html_e("Already purchased? Enter licence key","enhanced-e-commerce-for-woocommerce-store"); ?>" required="">
80
  <div class="input-group-append">
81
  <button type="submit" class="btn btn-primary" name="verify-licence-key"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/right-arrow.svg'); ?>" alt="active licence key"></button>
82
  </div>
89
  <div class="">
90
  <div class="row mb-3">
91
  <div class="col-6 col-md-6 col-lg-6">
92
+ <h2 class="ga-title"><?php esc_html_e("Connected Google Analytics Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
93
  </div>
94
  <div class="col-6 col-md-6 col-lg-6 text-right">
95
  <div class="acc-num">
96
  <p class="ga-text">
97
+ <?php echo (isset($data['ga_id']) && $data['ga_id'] != '') ? $data['ga_id'] : '<span>'.esc_html__("Get started","enhanced-e-commerce-for-woocommerce-store").'</span>'; ?>
98
  </p>
99
  <?php
100
  if (isset($data['ga_id']) && $data['ga_id'] != '') {
107
  </div>
108
  <div class="row mb-3">
109
  <div class="col-6 col-md-6 col-lg-6">
110
+ <h2 class="ga-title"><?php esc_html_e("Connected Google Analytics 4 Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
111
  </div>
112
  <div class="col-6 col-md-6 col-lg-6 text-right">
113
  <div class="acc-num">
114
  <p class="ga-text">
115
+ <?php echo (isset($data['gm_id']) && $data['gm_id'] != '') ? esc_attr($data['gm_id']) : '<span>'.esc_html__("Get started","enhanced-e-commerce-for-woocommerce-store").'</span>'; ?>
116
  </p>
117
  <?php
118
  if (isset($data['gm_id']) && esc_attr($data['gm_id']) != '') {
125
  </div>
126
  <div class="row mb-3">
127
  <div class="col-6 col-md-6 col-lg-6">
128
+ <h2 class="ga-title"><?php esc_html_e("Linked Google Ads Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
129
  </div>
130
  <div class="col-6 col-md-6 col-lg-6 text-right">
131
  <div class="acc-num">
132
  <p class="ga-text">
133
+ <?php echo (isset($data['google_ads_id']) && $data['google_ads_id'] != '') ? esc_attr($data['google_ads_id']) : '<span>'.esc_html__("Get started","enhanced-e-commerce-for-woocommerce-store").'</span>'; ?>
134
  </p>
135
  <?php
136
  if (isset($data['google_ads_id']) && esc_attr($data['google_ads_id']) != '') {
143
  </div>
144
  <div class="row mb-3">
145
  <div class="col-6 col-md-6 col-lg-6">
146
+ <h2 class="ga-title"><?php esc_html_e("Linked Google Merchant Center Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
147
  </div>
148
  <div class="col-6 col-md-6 col-lg-6 text-right">
149
  <div class="acc-num">
150
  <p class="ga-text">
151
+ <?php echo (isset($data['google_merchant_id']) && $data['google_merchant_id'] != '') ? esc_attr($data['google_merchant_id']) : '<span>'.esc_html__("Get started","enhanced-e-commerce-for-woocommerce-store").'</span>'; ?>
152
  </p>
153
  <?php
154
  if (isset($data['google_merchant_id']) && esc_attr($data['google_merchant_id']) != '') {
166
  <tbody>
167
  <tr>
168
  <th width="155px">
169
+ <label class="ga-title align-middle" for="tracking_code"><?php esc_html_e("Tracking Code","enhanced-e-commerce-for-woocommerce-store"); ?></label>
170
  </th>
171
  <td>
172
  <label class="align-middle">
173
  <?php $ga_ST = !empty($data['ga_ST']) ? 'checked' : ''; ?>
174
  <input type="checkbox" name="ga_ST" id="ga_ST" <?php echo esc_attr($ga_ST); ?> >
175
+ <label class="custom-control-label" for="ga_ST"><?php esc_html_e("Add Global Site Tracking Code 'gtag.js'","enhanced-e-commerce-for-woocommerce-store"); ?></label>
176
  <div class="tvc-tooltip">
177
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature adds new gtag.js tracking code to your store. You don't need to enable this if gtag.js is implemented via any third party analytics plugin.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
178
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
179
  </div>
180
  </label><br/>
181
  <label class="align-middle">
182
  <?php $ga_eeT = !empty($data['ga_eeT']) ? 'checked' : ''; ?>
183
  <input type="checkbox" name="ga_eeT" id="ga_eeT" <?php echo esc_attr($ga_eeT); ?> >
184
+ <label class="custom-control-label" for="ga_eeT"><?php esc_html_e("Add Enhanced Ecommerce Tracking Code","enhanced-e-commerce-for-woocommerce-store"); ?></label>
185
  <div class="tvc-tooltip">
186
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature adds Enhanced Ecommerce Tracking Code to your Store.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
187
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
188
  </div>
189
  </label><br/>
190
  <label class="align-middle">
191
  <?php $ga_gUser = !empty($data['ga_gUser']) ? 'checked' : ''; ?>
192
  <input type="checkbox" name="ga_gUser" id="ga_gUser" <?php echo esc_attr($ga_gUser); ?> >
193
+ <label class="custom-control-label" for="ga_gUser"><?php esc_html_e("Add Code to Track the Login Step of Guest Users (Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></label>
194
  <div class="tvc-tooltip">
195
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("If you have Guest Check out enable, we recommend you to add this code.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
196
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
197
  </div>
198
  </label>
201
  <?php if(isset($data['gm_id']) && $data['gm_id'] != '' && $plan_id != 1){ ?>
202
  <tr>
203
  <th>
204
+ <label class="ga-title align-middle"><?php esc_html_e("GA4 - API secrets ","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span></label>
205
  </th>
206
  <td>
207
  <?php $ga4_api_secret = isset($data['ga4_api_secret'])?$data['ga4_api_secret']:""; ?>
208
  <input type="text" class="fromfiled" name="ga4_api_secret" id="ga4_api_secret" value="<?php echo esc_attr($ga4_api_secret); ?>">
209
  <div class="tvc-tooltip">
210
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("How to get 'Measurement Protocol API Secret' in GA4: Click Admin > Click Data streams (Under Property) > Select the stream > Additional Settings - Measurement Protocol API secrets > Create a new API secret.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
211
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
212
  </div>
213
  <br>To track refund order
216
  <?php } ?>
217
  <tr>
218
  <th>
219
+ <label class="ga-title align-middle" for= "ga_CG" ><?php esc_html_e("Content Grouping","enhanced-e-commerce-for-woocommerce-store"); ?> <span class="tvc-pro"> (PRO)</span></label>
220
  </th>
221
  <td>
222
  <label class="align-middle">
223
  <?php $ga_CG = (!empty($data['ga_CG'])) ? 'checked' : '';
224
  if($plan_id==1){ $ga_CG ="";}?>
225
  <input type="checkbox" name="ga_CG" id="ga_CG" <?php if($plan_id==1){?> onclick="return false;"<?php } ?> <?php echo esc_attr($ga_CG);?> >
226
+ <label class="custom-control-label" for="ga_CG"><?php esc_html_e("Add Code to enable content grouping","enhanced-e-commerce-for-woocommerce-store"); ?></label>
227
  <div class="tvc-tooltip">
228
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Content grouping helps you group your web pages (content).","enhanced-e-commerce-for-woocommerce-store"); ?></span>
229
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
230
  </div>
231
  </label>
233
  </tr>
234
  <tr>
235
  <th>
236
+ <label class="ga-title align-middle" for= "ga_optimize" ><?php esc_html_e("Google Optimize","enhanced-e-commerce-for-woocommerce-store"); ?> <span class="tvc-pro"> (PRO)</span></label>
237
  </th>
238
  <td>
239
  <?php
240
  if($plan_id==1){?>
241
+ <input type="text" name="ga_optimize_id" id="ga_optimize_id" value = "<?php echo !empty($data['ga_optimize_id']) ? esc_attr($data['ga_optimize_id']) : '';?>" placeholder="<?php esc_html_e("Google Optimize ID","enhanced-e-commerce-for-woocommerce-store"); ?>" disabled>
242
  <?php }else{ ?>
243
+ <input type="text" name="ga_optimize_id" id="ga_optimize_id" value = "<?php echo !empty($data['ga_optimize_id']) ? esc_attr($data['ga_optimize_id']) : '';?>" placeholder="<?php esc_html_e("Google Optimize ID","enhanced-e-commerce-for-woocommerce-store"); ?>">
244
  <?php } ?>
245
  <div class="tvc-tooltip">
246
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter a valid google optimize container ID.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
247
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
248
  </div>
249
 
251
  </tr>
252
  <tr>
253
  <th>
254
+ <label class="ga-title align-middle" for="ga_Impr"><?php esc_html_e("Impression Thresold","enhanced-e-commerce-for-woocommerce-store"); ?></label>
255
  </th>
256
  <td>
257
  <?php $ga_Impr = !empty($data['ga_Impr']) ? $data['ga_Impr'] : 6; ?>
258
  <input type="number" min="1" id="ga_Impr" name = "ga_Impr" value = "<?php echo esc_attr($ga_Impr); ?>">
259
  <label for="ga_Impr"></label>
260
  <div class="tvc-tooltip">
261
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature sets Impression threshold for category page. It sends hit after these many numbers of products impressions.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
262
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
263
  </div>
264
+ <p class="description"><b><?php esc_html_e("Note : To avoid processing load on server we recommend upto 6 Impression Thresold.","enhanced-e-commerce-for-woocommerce-store"); ?></b></p>
265
  </td>
266
  </tr>
267
  <tr>
268
  <th>
269
+ <label class="ga-title align-middle" for="ga_IPA"><?php esc_html_e("I.P. Anoymization","enhanced-e-commerce-for-woocommerce-store"); ?></label>
270
  </th>
271
  <td>
272
  <label class="align-middle">
273
  <?php $ga_IPA = !empty($data['ga_IPA']) ? 'checked' : ''; ?>
274
  <input class="" type="checkbox" name="ga_IPA" id="ga_IPA" <?php echo esc_attr($ga_IPA); ?>>
275
+ <label class="custom-control-label" for="ga_IPA"><?php esc_html_e("Enable I.P. Anonymization","enhanced-e-commerce-for-woocommerce-store"); ?></label>
276
  <div class="tvc-tooltip">
277
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Use this feature to anonymize (or stop collecting) the I.P Address of your users in Google Analytics. Be in legal compliance by using I.P Anonymization which is important for EU countries As per the GDPR compliance.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
278
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
279
  </div>
280
  </label>
282
  </tr>
283
  <tr>
284
  <th>
285
+ <label class="ga-title align-middle"><img style="height: 20px;" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/fb-icon.png"); ?>" > <?php esc_html_e("Facebook pixel ID","enhanced-e-commerce-for-woocommerce-store"); ?></label>
286
  </th>
287
  <td>
288
  <?php $fb_pixel_id = isset($data['fb_pixel_id'])?$data['fb_pixel_id']:""; ?>
289
  <input type="text" class="fromfiled" name="fb_pixel_id" id="fb_pixel_id" value="<?php echo esc_attr($fb_pixel_id); ?>">
290
  <div class="tvc-tooltip">
291
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("The Facebook pixel ID looks like. 518896233175751","enhanced-e-commerce-for-woocommerce-store"); ?></span>
292
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
293
  </div>
294
  </td>
296
  <tr>
297
  <td colspan="2" style="padding: 0.5rem 0;">
298
  <div class="ga-title con_tracking_integration con_faq_title" data-id="sec_con_integration">
299
+ <?php esc_html_e("Google Analytics Event Tracking - Custom Integration","enhanced-e-commerce-for-woocommerce-store"); ?>
300
  <div class="tvc-tooltip">
301
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This feature is for the woocommerce store which has changed standard woocommerce hooks or implemented custom woocommerce hooks.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
302
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
303
  </div>
304
  <img class="faq_icon" style="height: 20px;" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL . "/admin/images/arrow-down-sign.png"); ?>" ></div>
306
  <table class="tracking-trigger">
307
  <tr><th colspan="2">
308
  <span>
309
+ <?php esc_html_e("Product data collection method ","enhanced-e-commerce-for-woocommerce-store"); ?>
310
  <div class="tvc-tooltip">
311
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When you have custom woocommerce implementation and you have modified standard woocommerce hooks, you can configure/select your custom hooks from below to enable google analytics tracking for specific events.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
312
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
313
  </div>
314
  </span>
316
  </th></tr>
317
  <tr>
318
  <th style="padding: 0 1rem; width: 35%;">
319
+ <label class="ga-title align-middle"><?php esc_html_e("Product list","enhanced-e-commerce-for-woocommerce-store"); ?></label>
320
  </th>
321
  <td>
322
  <?php $tvc_product_list_data_collection_method = isset($data['tvc_product_list_data_collection_method'])?$data['tvc_product_list_data_collection_method']:"woocommerce_after_shop_loop_item";
339
  }?>
340
  </select>
341
  <div class="tvc-tooltip">
342
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When product impressions, clicks or add to cart google analytics ecommerce events are not working on your store, select the implemented hook from the dropdown.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
343
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
344
  </div>
345
  <small>(At home, collection, shop, product details and cart page)</small>
347
  </tr>
348
  <tr>
349
  <th style="padding: 0 1rem;">
350
+ <label class="ga-title align-middle"><?php esc_html_e("Product detail page","enhanced-e-commerce-for-woocommerce-store"); ?></label>
351
  </th>
352
  <td>
353
  <?php $tvc_product_detail_data_collection_method = isset($data['tvc_product_detail_data_collection_method'])?$data['tvc_product_detail_data_collection_method']:"woocommerce_after_single_product";
369
  }?>
370
  </select>
371
  <div class="tvc-tooltip">
372
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your product detail page is not being tracked in google analytics (view_item), try changing the relevant hook from the dropdown.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
373
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
374
  </div>
375
  </td>
376
  </tr>
377
  <tr>
378
  <th style="padding: 0 1rem;">
379
+ <label class="ga-title align-middle"><?php esc_html_e("Checkout page","enhanced-e-commerce-for-woocommerce-store"); ?></label>
380
  </th>
381
  <td>
382
  <?php
401
  }?>
402
  </select>
403
  <div class="tvc-tooltip">
404
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your checkout is not being tracked in google analytics (checkout events), try changing the relevant hook from the dropdown.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
405
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
406
  </div>
407
  </td>
409
 
410
  <tr>
411
  <th style="padding: 0 1rem;">
412
+ <label class="ga-title align-middle"><?php esc_html_e("Order confirmation page","enhanced-e-commerce-for-woocommerce-store"); ?></label>
413
  </th>
414
  <td>
415
  <?php
431
  }?>
432
  </select>
433
  <div class="tvc-tooltip">
434
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("When your transactions are not being tracked in google analytics (purchase event), try changing the relevant hook from the dropdown.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
435
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
436
  </div>
437
  </td>
439
 
440
  <tr><th colspan="2">
441
  <span>
442
+ <?php esc_html_e("Event selector","enhanced-e-commerce-for-woocommerce-store"); ?>
443
  <div class="tvc-tooltip">
444
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("If you change your front end class or id for below events, select/input the changed class or id.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
445
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
446
  </div>
447
  </span>
448
  </th></tr>
449
  <tr>
450
  <th style="padding: 0 1rem;">
451
+ <label class="ga-title align-middle"><?php esc_html_e("Product page AddToCart button","enhanced-e-commerce-for-woocommerce-store"); ?></label>
452
  </th>
453
  <td>
454
  <?php $tvc_product_detail_addtocart_selector = isset($data['tvc_product_detail_addtocart_selector'])?$data['tvc_product_detail_addtocart_selector']:"default";
492
  <?php $tvc_product_detail_addtocart_selector_val = isset($data['tvc_product_detail_addtocart_selector_val'])?$data['tvc_product_detail_addtocart_selector_val']:""; ?>
493
  <input type="text" class="fromfiled" name="tvc_product_detail_addtocart_selector_val" id="tvc_product_detail_addtocart_selector_val" value="<?php echo esc_attr($tvc_product_detail_addtocart_selector_val); ?>">
494
  <div class="tvc-tooltip">
495
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your button selector (id or calss) value. You can add multiple classes using comma separated string.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
496
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
497
  </div>
498
  </span>
501
  </tr>
502
  <tr>
503
  <th style="padding: 0 1rem;">
504
+ <label class="ga-title align-middle"><?php esc_html_e("Checkout Step 2","enhanced-e-commerce-for-woocommerce-store"); ?></label>
505
  </th>
506
  <td>
507
  <?php $tvc_checkout_step_2_selector = isset($data['tvc_checkout_step_2_selector'])?$data['tvc_checkout_step_2_selector']:"default";
543
  <?php $tvc_checkout_step_2_selector_val = isset($data['tvc_checkout_step_2_selector_val'])?$data['tvc_checkout_step_2_selector_val']:""; ?>
544
  <input type="text" class="fromfiled" name="tvc_checkout_step_2_selector_val" id="tvc_checkout_step_2_selector_val" value="<?php echo esc_attr($tvc_checkout_step_2_selector_val); ?>">
545
  <div class="tvc-tooltip">
546
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your selector (id or calss) value. You can add multiple classes using comma separated string.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
547
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
548
  </div>
549
  </span>
551
  </tr>
552
  <tr>
553
  <th style="padding: 0 1rem;">
554
+ <label class="ga-title align-middle"><?php esc_html_e("Checkout Step 3","enhanced-e-commerce-for-woocommerce-store"); ?></label>
555
  </th>
556
  <td>
557
  <?php $tvc_checkout_step_3_selector = isset($data['tvc_checkout_step_3_selector'])?$data['tvc_checkout_step_3_selector']:"default";
593
  <?php $tvc_checkout_step_3_selector_val = isset($data['tvc_checkout_step_3_selector_val'])?$data['tvc_checkout_step_3_selector_val']:""; ?>
594
  <input type="text" class="fromfiled" name="tvc_checkout_step_3_selector_val" id="tvc_checkout_step_3_selector_val" value="<?php echo esc_attr($tvc_checkout_step_3_selector_val); ?>">
595
  <div class="tvc-tooltip">
596
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("Enter your button selector (id or calss) value. You can add multiple classes using comma separated string.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
597
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
598
  </div>
599
  </span>
605
  </tr>
606
  <tr>
607
  <th>
608
+ <label class="ga-title align-middle" for="ga_PrivacyPolicy"><?php esc_html_e("Privacy Policy","enhanced-e-commerce-for-woocommerce-store"); ?></label>
609
  </th>
610
  <td>
611
  <label class="align-middle">
612
  <?php $ga_PrivacyPolicy = !empty($data['ga_PrivacyPolicy']) ? 'checked' : ''; ?>
613
  <input type="checkbox" name="ga_PrivacyPolicy" id="ga_PrivacyPolicy" required="required" <?php echo esc_attr($ga_PrivacyPolicy); ?>>
614
+ <label class="custom-control-label" for="ga_PrivacyPolicy"><?php esc_html_e("Accept Privacy Policy of Plugin","enhanced-e-commerce-for-woocommerce-store"); ?></label>
615
 
616
+ <p class="description"><?php esc_html_e("By using Conversios plugin, you agree to Conversios plugin's","enhanced-e-commerce-for-woocommerce-store"); ?> <a href= "<?php echo esc_url_raw("https://www.tatvic.com/privacy-policy/?ref=plugin_policy&utm_source=plugin_backend&utm_medium=woo_premium_plugin&utm_campaign=GDPR_complaince_ecomm_plugins"); ?>" target="_blank"><?php esc_html_e("Privacy Policy","enhanced-e-commerce-for-woocommerce-store"); ?></a></p>
617
  </label>
618
  </td>
619
  </tr>
625
  <input type="hidden" id="google_ads_id" name = "google_ads_id" value="<?= esc_attr((!empty($data['google_ads_id']))?$data['google_ads_id']:""); ?>"/>
626
  <input type="hidden" id="google_merchant_id" name = "google_merchant_id" value="<?= esc_attr((!empty($data['google_merchant_id']))?$data['google_merchant_id']:""); ?>"/>
627
  <input type="hidden" name="subscription_id" value="<?php echo esc_attr((!empty($data['subscription_id']))?$data['subscription_id']:""); ?>">
628
+ <button type="submit" class="btn btn-primary" id="ee_submit_plugin" name="ee_submit_plugin"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
629
  </p>
630
  </form>
631
  </div>
admin/partials/pricings.php CHANGED
@@ -39,278 +39,278 @@ class TVC_Pricings {
39
  <div class="tvc-container">
40
  <div class="clearfix">
41
  <div class="row-heading clearfix">
42
- <div class="column tvc-blank-col"><span><?php esc_html_e("Features","conversios"); ?></span></div>
43
  <div class="column discounted tvc-free-plan">
44
- <div class="name-wrap"><div class="name"><?php esc_html_e("STARTER","conversios"); ?></div></div>
45
  <div class="tvc-list-price">
46
- <div class="price-current"><span class="inner"><?php esc_html_e("FREE","conversios"); ?></span></div>
47
- <div class="tvc_month_free"><?php esc_html_e("FOREVER FREE","conversios"); ?></div>
48
  </div>
49
  <span>
50
- <a href="javascript:void(0)" class="btn tvc-btn"><?php esc_html_e("Currently Active","conversios"); ?></a>
51
  </span>
52
  </div>
53
  <div class="column discounted ">
54
- <div class="name-wrap"><div class="name"><?php esc_html_e("HUSTLE","conversios"); ?></div></div>
55
  <div class="tvc-list-price-month">
56
  <div class="tvc-list-price">
57
  <div class="price-normal">
58
- <span><?php esc_html_e("$39.00","conversios"); ?></span>
59
- <div class="tvc-plan-off"><?php esc_html_e("50% OFF","conversios"); ?></div>
60
  </div>
61
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$19"),esc_html_e("/month")); ?></span></div>
62
- <div class="tvc_month_free"><?php esc_html_e("Limited Offer","conversios"); ?></div>
63
  </div>
64
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_1_m&utm_source=EE+Plugin+User+Interface&utm_medium=HUSTLE&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","conversios"); ?></a>
65
  </div>
66
  </div>
67
  <div class="column discounted popular">
68
  <div class="tvc_popular">
69
- <div class="tvc_popular_inner"><?php esc_html_e("POPULAR","conversios"); ?></div>
70
  </div>
71
  <div class="name-wrap">
72
- <div class="name"><?php esc_html_e("GROWTH","conversios"); ?></div>
73
  </div>
74
  <div class="tvc-list-price-month">
75
  <div class="tvc-list-price">
76
- <div class="price-normal"><span><?php esc_html_e("$59.00","conversios"); ?></span>
77
- <div class="tvc-plan-off"><?php esc_html_e("50% OFF","conversios"); ?></div>
78
  </div>
79
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$29"),esc_html_e("/month")); ?></span></div>
80
- <div class="tvc_month_free"><?php esc_html_e("Limited Offer","conversios"); ?></div>
81
  </div>
82
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_2_m&utm_source=EE+Plugin+User+Interface&utm_medium=GROWTH&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","conversios"); ?></a>
83
  </div>
84
  </div>
85
  <div class="column discounted ">
86
  <div class="name-wrap">
87
- <div class="name"><?php esc_html_e("LEAP","conversios"); ?></div>
88
  </div>
89
  <div class="tvc-list-price-month">
90
  <div class="tvc-list-price">
91
- <div class="price-normal"><span><?php esc_html_e("$99.00","conversios"); ?></span>
92
- <div class="tvc-plan-off"><?php esc_html_e("50% OFF","conversios"); ?></div>
93
  </div>
94
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$49"),esc_html_e("/month")); ?></span></div>
95
- <div class="tvc_month_free"><?php esc_html_e("Limited Offer","conversios"); ?></div>
96
  </div>
97
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_3_m&utm_source=EE+Plugin+User+Interface&utm_medium=LEAP&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","conversios"); ?></a>
98
  </div>
99
  </div>
100
  </div>
101
- <div class="row-subheading clearfix"><?php esc_html_e("Analytics","conversios"); ?></div>
102
  <div class="row-feature clearfix">
103
- <div class="column"><?php esc_html_e("Universal Analytics Tracking","conversios"); ?></div>
104
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
105
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
106
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
107
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
108
  </div>
109
  <div class="row-feature clearfix">
110
- <div class="column"><?php esc_html_e("Google Analytics 4 Tracking","conversios"); ?></div>
111
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
112
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
113
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
114
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
115
  </div>
116
  <div class="row-feature clearfix">
117
- <div class="column"><?php esc_html_e("Dual Set up (UA + GA4)","conversios"); ?></div>
118
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
119
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
120
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
121
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
122
  </div>
123
  <div class="row-feature clearfix">
124
- <div class="column"><?php esc_html_e("eCommerce tracking","conversios"); ?></div>
125
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
126
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
127
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
128
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
129
  </div><div class="row-feature clearfix">
130
- <div class="column"><?php esc_html_e("Shopping Behavior Analysis","conversios"); ?></div>
131
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
132
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
133
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
134
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
135
  </div><div class="row-feature clearfix">
136
- <div class="column"><?php esc_html_e("Checkout Behavior Tracking","conversios"); ?></div>
137
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
138
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
139
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
140
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
141
  </div><div class="row-feature clearfix">
142
- <div class="column"><?php esc_html_e("Channel Performance Analysis","conversios"); ?></div>
143
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
144
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
145
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
146
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
147
  </div><div class="row-feature clearfix">
148
- <div class="column"><?php esc_html_e("All Pages tracking","conversios"); ?></div>
149
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
150
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
151
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
152
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
153
  </div><div class="row-feature clearfix">
154
- <div class="column"><?php esc_html_e("Google Analytics and Google Ads linking","conversios"); ?></div>
155
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
156
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
157
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
158
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
159
  </div><div class="row-feature clearfix">
160
- <div class="column"><?php esc_html_e("Custom dimensions tracking","conversios"); ?></div>
161
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
162
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
163
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
164
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
165
  </div><div class="row-feature clearfix">
166
- <div class="column"><?php esc_html_e("Custom metrics tracking","conversios"); ?></div>
167
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
168
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
169
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
170
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
171
  </div>
172
  <div class="row-feature clearfix">
173
- <div class="column"><?php esc_html_e("Affiliate performance tracking","conversios"); ?></div>
174
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
175
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
176
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
177
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
178
  </div>
179
  <div class="row-feature clearfix">
180
- <div class="column"><?php esc_html_e("Coupon Performance Tracking","conversios"); ?></div>
181
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
182
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
183
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
184
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
185
  </div>
186
  <div class="row-feature clearfix">
187
- <div class="column"><?php esc_html_e("Actionable Dashboard (GA3/ GA4)","conversios"); ?></div>
188
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
189
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
190
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
191
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
192
  </div>
193
  <div class="row-feature clearfix">
194
- <div class="column"><?php esc_html_e("Facebook pixel tracking","conversios"); ?></div>
195
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
196
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
197
- <div class="column popular"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
198
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
199
  </div>
200
- <div class="row-subheading clearfix"><?php esc_html_e("Google Shopping","conversios"); ?></div>
201
  <div class="row-feature clearfix">
202
- <div class="column"><?php esc_html_e("Google Merchant Center account management","conversios"); ?></div>
203
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
204
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
205
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
206
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
207
  </div><div class="row-feature clearfix">
208
- <div class="column"><?php esc_html_e("Site verification","conversios"); ?></div>
209
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
210
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
211
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
212
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
213
  </div><div class="row-feature clearfix">
214
- <div class="column"><?php esc_html_e("Domain claim","conversios"); ?></div>
215
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
216
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
217
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
218
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
219
  </div><div class="row-feature clearfix">
220
- <div class="column"><?php esc_html_e("Products Sync via Content API","conversios"); ?></div>
221
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 100)","conversios"); ?></div>
222
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 1000)","conversios"); ?></div>
223
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 5000)","conversios"); ?></div>
224
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Unlimited)","conversios"); ?></div>
225
  </div><div class="row-feature clearfix">
226
- <div class="column"><?php esc_html_e("Automatic Products Update","conversios"); ?></div>
227
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 100)","conversios"); ?></div>
228
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 1000","conversios"); ?></div>
229
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 5000)","conversios"); ?></div>
230
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Unlimited)","conversios"); ?></div>
231
  </div><div class="row-feature clearfix">
232
- <div class="column"><?php esc_html_e("Schedule Product Sync","conversios"); ?></div>
233
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
234
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
235
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
236
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
237
  </div><div class="row-feature clearfix">
238
- <div class="column"><?php esc_html_e("Smart Shopping Campaign management","conversios"); ?></div>
239
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
240
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
241
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
242
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
243
  </div><div class="row-feature clearfix">
244
- <div class="column"><?php esc_html_e("Smart Shopping reports","conversios"); ?></div>
245
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
246
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
247
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
248
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
249
  </div><div class="row-feature clearfix">
250
- <div class="column"><?php esc_html_e("Google Ads and Google Merchant Center account linking","conversios"); ?></div>
251
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
252
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
253
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
254
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
255
  </div><div class="row-feature clearfix">
256
- <div class="column"><?php esc_html_e("Remarketing tags","conversios"); ?></div>
257
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
258
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
259
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
260
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
261
  </div><div class="row-feature clearfix">
262
- <div class="column"><?php esc_html_e("Dynamic Remarketing Tags for eCommerce events","conversios"); ?></div>
263
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","conversios"); ?></div>
264
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
265
- <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
266
- <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","conversios"); ?></div>
267
  </div><div class="row-feature clearfix">
268
- <div class="column"><?php esc_html_e("Google Ads Conversion tracking","conversios"); ?></div>
269
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
270
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
271
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
272
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
273
  </div><div class="row-feature clearfix">
274
- <div class="column"><?php esc_html_e("Compatibility with Brands Plugin","conversios"); ?></div>
275
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
276
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
277
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
278
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
279
  </div><div class="row-feature clearfix">
280
- <div class="column"><?php esc_html_e("Product filters for selected products sync","conversios"); ?></div>
281
- <div class="column"><?php esc_html_e("(Upcoming)","conversios"); ?></div>
282
- <div class="column"><?php esc_html_e("(Upcoming)","conversios"); ?></div>
283
- <div class="column popular"><?php esc_html_e("(Upcoming)","conversios"); ?></div>
284
- <div class="column"><?php esc_html_e("(Upcoming)","conversios"); ?></div>
285
  </div>
286
  <div class="row-feature clearfix">
287
- <div class="column"><?php esc_html_e("Performance max campaigns","conversios"); ?></div>
288
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
289
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
290
  <div class="column popular"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
291
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
292
  </div>
293
- <div class="row-subheading clearfix"><?php esc_html_e("Support","conversios"); ?></div>
294
  <div class="row-feature clearfix">
295
- <div class="column"><?php esc_html_e("Free Google Analytics Audit","conversios"); ?></div>
296
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
297
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
298
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
299
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
300
  </div><div class="row-feature clearfix">
301
- <div class="column"><?php esc_html_e("Free Consultation with Shopping Expert","conversios"); ?></div>
302
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
303
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
304
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
305
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
306
  </div><div class="row-feature clearfix">
307
- <div class="column"><?php esc_html_e("Dedicated Customer Success Manager","conversios"); ?></div>
308
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
309
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
310
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
311
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
312
  </div><div class="row-footer clearfix">
313
- <div class="column"><?php esc_html_e("Premium Support (24*7)","conversios"); ?></div>
314
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
315
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
316
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
@@ -321,8 +321,8 @@ class TVC_Pricings {
321
  </div>
322
  <div class="tvc-guarantee">
323
  <div class="guarantee">
324
- <div class="title"><?php printf("<span>%s</span>%s", esc_html_e("15 Days","conversios"), esc_html_e("100% No-Risk Money Back Guarantee!","conversios")); ?></div>
325
- <div class="description"><?php esc_html_e("You are fully protected by our 100% No-Risk-Double-Guarantee. If you don’t like over the next 15 days, then we will happily refund 100% of your money. No questions asked.","conversios"); ?></div>
326
  </div>
327
  </div>
328
  </div>
39
  <div class="tvc-container">
40
  <div class="clearfix">
41
  <div class="row-heading clearfix">
42
+ <div class="column tvc-blank-col"><span><?php esc_html_e("Features","enhanced-e-commerce-for-woocommerce-store"); ?></span></div>
43
  <div class="column discounted tvc-free-plan">
44
+ <div class="name-wrap"><div class="name"><?php esc_html_e("STARTER","enhanced-e-commerce-for-woocommerce-store"); ?></div></div>
45
  <div class="tvc-list-price">
46
+ <div class="price-current"><span class="inner"><?php esc_html_e("FREE","enhanced-e-commerce-for-woocommerce-store"); ?></span></div>
47
+ <div class="tvc_month_free"><?php esc_html_e("FOREVER FREE","enhanced-e-commerce-for-woocommerce-store"); ?></div>
48
  </div>
49
  <span>
50
+ <a href="javascript:void(0)" class="btn tvc-btn"><?php esc_html_e("Currently Active","enhanced-e-commerce-for-woocommerce-store"); ?></a>
51
  </span>
52
  </div>
53
  <div class="column discounted ">
54
+ <div class="name-wrap"><div class="name"><?php esc_html_e("HUSTLE","enhanced-e-commerce-for-woocommerce-store"); ?></div></div>
55
  <div class="tvc-list-price-month">
56
  <div class="tvc-list-price">
57
  <div class="price-normal">
58
+ <span><?php esc_html_e("$39.00","enhanced-e-commerce-for-woocommerce-store"); ?></span>
59
+ <div class="tvc-plan-off"><?php esc_html_e("50% OFF","enhanced-e-commerce-for-woocommerce-store"); ?></div>
60
  </div>
61
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$19"),esc_html_e("/month")); ?></span></div>
62
+ <div class="tvc_month_free"><?php esc_html_e("Limited Offer","enhanced-e-commerce-for-woocommerce-store"); ?></div>
63
  </div>
64
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_1_m&utm_source=EE+Plugin+User+Interface&utm_medium=HUSTLE&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","enhanced-e-commerce-for-woocommerce-store"); ?></a>
65
  </div>
66
  </div>
67
  <div class="column discounted popular">
68
  <div class="tvc_popular">
69
+ <div class="tvc_popular_inner"><?php esc_html_e("POPULAR","enhanced-e-commerce-for-woocommerce-store"); ?></div>
70
  </div>
71
  <div class="name-wrap">
72
+ <div class="name"><?php esc_html_e("GROWTH","enhanced-e-commerce-for-woocommerce-store"); ?></div>
73
  </div>
74
  <div class="tvc-list-price-month">
75
  <div class="tvc-list-price">
76
+ <div class="price-normal"><span><?php esc_html_e("$59.00","enhanced-e-commerce-for-woocommerce-store"); ?></span>
77
+ <div class="tvc-plan-off"><?php esc_html_e("50% OFF","enhanced-e-commerce-for-woocommerce-store"); ?></div>
78
  </div>
79
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$29"),esc_html_e("/month")); ?></span></div>
80
+ <div class="tvc_month_free"><?php esc_html_e("Limited Offer","enhanced-e-commerce-for-woocommerce-store"); ?></div>
81
  </div>
82
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_2_m&utm_source=EE+Plugin+User+Interface&utm_medium=GROWTH&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","enhanced-e-commerce-for-woocommerce-store"); ?></a>
83
  </div>
84
  </div>
85
  <div class="column discounted ">
86
  <div class="name-wrap">
87
+ <div class="name"><?php esc_html_e("LEAP","enhanced-e-commerce-for-woocommerce-store"); ?></div>
88
  </div>
89
  <div class="tvc-list-price-month">
90
  <div class="tvc-list-price">
91
+ <div class="price-normal"><span><?php esc_html_e("$99.00","enhanced-e-commerce-for-woocommerce-store"); ?></span>
92
+ <div class="tvc-plan-off"><?php esc_html_e("50% OFF","enhanced-e-commerce-for-woocommerce-store"); ?></div>
93
  </div>
94
  <div class="price-current"><span class="inner"><?php printf("%s <span>%s</span>",esc_html_e("$49"),esc_html_e("/month")); ?></span></div>
95
+ <div class="tvc_month_free"><?php esc_html_e("Limited Offer","enhanced-e-commerce-for-woocommerce-store"); ?></div>
96
  </div>
97
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/checkout/?pid=plan_3_m&utm_source=EE+Plugin+User+Interface&utm_medium=LEAP&utm_campaign=Upsell+at+Conversios"); ?>" class="btn tvc-btn"><?php esc_html_e("Get Started","enhanced-e-commerce-for-woocommerce-store"); ?></a>
98
  </div>
99
  </div>
100
  </div>
101
+ <div class="row-subheading clearfix"><?php esc_html_e("Analytics","enhanced-e-commerce-for-woocommerce-store"); ?></div>
102
  <div class="row-feature clearfix">
103
+ <div class="column"><?php esc_html_e("Universal Analytics Tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
104
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
105
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
106
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
107
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
108
  </div>
109
  <div class="row-feature clearfix">
110
+ <div class="column"><?php esc_html_e("Google Analytics 4 Tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
111
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
112
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
113
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
114
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
115
  </div>
116
  <div class="row-feature clearfix">
117
+ <div class="column"><?php esc_html_e("Dual Set up (UA + GA4)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
118
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
119
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
120
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
121
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
122
  </div>
123
  <div class="row-feature clearfix">
124
+ <div class="column"><?php esc_html_e("eCommerce tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
125
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
126
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
127
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
128
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
129
  </div><div class="row-feature clearfix">
130
+ <div class="column"><?php esc_html_e("Shopping Behavior Analysis","enhanced-e-commerce-for-woocommerce-store"); ?></div>
131
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
132
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
133
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
134
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
135
  </div><div class="row-feature clearfix">
136
+ <div class="column"><?php esc_html_e("Checkout Behavior Tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
137
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
138
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
139
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
140
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
141
  </div><div class="row-feature clearfix">
142
+ <div class="column"><?php esc_html_e("Channel Performance Analysis","enhanced-e-commerce-for-woocommerce-store"); ?></div>
143
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
144
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
145
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
146
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
147
  </div><div class="row-feature clearfix">
148
+ <div class="column"><?php esc_html_e("All Pages tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
149
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
150
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
151
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
152
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
153
  </div><div class="row-feature clearfix">
154
+ <div class="column"><?php esc_html_e("Google Analytics and Google Ads linking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
155
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
156
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
157
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
158
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
159
  </div><div class="row-feature clearfix">
160
+ <div class="column"><?php esc_html_e("Custom dimensions tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
161
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
162
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
163
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
164
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
165
  </div><div class="row-feature clearfix">
166
+ <div class="column"><?php esc_html_e("Custom metrics tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
167
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
168
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
169
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
170
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
171
  </div>
172
  <div class="row-feature clearfix">
173
+ <div class="column"><?php esc_html_e("Affiliate performance tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
174
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
175
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
176
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
177
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
178
  </div>
179
  <div class="row-feature clearfix">
180
+ <div class="column"><?php esc_html_e("Coupon Performance Tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
181
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
182
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
183
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
184
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
185
  </div>
186
  <div class="row-feature clearfix">
187
+ <div class="column"><?php esc_html_e("Actionable Dashboard (GA3/ GA4)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
188
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
189
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
190
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
191
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
192
  </div>
193
  <div class="row-feature clearfix">
194
+ <div class="column"><?php esc_html_e("Facebook pixel tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
195
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
196
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
197
+ <div class="column popular"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
198
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
199
  </div>
200
+ <div class="row-subheading clearfix"><?php esc_html_e("Google Shopping","enhanced-e-commerce-for-woocommerce-store"); ?></div>
201
  <div class="row-feature clearfix">
202
+ <div class="column"><?php esc_html_e("Google Merchant Center account management","enhanced-e-commerce-for-woocommerce-store"); ?></div>
203
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
204
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
205
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
206
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
207
  </div><div class="row-feature clearfix">
208
+ <div class="column"><?php esc_html_e("Site verification","enhanced-e-commerce-for-woocommerce-store"); ?></div>
209
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
210
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
211
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
212
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
213
  </div><div class="row-feature clearfix">
214
+ <div class="column"><?php esc_html_e("Domain claim","enhanced-e-commerce-for-woocommerce-store"); ?></div>
215
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
216
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
217
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
218
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
219
  </div><div class="row-feature clearfix">
220
+ <div class="column"><?php esc_html_e("Products Sync via Content API","enhanced-e-commerce-for-woocommerce-store"); ?></div>
221
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 100)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
222
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 1000)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
223
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 5000)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
224
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Unlimited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
225
  </div><div class="row-feature clearfix">
226
+ <div class="column"><?php esc_html_e("Automatic Products Update","enhanced-e-commerce-for-woocommerce-store"); ?></div>
227
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 100)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
228
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 1000","enhanced-e-commerce-for-woocommerce-store"); ?></div>
229
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(upto 5000)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
230
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Unlimited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
231
  </div><div class="row-feature clearfix">
232
+ <div class="column"><?php esc_html_e("Schedule Product Sync","enhanced-e-commerce-for-woocommerce-store"); ?></div>
233
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
234
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
235
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
236
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
237
  </div><div class="row-feature clearfix">
238
+ <div class="column"><?php esc_html_e("Smart Shopping Campaign management","enhanced-e-commerce-for-woocommerce-store"); ?></div>
239
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
240
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
241
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
242
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
243
  </div><div class="row-feature clearfix">
244
+ <div class="column"><?php esc_html_e("Smart Shopping reports","enhanced-e-commerce-for-woocommerce-store"); ?></div>
245
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
246
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
247
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
248
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
249
  </div><div class="row-feature clearfix">
250
+ <div class="column"><?php esc_html_e("Google Ads and Google Merchant Center account linking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
251
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
252
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
253
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
254
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
255
  </div><div class="row-feature clearfix">
256
+ <div class="column"><?php esc_html_e("Remarketing tags","enhanced-e-commerce-for-woocommerce-store"); ?></div>
257
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
258
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
259
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
260
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
261
  </div><div class="row-feature clearfix">
262
+ <div class="column"><?php esc_html_e("Dynamic Remarketing Tags for eCommerce events","enhanced-e-commerce-for-woocommerce-store"); ?></div>
263
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Limited)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
264
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
265
+ <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
266
+ <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"><br><?php esc_html_e("(Complete)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
267
  </div><div class="row-feature clearfix">
268
+ <div class="column"><?php esc_html_e("Google Ads Conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?></div>
269
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
270
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
271
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
272
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
273
  </div><div class="row-feature clearfix">
274
+ <div class="column"><?php esc_html_e("Compatibility with Brands Plugin","enhanced-e-commerce-for-woocommerce-store"); ?></div>
275
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
276
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
277
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
278
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
279
  </div><div class="row-feature clearfix">
280
+ <div class="column"><?php esc_html_e("Product filters for selected products sync","enhanced-e-commerce-for-woocommerce-store"); ?></div>
281
+ <div class="column"><?php esc_html_e("(Upcoming)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
282
+ <div class="column"><?php esc_html_e("(Upcoming)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
283
+ <div class="column popular"><?php esc_html_e("(Upcoming)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
284
+ <div class="column"><?php esc_html_e("(Upcoming)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
285
  </div>
286
  <div class="row-feature clearfix">
287
+ <div class="column"><?php esc_html_e("Performance max campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></div>
288
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
289
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
290
  <div class="column popular"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
291
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
292
  </div>
293
+ <div class="row-subheading clearfix"><?php esc_html_e("Support","enhanced-e-commerce-for-woocommerce-store"); ?></div>
294
  <div class="row-feature clearfix">
295
+ <div class="column"><?php esc_html_e("Free Google Analytics Audit","enhanced-e-commerce-for-woocommerce-store"); ?></div>
296
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
297
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
298
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
299
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
300
  </div><div class="row-feature clearfix">
301
+ <div class="column"><?php esc_html_e("Free Consultation with Shopping Expert","enhanced-e-commerce-for-woocommerce-store"); ?></div>
302
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
303
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
304
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
305
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
306
  </div><div class="row-feature clearfix">
307
+ <div class="column"><?php esc_html_e("Dedicated Customer Success Manager","enhanced-e-commerce-for-woocommerce-store"); ?></div>
308
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
309
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
310
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
311
  <div class="column"><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
312
  </div><div class="row-footer clearfix">
313
+ <div class="column"><?php esc_html_e("Premium Support (24*7)","enhanced-e-commerce-for-woocommerce-store"); ?></div>
314
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
315
  <div class="column"><img src="<?php echo esc_url_raw($close_icon); ?>" alt="no"></div>
316
  <div class="column popular "><img src="<?php echo esc_url_raw($check_icon); ?>" alt="yes"></div>
321
  </div>
322
  <div class="tvc-guarantee">
323
  <div class="guarantee">
324
+ <div class="title"><?php printf("<span>%s</span>%s", esc_html_e("15 Days","enhanced-e-commerce-for-woocommerce-store"), esc_html_e("100% No-Risk Money Back Guarantee!","enhanced-e-commerce-for-woocommerce-store")); ?></div>
325
+ <div class="description"><?php esc_html_e("You are fully protected by our 100% No-Risk-Double-Guarantee. If you don’t like over the next 15 days, then we will happily refund 100% of your money. No questions asked.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
326
  </div>
327
  </div>
328
  </div>
enhanced-ecommerce-google-analytics.php CHANGED
@@ -15,12 +15,12 @@
15
  * Plugin Name: Conversios.io - Google Analytics and Google Shopping plugin for WooCommerce
16
  * Plugin URI: https://www.tatvic.com/tatvic-labs/woocommerce-extension/
17
  * Description: Automates eCommerce tracking in Google Analytics, dynamic remarkting in Google Ads, and provides complete Google Shopping features.
18
- * Version: 4.9.2
19
  * Author: Conversios
20
  * Author URI: conversios.io
21
  * License: GPL-2.0+
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
23
- * Text Domain: conversios
24
  * Domain Path: /languages
25
  * WC requires at least: 3.5.0
26
  * WC tested up to: 6.9.1
@@ -37,7 +37,7 @@ if ( ! defined( 'WPINC' ) ) {
37
  * Start at version 1.0.0 and use SemVer - https://semver.org
38
  * Rename this for your plugin and update it as you release new versions.
39
  */
40
- define( 'PLUGIN_TVC_VERSION', '4.9.2' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
15
  * Plugin Name: Conversios.io - Google Analytics and Google Shopping plugin for WooCommerce
16
  * Plugin URI: https://www.tatvic.com/tatvic-labs/woocommerce-extension/
17
  * Description: Automates eCommerce tracking in Google Analytics, dynamic remarkting in Google Ads, and provides complete Google Shopping features.
18
+ * Version: 4.9.3
19
  * Author: Conversios
20
  * Author URI: conversios.io
21
  * License: GPL-2.0+
22
  * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
23
+ * Text Domain: enhanced-e-commerce-for-woocommerce-store
24
  * Domain Path: /languages
25
  * WC requires at least: 3.5.0
26
  * WC tested up to: 6.9.1
37
  * Start at version 1.0.0 and use SemVer - https://semver.org
38
  * Rename this for your plugin and update it as you release new versions.
39
  */
40
+ define( 'PLUGIN_TVC_VERSION', '4.9.3' );
41
  $fullName = plugin_basename( __FILE__ );
42
  $dir = str_replace('/enhanced-ecommerce-google-analytics.php','',$fullName);
43
  if ( ! defined( 'ENHANCAD_PLUGIN_NAME' ) ) {
includes/class-enhanced-ecommerce-google-analytics-activator.php CHANGED
@@ -32,7 +32,7 @@ class Enhanced_Ecommerce_Google_Analytics_Activator {
32
  */
33
  public static function activate() {
34
  /*if (!is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
35
- wp_die(wp_sprintf("%s <br><a href='" . esc_url_raw(admin_url( 'plugins.php' )) . "'>&laquo; %s</a>", esc_html__("Hey, It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin can only be activated if you have active WooCommerce plugin in your wp-admin.","conversios"), esc_html__("Return to Plugins","conversios")));
36
  }*/
37
  $TVC_Admin_Helper = new TVC_Admin_Helper();
38
  $TVC_Admin_Helper->update_app_status();
32
  */
33
  public static function activate() {
34
  /*if (!is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
35
+ wp_die(wp_sprintf("%s <br><a href='" . esc_url_raw(admin_url( 'plugins.php' )) . "'>&laquo; %s</a>", esc_html__("Hey, It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin can only be activated if you have active WooCommerce plugin in your wp-admin.","enhanced-e-commerce-for-woocommerce-store"), esc_html__("Return to Plugins","enhanced-e-commerce-for-woocommerce-store")));
36
  }*/
37
  $TVC_Admin_Helper = new TVC_Admin_Helper();
38
  $TVC_Admin_Helper->update_app_status();
includes/class-enhanced-ecommerce-google-analytics-i18n.php CHANGED
@@ -34,7 +34,7 @@ class Enhanced_Ecommerce_Google_Analytics_i18n {
34
  public function load_plugin_textdomain() {
35
 
36
  load_plugin_textdomain(
37
- 'conversios',
38
  false,
39
  dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
40
  );
34
  public function load_plugin_textdomain() {
35
 
36
  load_plugin_textdomain(
37
+ 'enhanced-e-commerce-for-woocommerce-store',
38
  false,
39
  dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
40
  );
includes/class-enhanced-ecommerce-google-analytics.php CHANGED
@@ -217,7 +217,7 @@ class Enhanced_Ecommerce_Google_Analytics {
217
  $this->loader->run();
218
  }else if( is_admin() && !is_network_admin() && is_plugin_active( 'enhanced-e-commerce-for-woocommerce-store/enhanced-ecommerce-google-analytics.php' ) ){
219
  if(!isset($_POST['action'])){
220
- printf('<div class="notice tvc-notice notice-error"><p>%s</p></div>',esc_html__("Hey, It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin can only be activated if you have active WooCommerce plugin in your wp-admin.","conversios"));
221
  }
222
  }
223
  }
@@ -261,12 +261,12 @@ class Enhanced_Ecommerce_Google_Analytics {
261
  unset($links['deactivate']);
262
  if ( is_plugin_active( 'woocommerce/woocommerce.php' ) || is_plugin_active_for_network( 'woocommerce/woocommerce.php') ) {
263
  $setting_url = esc_url_raw('admin.php?page=conversios-google-analytics');
264
- $links[] = '<a href="' . get_admin_url(null, $setting_url) . '">'.esc_html__("Settings","conversios").'</a>';
265
  }
266
 
267
- $links[] = '<a href="'.esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/#faq").'" target="_blank">'.esc_html__("FAQ","conversios").'</a>';
268
- $links[] = '<a href="'.esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf").'" target="_blank">'.esc_html__("Documentation","conversios").'</a>';
269
- $links[] = '<a href="'.esc_url_raw("https://conversios.io/pricings/?utm_source=EE+Plugin+User+Interface&utm_medium=Plugins+Listing+Page+Upgrade+to+Premium&utm_campaign=Upsell+at+Conversios").'" target="_blank"><b>'.esc_html__("Upgrade to Premium","conversios").'</b></a>';
270
  $links['deactivate'] = $deactivate_link;
271
  return $links;
272
  }
@@ -278,7 +278,7 @@ class Enhanced_Ecommerce_Google_Analytics {
278
 
279
  public function check_dependency(){
280
  if ( function_exists('run_actionable_google_analytics')) {
281
- printf('<div class="error"><p><strong>%s</strong>%s</p></div>', esc_html__("Note: ","conversios"),esc_html__("It seems Actionable Google Analytics Plugin is active on your store. Kindly deactivate it in order to avoid data duplication in GA.","conversios"));
282
  die();
283
  }
284
  }
217
  $this->loader->run();
218
  }else if( is_admin() && !is_network_admin() && is_plugin_active( 'enhanced-e-commerce-for-woocommerce-store/enhanced-ecommerce-google-analytics.php' ) ){
219
  if(!isset($_POST['action'])){
220
+ printf('<div class="notice tvc-notice notice-error"><p>%s</p></div>',esc_html__("Hey, It seems WooCommerce plugin is not active on your wp-admin. Conversios.io - Google Analytics and Google Shopping plugin can only be activated if you have active WooCommerce plugin in your wp-admin.","enhanced-e-commerce-for-woocommerce-store"));
221
  }
222
  }
223
  }
261
  unset($links['deactivate']);
262
  if ( is_plugin_active( 'woocommerce/woocommerce.php' ) || is_plugin_active_for_network( 'woocommerce/woocommerce.php') ) {
263
  $setting_url = esc_url_raw('admin.php?page=conversios-google-analytics');
264
+ $links[] = '<a href="' . get_admin_url(null, $setting_url) . '">'.esc_html__("Settings","enhanced-e-commerce-for-woocommerce-store").'</a>';
265
  }
266
 
267
+ $links[] = '<a href="'.esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/#faq").'" target="_blank">'.esc_html__("FAQ","enhanced-e-commerce-for-woocommerce-store").'</a>';
268
+ $links[] = '<a href="'.esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf").'" target="_blank">'.esc_html__("Documentation","enhanced-e-commerce-for-woocommerce-store").'</a>';
269
+ $links[] = '<a href="'.esc_url_raw("https://conversios.io/pricings/?utm_source=EE+Plugin+User+Interface&utm_medium=Plugins+Listing+Page+Upgrade+to+Premium&utm_campaign=Upsell+at+Conversios").'" target="_blank"><b>'.esc_html__("Upgrade to Premium","enhanced-e-commerce-for-woocommerce-store").'</b></a>';
270
  $links['deactivate'] = $deactivate_link;
271
  return $links;
272
  }
278
 
279
  public function check_dependency(){
280
  if ( function_exists('run_actionable_google_analytics')) {
281
+ printf('<div class="error"><p><strong>%s</strong>%s</p></div>', esc_html__("Note: ","enhanced-e-commerce-for-woocommerce-store"),esc_html__("It seems Actionable Google Analytics Plugin is active on your store. Kindly deactivate it in order to avoid data duplication in GA.","enhanced-e-commerce-for-woocommerce-store"));
282
  die();
283
  }
284
  }
includes/data/class-tvc-ajax-file.php CHANGED
@@ -228,7 +228,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
228
  $sync_produt = $total_product;
229
  $sync_produt_p = ($sync_produt*100)/$total_product;
230
  $is_synced_up = ($total_product <= $sync_produt)?true:false;
231
- $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","conversios");
232
  //step one end
233
  }else if($sync_step == 2){
234
  $rs = $TVCProductSyncHelper->call_batch_wise_sync_product($last_sync_product_id, $product_batch_size);
@@ -242,11 +242,11 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
242
  $last_sync_product_id = (isset($rs['last_sync_product_id']))?$rs['last_sync_product_id']:0;
243
  $sync_produt_p = ($sync_produt*100)/$total_product;
244
  $is_synced_up = ($total_product <= $sync_produt)?true:false;
245
- $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","conversios");
246
  if($total_product <= $sync_produt){
247
  //$customObj->setGmcCategoryMapping($catMapRequest);
248
  //$customObj->setGmcAttributeMapping($attrMapRequest);
249
- $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","conversios");
250
  $TVC_Admin_DB_Helper->tvc_safe_truncate_table($prouct_pre_sync_table);
251
  }
252
  }
@@ -269,7 +269,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
269
  echo json_encode($customObj->record_customer_feedback($formdata));
270
  exit;
271
  }else{
272
- echo json_encode(array("error"=>true, "message" => esc_html__("Please answer the required questions","conversios") ));
273
  }
274
  }
275
  public function tvc_call_add_survey(){
@@ -294,9 +294,9 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
294
 
295
  if($response->error== false){
296
  //$key, $html, $title = null, $link = null, $link_title = null, $overwrite= false
297
- //$TVC_Admin_Helper->add_ee_msg_nofification("active_licence_key", esc_html__("Your plan is now successfully activated.","conversios"), esc_html__("Congratulations!!","conversios"), "", "", true);
298
  $TVC_Admin_Helper->update_subscription_details_api_to_db();
299
- echo json_encode(array('error' => false, "is_connect"=>true, 'message' => esc_html__("The licence key has been activated.","conversios") ));
300
  }else{
301
  echo json_encode(array('error' => true, "is_connect"=>true, 'message' => $response->message));
302
  }
@@ -306,7 +306,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
306
  $TVC_Admin_Helper->set_ee_additional_data($ee_additional_data);
307
  echo json_encode(array('error' => true, "is_connect"=>false, 'message' => ""));
308
  }else{
309
- echo json_encode(array('error' => true, "is_connect"=>false, 'message' => esc_html__("Licence key is required.","conversios")));
310
  }
311
  }
312
  exit;
@@ -324,9 +324,9 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
324
  $ee_additional_data['pro_snyc_time_limit'] = $pro_snyc_time_limit;
325
  $ee_additional_data['product_sync_batch_size'] = $product_sync_batch_size;
326
  $TVC_Admin_Helper->set_ee_additional_data($ee_additional_data);
327
- echo json_encode(array('error' => false, 'message' => esc_html__("Time interval and batch size successfully saved.","conversios")));
328
  }else{
329
- echo json_encode(array('error' => true, 'message' => esc_html__("Error occured while saving the settings.","conversios")));
330
  }
331
  }
332
  exit;
@@ -370,7 +370,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
370
  if( isset($api_rs['error']) ){
371
  echo json_encode($api_rs);
372
  }else{
373
- echo json_encode(array('error' => true, 'message' => esc_html__("Please try after some time.","conversios")));
374
  }
375
  exit;
376
  }
@@ -383,7 +383,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
383
  if(isset($api_rs['error']) && isset($api_rs['message']) && sanitize_text_field($api_rs['message'])){
384
  echo json_encode($api_rs);
385
  }else{
386
- echo json_encode(array('error' => true, 'message' => esc_html__("Please try after some time.","conversios")));
387
  }
388
  exit;
389
  }
@@ -536,7 +536,7 @@ class TVC_Ajax_File extends TVC_Ajax_Calls {
536
  $message = $response->message;
537
  echo json_encode(['status' => 'success', 'message' => $message]);
538
  }else{
539
- $message = is_array($response->errors) ? $response->errors[0] : esc_html__("Face some unprocessable entity","conversios");
540
  echo json_encode(['status' => 'error', 'message' => $message]);
541
  }
542
  }
228
  $sync_produt = $total_product;
229
  $sync_produt_p = ($sync_produt*100)/$total_product;
230
  $is_synced_up = ($total_product <= $sync_produt)?true:false;
231
+ $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","enhanced-e-commerce-for-woocommerce-store");
232
  //step one end
233
  }else if($sync_step == 2){
234
  $rs = $TVCProductSyncHelper->call_batch_wise_sync_product($last_sync_product_id, $product_batch_size);
242
  $last_sync_product_id = (isset($rs['last_sync_product_id']))?$rs['last_sync_product_id']:0;
243
  $sync_produt_p = ($sync_produt*100)/$total_product;
244
  $is_synced_up = ($total_product <= $sync_produt)?true:false;
245
+ $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","enhanced-e-commerce-for-woocommerce-store");
246
  if($total_product <= $sync_produt){
247
  //$customObj->setGmcCategoryMapping($catMapRequest);
248
  //$customObj->setGmcAttributeMapping($attrMapRequest);
249
+ $sync_message = esc_html__("Initiated, products are being synced to Merchant Center.Do not refresh..","enhanced-e-commerce-for-woocommerce-store");
250
  $TVC_Admin_DB_Helper->tvc_safe_truncate_table($prouct_pre_sync_table);
251
  }
252
  }
269
  echo json_encode($customObj->record_customer_feedback($formdata));
270
  exit;
271
  }else{
272
+ echo json_encode(array("error"=>true, "message" => esc_html__("Please answer the required questions","enhanced-e-commerce-for-woocommerce-store") ));
273
  }
274
  }
275
  public function tvc_call_add_survey(){
294
 
295
  if($response->error== false){
296
  //$key, $html, $title = null, $link = null, $link_title = null, $overwrite= false
297
+ //$TVC_Admin_Helper->add_ee_msg_nofification("active_licence_key", esc_html__("Your plan is now successfully activated.","enhanced-e-commerce-for-woocommerce-store"), esc_html__("Congratulations!!","conversios"), "", "", true);
298
  $TVC_Admin_Helper->update_subscription_details_api_to_db();
299
+ echo json_encode(array('error' => false, "is_connect"=>true, 'message' => esc_html__("The licence key has been activated.","enhanced-e-commerce-for-woocommerce-store") ));
300
  }else{
301
  echo json_encode(array('error' => true, "is_connect"=>true, 'message' => $response->message));
302
  }
306
  $TVC_Admin_Helper->set_ee_additional_data($ee_additional_data);
307
  echo json_encode(array('error' => true, "is_connect"=>false, 'message' => ""));
308
  }else{
309
+ echo json_encode(array('error' => true, "is_connect"=>false, 'message' => esc_html__("Licence key is required.","enhanced-e-commerce-for-woocommerce-store")));
310
  }
311
  }
312
  exit;
324
  $ee_additional_data['pro_snyc_time_limit'] = $pro_snyc_time_limit;
325
  $ee_additional_data['product_sync_batch_size'] = $product_sync_batch_size;
326
  $TVC_Admin_Helper->set_ee_additional_data($ee_additional_data);
327
+ echo json_encode(array('error' => false, 'message' => esc_html__("Time interval and batch size successfully saved.","enhanced-e-commerce-for-woocommerce-store")));
328
  }else{
329
+ echo json_encode(array('error' => true, 'message' => esc_html__("Error occured while saving the settings.","enhanced-e-commerce-for-woocommerce-store")));
330
  }
331
  }
332
  exit;
370
  if( isset($api_rs['error']) ){
371
  echo json_encode($api_rs);
372
  }else{
373
+ echo json_encode(array('error' => true, 'message' => esc_html__("Please try after some time.","enhanced-e-commerce-for-woocommerce-store")));
374
  }
375
  exit;
376
  }
383
  if(isset($api_rs['error']) && isset($api_rs['message']) && sanitize_text_field($api_rs['message'])){
384
  echo json_encode($api_rs);
385
  }else{
386
+ echo json_encode(array('error' => true, 'message' => esc_html__("Please try after some time.","enhanced-e-commerce-for-woocommerce-store")));
387
  }
388
  exit;
389
  }
536
  $message = $response->message;
537
  echo json_encode(['status' => 'success', 'message' => $message]);
538
  }else{
539
+ $message = is_array($response->errors) ? $response->errors[0] : esc_html__("Face some unprocessable entity","enhanced-e-commerce-for-woocommerce-store");
540
  echo json_encode(['status' => 'error', 'message' => $message]);
541
  }
542
  }
includes/setup/CustomApi.php CHANGED
@@ -280,7 +280,7 @@ class CustomApi{
280
  if(isset($response->errors->key[0])){
281
  $return->message = $response->errors->key[0];
282
  }else{
283
- $return->message = esc_html__("Check your entered licese key.","conversios");
284
  }
285
 
286
  }
280
  if(isset($response->errors->key[0])){
281
  $return->message = $response->errors->key[0];
282
  }else{
283
+ $return->message = esc_html__("Check your entered licese key.","enhanced-e-commerce-for-woocommerce-store");
284
  }
285
 
286
  }
includes/setup/account.php CHANGED
@@ -18,8 +18,8 @@ class TVC_Account {
18
  $message = ""; $class="";
19
  $googleDetail = [];
20
  $plan_id = 1;
21
- $plan_name = esc_html__("Free Plan","conversios");
22
- $plan_price = esc_html__("Free","conversios");
23
  $api_licence_key="";
24
  $paypal_subscr_id = "";
25
  $product_sync_max_limit ="100";
@@ -47,7 +47,7 @@ class TVC_Account {
47
  if(isset($googleDetail->max_limit)){
48
  $product_sync_max_limit = $googleDetail->max_limit;
49
  if(in_array($plan_id, array("7","8"))){
50
- $product_sync_max_limit = esc_html__("Unlimited","conversios");
51
  }
52
  }
53
  if(isset($googleDetail->subscription_activation_date) && !in_array($googleDetail->plan_id, array("1"))){
@@ -71,12 +71,12 @@ class TVC_Account {
71
  <div class="licence tvc-licence" >
72
  <div class="tvc_licence_key_wapper <?php if($plan_id != 1){?>tvc-hide<?php }?>">
73
  <?php if($plan_id == 1){?>
74
- <p><?php esc_html_e("You are using our free plugin, no licence needed ! Happy analyzing..!! :)","conversios"); ?></p>
75
- <p class="font-weight-bold"><?php esc_html_e("To unlock more features of google products, consider our","conversios"); ?> <a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Account+Summary+pro+version&utm_campaign=Upsell+at+Conversios'); ?>" target="_blank"><?php esc_html_e("pro version.","conversios"); ?></a></p>
76
  <?php }?>
77
  <form method="post" name="google-analytic" id="tvc-licence-active">
78
  <div class="input-group">
79
- <input type="text" id="licence_key" name="licence_key" class="form-control" placeholder="<?php esc_html_e("Already purchased? Enter licence key","conversios"); ?>" required="">
80
  <div class="input-group-append">
81
  <button type="submit" class="btn btn-primary" name="verify-licence-key"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/right-arrow.svg'); ?>" alt="active licence key"></button>
82
  </div>
@@ -85,7 +85,7 @@ class TVC_Account {
85
  </div>
86
  <div class="google-account-analytics tvc_licence_key_change_wapper <?php if($plan_id == 1){?>tvc-hide<?php }?>">
87
  <div class="acc-num">
88
- <label class="ga-title tvc_licence_key_title"><?php esc_html_e("Licence key:","conversios"); ?></label>
89
  <p class="ga-text tvc_licence_key"><?php echo esc_attr($api_licence_key); ?></p>
90
  <p class="ga-text text-right tvc_licence_key_change"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg'); ?>" alt="active licence key"></p>
91
  </div>
@@ -93,17 +93,17 @@ class TVC_Account {
93
  </div>
94
 
95
  <div class="tvc-table">
96
- <strong><?php esc_html_e("Account Summary","conversios"); ?></strong>
97
  <table>
98
  <tbody>
99
- <tr><th><?php esc_html_e("Plan name","conversios"); ?></th><td><?php echo esc_attr($plan_name); ?></td></tr>
100
- <tr><th><?php esc_html_e("Plan price","conversios"); ?></th><td><?php echo esc_attr($plan_price); ?></td></tr>
101
- <tr><th><?php esc_html_e("Product sync limit","conversios"); ?></th><td><?php echo esc_attr($product_sync_max_limit); ?></td></tr>
102
  <?php if($plan_id != 1){?>
103
- <tr><th><?php esc_html_e("Active licence key","conversios"); ?></th><td><?php echo esc_attr($api_licence_key); ?></td></tr>
104
- <tr><th><?php esc_html_e("PayPal subscription id","conversios"); ?></th><td><?php echo esc_attr($paypal_subscr_id); ?></td></tr>
105
- <tr><th><?php esc_html_e("Last bill date","conversios"); ?></th><td><?php echo esc_attr($activation_date); ?></td></tr>
106
- <tr><th><?php esc_html_e("Expected bill date","conversios"); ?></th><td><?php echo esc_attr($next_payment_date); ?></td></tr>
107
  <?php } ?>
108
  </tbody>
109
  </table>
18
  $message = ""; $class="";
19
  $googleDetail = [];
20
  $plan_id = 1;
21
+ $plan_name = esc_html__("Free Plan","enhanced-e-commerce-for-woocommerce-store");
22
+ $plan_price = esc_html__("Free","enhanced-e-commerce-for-woocommerce-store");
23
  $api_licence_key="";
24
  $paypal_subscr_id = "";
25
  $product_sync_max_limit ="100";
47
  if(isset($googleDetail->max_limit)){
48
  $product_sync_max_limit = $googleDetail->max_limit;
49
  if(in_array($plan_id, array("7","8"))){
50
+ $product_sync_max_limit = esc_html__("Unlimited","enhanced-e-commerce-for-woocommerce-store");
51
  }
52
  }
53
  if(isset($googleDetail->subscription_activation_date) && !in_array($googleDetail->plan_id, array("1"))){
71
  <div class="licence tvc-licence" >
72
  <div class="tvc_licence_key_wapper <?php if($plan_id != 1){?>tvc-hide<?php }?>">
73
  <?php if($plan_id == 1){?>
74
+ <p><?php esc_html_e("You are using our free plugin, no licence needed ! Happy analyzing..!! :)","enhanced-e-commerce-for-woocommerce-store"); ?></p>
75
+ <p class="font-weight-bold"><?php esc_html_e("To unlock more features of google products, consider our","enhanced-e-commerce-for-woocommerce-store"); ?> <a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site().'?utm_source=EE+Plugin+User+Interface&utm_medium=Account+Summary+pro+version&utm_campaign=Upsell+at+Conversios'); ?>" target="_blank"><?php esc_html_e("pro version.","enhanced-e-commerce-for-woocommerce-store"); ?></a></p>
76
  <?php }?>
77
  <form method="post" name="google-analytic" id="tvc-licence-active">
78
  <div class="input-group">
79
+ <input type="text" id="licence_key" name="licence_key" class="form-control" placeholder="<?php esc_html_e("Already purchased? Enter licence key","enhanced-e-commerce-for-woocommerce-store"); ?>" required="">
80
  <div class="input-group-append">
81
  <button type="submit" class="btn btn-primary" name="verify-licence-key"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/right-arrow.svg'); ?>" alt="active licence key"></button>
82
  </div>
85
  </div>
86
  <div class="google-account-analytics tvc_licence_key_change_wapper <?php if($plan_id == 1){?>tvc-hide<?php }?>">
87
  <div class="acc-num">
88
+ <label class="ga-title tvc_licence_key_title"><?php esc_html_e("Licence key:","enhanced-e-commerce-for-woocommerce-store"); ?></label>
89
  <p class="ga-text tvc_licence_key"><?php echo esc_attr($api_licence_key); ?></p>
90
  <p class="ga-text text-right tvc_licence_key_change"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg'); ?>" alt="active licence key"></p>
91
  </div>
93
  </div>
94
 
95
  <div class="tvc-table">
96
+ <strong><?php esc_html_e("Account Summary","enhanced-e-commerce-for-woocommerce-store"); ?></strong>
97
  <table>
98
  <tbody>
99
+ <tr><th><?php esc_html_e("Plan name","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($plan_name); ?></td></tr>
100
+ <tr><th><?php esc_html_e("Plan price","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($plan_price); ?></td></tr>
101
+ <tr><th><?php esc_html_e("Product sync limit","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($product_sync_max_limit); ?></td></tr>
102
  <?php if($plan_id != 1){?>
103
+ <tr><th><?php esc_html_e("Active licence key","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($api_licence_key); ?></td></tr>
104
+ <tr><th><?php esc_html_e("PayPal subscription id","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($paypal_subscr_id); ?></td></tr>
105
+ <tr><th><?php esc_html_e("Last bill date","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($activation_date); ?></td></tr>
106
+ <tr><th><?php esc_html_e("Expected bill date","enhanced-e-commerce-for-woocommerce-store"); ?></th><td><?php echo esc_attr($next_payment_date); ?></td></tr>
107
  <?php } ?>
108
  </tbody>
109
  </table>
includes/setup/add-campaign.php CHANGED
@@ -73,11 +73,11 @@ class AddCampaign {
73
  $campaign = $api_obj->createCampaign($campaign_name, $campaign_budget, $sales_country, $all_products, $category_id, $category_level);
74
  if(isset($campaign->errors) && !empty($campaign->errors)){
75
  $class = 'alert-message tvc-alert-error';
76
- $message = esc_html__((is_array($campaign->errors) && isset($campaign->errors[0])) ? $campaign->errors[0] : 'Error', 'conversios');
77
  }else{
78
  $class = 'alert-message tvc-alert-success';
79
  $campaign_neme = isset($campaign->data)?'with Resource name '.$campaign->data:"";
80
- $message = esc_html__('Smart Shopping Campaign Created Successfully '.$campaign_neme, 'conversios');
81
  }
82
  }else if (isset($_POST['update_campaign'])) {
83
  $campaign_name = isset($_POST['campaign_name'])?sanitize_text_field($_POST['campaign_name']):"";
@@ -94,11 +94,11 @@ class AddCampaign {
94
  $campaign = $api_obj->updateCampaign($campaign_name, $campaign_budget, $campaign_id, $budget_id, $sales_country, $all_products, $category_id, $category_level, $ad_group_id, $ad_group_resource_name);
95
  if (isset($campaign->errors) && !empty($campaign->errors)) {
96
  $class = 'alert-message tvc-alert-error';
97
- $message = esc_html__(isset($campaign->errors) ? $campaign->errors[0] : 'Error', 'conversios');
98
  } else if(isset($campaign->data)){
99
  $campaign_neme = isset($campaign->data)?'with Resource name '.$campaign->data:"";
100
  $class = 'alert-message tvc-alert-success';
101
- $message = esc_html__('Smart Shopping Campaign Updated Successfully ' . $campaign_neme, 'conversios');
102
  // $url = admin_url('admin.php?page=tvc-configuration-page');
103
  //wp_redirect($url);
104
  }
@@ -112,14 +112,14 @@ class AddCampaign {
112
  if (isset($campaign_details_res->errors) && !empty($campaign_details_res->errors)) {
113
  $error_code = array_keys($campaign_details_res->errors)[0];
114
  if($error_code == 404){
115
- $error_msg = esc_html__("Campaign details not found","conversios");
116
  }else{
117
  if (isset($campaign_details_res->error_data) && !empty($campaign_details_res->error_data)) {
118
  // $error_msg = array_values($campaign_details_res->error_data)[0]->errors[0];
119
  }
120
  }
121
  $class = 'alert-message tvc-alert-error';
122
- $message = esc_html__(isset($error_msg) ? $error_msg : 'There was some error fetching campaign details.', 'conversios');
123
  } else {
124
  $campaign_details = $campaign_details_res->data;
125
  if ($campaign_details['status'] == 200) {
@@ -140,73 +140,73 @@ class AddCampaign {
140
  <div class="col-md-6 col-lg-8 edit-section">
141
  <div class="edit-header-section">
142
  <script>
143
- document.write('<a href="<?php echo esc_url_raw($this->site_url."shopping_campaigns_page"); ?>" class="back-btn"><img src="'+"<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"+'" alt="back"/><span>'+"<?php esc_html_e("Campaigns","conversios");?>"+'</span></a>');
144
  </script>
145
  </div>
146
  <?php
147
  if (!isset($_GET['edit'])) { ?>
148
  <form method="post" id="create-form">
149
  <div class="form-group">
150
- <h2 class="lead"><?php esc_html_e("Create a Smart Shopping Campaign to promote your products","conversios"); ?></h2>
151
- <p style="text-align:left; font-size: 14px;"><?php esc_html_e("A Smart Shopping campaign shows your products to potential customers across Google, Google Search Partners, the Google Display Network, YouTube, and Gmail.","conversios"); ?></p>
152
  <p style="text-align:left">
153
- <a href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/7674739?hl=en"); ?>" target="_blank"><?php esc_html_e("Learn more about Smart Shopping Campaigns.","conversios"); ?></a>
154
  </p>
155
  </div>
156
  <div class="form-row" style="margin-bottom: 0">
157
  <div class="col-md-12 row">
158
- <label for="campaign-name" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Campaign name: ","conversios"); ?></label>
159
  <input type="text" class="form-group col-md-6" name="campaign_name" id="campaign-name" required>
160
  </div>
161
  <div class="col-md-12 row">
162
- <label for="campaign-budget" class="form-group col-md-4 mt-2 mb-0 text-left"><span class="font-weight-bold"><?php esc_html_e("Daily Campaign Budget","conversios"); ?> (<?php echo esc_attr($currency) ;?>):</span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("Only pay if someone clicks your ad. Recommended minimum budget of $5 per day.","conversios"); ?></p></label>
163
  <input type="number" class="form-group col-md-6" name="campaign_budget" id="campaign-budget" style="height: 35px;" required>
164
  </div>
165
  <div class="col-md-12 row">
166
- <label for="sales-country" class="form-group col-md-4 mt-2 text-left"><span class="font-weight-bold"><?php esc_html_e("Target Country:","conversios"); ?></span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("If you want to target multiple countries, then create multiple campaigns.","conversios"); ?></p></label><?php echo $this->country_dropdown(); ?>
167
  </div>
168
  <div class="col-md-12 row">
169
- <label for="campaign-products" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Products in campaign:","conversios"); ?> </label>
170
- <label class="mt-2"><input type="radio" id="campaign-products" name="all_products" value="1" checked /><?php esc_html_e("Include all Merchant Center products","conversios"); ?></label>
171
  </div>
172
  <div class="col-md-12 row" style="display:none;">
173
  <div class="col-md-4"></div>
174
- <label class=""><input type="radio" id="campaign-product-partition" value="0" name="all_products" /><?php esc_html_e("Select products using product partition filters","conversios"); ?></label>
175
  </div>
176
 
177
  <div class="col-md-12 row">
178
- <label class="form-group col-md-12 mt-2 mb-0 text-left font-weight-bold"><?php esc_html_e("Campaign duration:","conversios"); ?> </label>
179
- <p class="ml-3" style="text-align:left; font-size: 14px;"><?php esc_html_e("Your campaign will run until you pause it. You can pause your campaign at any time, however it can take up to 30 days for google to optimize your products and ads.","conversios"); ?></p>
180
  </div>
181
  </div>
182
  <div class="col-12">
183
- <button onclick="showLoader()" type="submit" class="btn btn-primary" id="create_campaign" name="create_campaign"><?php esc_html_e("Create Smart Shopping Campaign","conversios"); ?></button>
184
  </div>
185
  </form>
186
  <hr>
187
  <form method="post">
188
  <div class="text-left">
189
- <p style="font-size: 14px;"><?php esc_html_e("Please note that campaigns will be created with accounts configured in previous steps.","conversios"); ?></p>
190
- <p style="font-size: 14px;"><span><?php esc_html_e("Google Merchant Center :","conversios"); ?> <?php echo esc_attr($this->merchantId); ?></span>&nbsp;&nbsp;&nbsp;&nbsp;<span><?php esc_html_e("Google Ads Account Id :","conversios"); ?> <?php echo esc_attr($this->currentCustomerId); ?></span></p>
191
  </div>
192
  </form>
193
  <?php
194
  } else if (isset($_GET['edit']) && sanitize_text_field($_GET['edit']) != '') { ?>
195
  <form method="post">
196
  <div class="form-group">
197
- <h2 class="lead"><?php esc_html_e("Create/Update a Smart Shopping Campaign to promote your products","conversios"); ?></h2>
198
- <p style="text-align:left; font-size: 14px;"><?php esc_html_e("A Smart Shopping campaign shows your products to potential customers across Google, Google Search Partners, the Google Display Network, YouTube, and Gmail.","conversios"); ?></p>
199
  <p style="text-align:left">
200
- <a href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/7674739?hl=en"); ?>" target="_blank"><?php esc_html_e("Learn more about Smart Shopping Campaigns.","conversios"); ?></a>
201
  </p>
202
  </div>
203
  <div class="form-row" style="margin-bottom: 0">
204
  <div class="col-md-12 row">
205
- <label for="campaign-name" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Campaign name:","conversios"); ?> </label>
206
  <input type="text" class="form-group col-md-6" name="campaign_name" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->compaignName):""; ?>" id="campaign-name" required>
207
  </div>
208
  <div class="col-md-12 row">
209
- <label for="campaign-budget" class="form-group col-md-4 mt-2 mb-0 text-left"><span class="font-weight-bold"><?php esc_html_e("Daily Campaign Budget","conversios"); ?> (<?php echo esc_attr($currency); ?>):</span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("Only pay if someone clicks your ad. Recommended minimum budget of","conversios"); ?> <?php echo esc_attr($currency); ?>5 per day.</p></label>
210
  <input type="number" class="form-group col-md-6" name="campaign_budget" id="campaign-budget" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->dailyBudget):""; ?>" style="height: 35px;" required>
211
  </div>
212
  <input type="hidden" name="campaign_id" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->compaignId):""; ?>" />
@@ -214,11 +214,11 @@ class AddCampaign {
214
  <input type="hidden" name="ad_group_id" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->adGroupId):""; ?>" />
215
  <input type="hidden" name="ad_group_resource_name" value="<?php echo(isset($campaign_details) && $campaign_details != '')? esc_attr($campaign_details->adGroupResourceName):""; ?>" />
216
  <div class="col-md-12 row">
217
- <label for="sales-country" class="form-group col-md-4 mt-2 text-left"><span class="font-weight-bold"><?php esc_html_e("Target Country:","conversios"); ?></span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("If you want to target multiple countries, then create multiple campaigns.","conversios"); ?></p></label>
218
  <?php echo $this->country_dropdown($defaultCountry, true); ?>
219
  </div>
220
  <div class="col-md-12 row">
221
- <label for="campaign-products" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Products in campaign:","conversios"); ?> </label>
222
  <label class="mt-2">
223
  <?php
224
  if(isset($campaign_details) && $campaign_details->category_level > 0 && $campaign_details->category_id > 0){?>
@@ -227,7 +227,7 @@ class AddCampaign {
227
  }else{ ?>
228
  <input type="radio" id="campaign-products" name="all_products" value="1" checked />
229
  <?php
230
- } ?> <?php esc_html_e("Include all Merchant Center products","conversios"); ?></label>
231
  </div>
232
  <div class="col-md-12 row" style="display: none;">
233
  <div class="col-md-4"></div>
@@ -240,22 +240,22 @@ class AddCampaign {
240
  <input type="radio" id="campaign-product-partition" value="0" name="all_products" />
241
  <?php
242
  } ?>
243
- <?php esc_html_e("Select products using product partition filters","conversios"); ?></label>
244
  </div>
245
  <div class="col-md-12 row">
246
- <label class="form-group col-md-12 mt-2 mb-0 text-left font-weight-bold"><?php esc_html_e("Campaign duration:","conversios"); ?> </label>
247
- <p class="ml-3" style="text-align:left; font-size: 14px;"><?php esc_html_e("Your campaign will run until you pause it. You can pause your campaign at any time, however it can take up to 30 days for google to optimize your products and ads.","conversios"); ?></p>
248
  </div>
249
  </div>
250
  <div class="col-12">
251
- <button onclick="showLoader()" type="submit" class="btn btn-primary btn-success" id="update_campaign" name="update_campaign"><?php esc_html_e("Update Smart Shopping Campaign","conversios"); ?></button>
252
  </div>
253
  </form>
254
  <hr>
255
  <form method="post">
256
  <div class="text-left">
257
- <p style="font-size: 14px;"><?php esc_html_e("Please note that campaigns will be created with accounts configured in previous steps.","conversios"); ?></p>
258
- <p style="font-size: 14px;"><span><?php esc_html_e("Google Merchant Center :","conversios"); ?> <?php echo esc_attr($this->merchantId); ?></span>&nbsp;&nbsp;&nbsp;&nbsp;<span><?php esc_html_e("Google Ads Account Id :","conversios"); ?> <?php echo esc_attr($this->currentCustomerId); ?></span></p>
259
  </div>
260
  </form>
261
  <?php } ?>
@@ -328,7 +328,7 @@ class AddCampaign {
328
  }
329
  public function success_message($customerId) {
330
  $class = 'notice notice-success';
331
- $message = esc_html__($customerId . ' Set as default Ads Account ID.', 'conversios');
332
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
333
  }
334
 
73
  $campaign = $api_obj->createCampaign($campaign_name, $campaign_budget, $sales_country, $all_products, $category_id, $category_level);
74
  if(isset($campaign->errors) && !empty($campaign->errors)){
75
  $class = 'alert-message tvc-alert-error';
76
+ $message = esc_html__((is_array($campaign->errors) && isset($campaign->errors[0])) ? $campaign->errors[0] : 'Error', 'enhanced-e-commerce-for-woocommerce-store');
77
  }else{
78
  $class = 'alert-message tvc-alert-success';
79
  $campaign_neme = isset($campaign->data)?'with Resource name '.$campaign->data:"";
80
+ $message = esc_html__('Smart Shopping Campaign Created Successfully '.$campaign_neme, 'enhanced-e-commerce-for-woocommerce-store');
81
  }
82
  }else if (isset($_POST['update_campaign'])) {
83
  $campaign_name = isset($_POST['campaign_name'])?sanitize_text_field($_POST['campaign_name']):"";
94
  $campaign = $api_obj->updateCampaign($campaign_name, $campaign_budget, $campaign_id, $budget_id, $sales_country, $all_products, $category_id, $category_level, $ad_group_id, $ad_group_resource_name);
95
  if (isset($campaign->errors) && !empty($campaign->errors)) {
96
  $class = 'alert-message tvc-alert-error';
97
+ $message = esc_html__(isset($campaign->errors) ? $campaign->errors[0] : 'Error', 'enhanced-e-commerce-for-woocommerce-store');
98
  } else if(isset($campaign->data)){
99
  $campaign_neme = isset($campaign->data)?'with Resource name '.$campaign->data:"";
100
  $class = 'alert-message tvc-alert-success';
101
+ $message = esc_html__('Smart Shopping Campaign Updated Successfully ' . $campaign_neme, 'enhanced-e-commerce-for-woocommerce-store');
102
  // $url = admin_url('admin.php?page=tvc-configuration-page');
103
  //wp_redirect($url);
104
  }
112
  if (isset($campaign_details_res->errors) && !empty($campaign_details_res->errors)) {
113
  $error_code = array_keys($campaign_details_res->errors)[0];
114
  if($error_code == 404){
115
+ $error_msg = esc_html__("Campaign details not found","enhanced-e-commerce-for-woocommerce-store");
116
  }else{
117
  if (isset($campaign_details_res->error_data) && !empty($campaign_details_res->error_data)) {
118
  // $error_msg = array_values($campaign_details_res->error_data)[0]->errors[0];
119
  }
120
  }
121
  $class = 'alert-message tvc-alert-error';
122
+ $message = esc_html__(isset($error_msg) ? $error_msg : 'There was some error fetching campaign details.', 'enhanced-e-commerce-for-woocommerce-store');
123
  } else {
124
  $campaign_details = $campaign_details_res->data;
125
  if ($campaign_details['status'] == 200) {
140
  <div class="col-md-6 col-lg-8 edit-section">
141
  <div class="edit-header-section">
142
  <script>
143
+ document.write('<a href="<?php echo esc_url_raw($this->site_url."shopping_campaigns_page"); ?>" class="back-btn"><img src="'+"<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"+'" alt="back"/><span>'+"<?php esc_html_e("Campaigns","enhanced-e-commerce-for-woocommerce-store");?>"+'</span></a>');
144
  </script>
145
  </div>
146
  <?php
147
  if (!isset($_GET['edit'])) { ?>
148
  <form method="post" id="create-form">
149
  <div class="form-group">
150
+ <h2 class="lead"><?php esc_html_e("Create a Smart Shopping Campaign to promote your products","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
151
+ <p style="text-align:left; font-size: 14px;"><?php esc_html_e("A Smart Shopping campaign shows your products to potential customers across Google, Google Search Partners, the Google Display Network, YouTube, and Gmail.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
152
  <p style="text-align:left">
153
+ <a href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/7674739?hl=en"); ?>" target="_blank"><?php esc_html_e("Learn more about Smart Shopping Campaigns.","enhanced-e-commerce-for-woocommerce-store"); ?></a>
154
  </p>
155
  </div>
156
  <div class="form-row" style="margin-bottom: 0">
157
  <div class="col-md-12 row">
158
+ <label for="campaign-name" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Campaign name: ","enhanced-e-commerce-for-woocommerce-store"); ?></label>
159
  <input type="text" class="form-group col-md-6" name="campaign_name" id="campaign-name" required>
160
  </div>
161
  <div class="col-md-12 row">
162
+ <label for="campaign-budget" class="form-group col-md-4 mt-2 mb-0 text-left"><span class="font-weight-bold"><?php esc_html_e("Daily Campaign Budget","enhanced-e-commerce-for-woocommerce-store"); ?> (<?php echo esc_attr($currency) ;?>):</span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("Only pay if someone clicks your ad. Recommended minimum budget of $5 per day.","enhanced-e-commerce-for-woocommerce-store"); ?></p></label>
163
  <input type="number" class="form-group col-md-6" name="campaign_budget" id="campaign-budget" style="height: 35px;" required>
164
  </div>
165
  <div class="col-md-12 row">
166
+ <label for="sales-country" class="form-group col-md-4 mt-2 text-left"><span class="font-weight-bold"><?php esc_html_e("Target Country:","enhanced-e-commerce-for-woocommerce-store"); ?></span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("If you want to target multiple countries, then create multiple campaigns.","enhanced-e-commerce-for-woocommerce-store"); ?></p></label><?php echo $this->country_dropdown(); ?>
167
  </div>
168
  <div class="col-md-12 row">
169
+ <label for="campaign-products" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Products in campaign:","enhanced-e-commerce-for-woocommerce-store"); ?> </label>
170
+ <label class="mt-2"><input type="radio" id="campaign-products" name="all_products" value="1" checked /><?php esc_html_e("Include all Merchant Center products","enhanced-e-commerce-for-woocommerce-store"); ?></label>
171
  </div>
172
  <div class="col-md-12 row" style="display:none;">
173
  <div class="col-md-4"></div>
174
+ <label class=""><input type="radio" id="campaign-product-partition" value="0" name="all_products" /><?php esc_html_e("Select products using product partition filters","enhanced-e-commerce-for-woocommerce-store"); ?></label>
175
  </div>
176
 
177
  <div class="col-md-12 row">
178
+ <label class="form-group col-md-12 mt-2 mb-0 text-left font-weight-bold"><?php esc_html_e("Campaign duration:","enhanced-e-commerce-for-woocommerce-store"); ?> </label>
179
+ <p class="ml-3" style="text-align:left; font-size: 14px;"><?php esc_html_e("Your campaign will run until you pause it. You can pause your campaign at any time, however it can take up to 30 days for google to optimize your products and ads.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
180
  </div>
181
  </div>
182
  <div class="col-12">
183
+ <button onclick="showLoader()" type="submit" class="btn btn-primary" id="create_campaign" name="create_campaign"><?php esc_html_e("Create Smart Shopping Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></button>
184
  </div>
185
  </form>
186
  <hr>
187
  <form method="post">
188
  <div class="text-left">
189
+ <p style="font-size: 14px;"><?php esc_html_e("Please note that campaigns will be created with accounts configured in previous steps.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
190
+ <p style="font-size: 14px;"><span><?php esc_html_e("Google Merchant Center :","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr($this->merchantId); ?></span>&nbsp;&nbsp;&nbsp;&nbsp;<span><?php esc_html_e("Google Ads Account Id :","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr($this->currentCustomerId); ?></span></p>
191
  </div>
192
  </form>
193
  <?php
194
  } else if (isset($_GET['edit']) && sanitize_text_field($_GET['edit']) != '') { ?>
195
  <form method="post">
196
  <div class="form-group">
197
+ <h2 class="lead"><?php esc_html_e("Create/Update a Smart Shopping Campaign to promote your products","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
198
+ <p style="text-align:left; font-size: 14px;"><?php esc_html_e("A Smart Shopping campaign shows your products to potential customers across Google, Google Search Partners, the Google Display Network, YouTube, and Gmail.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
199
  <p style="text-align:left">
200
+ <a href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/7674739?hl=en"); ?>" target="_blank"><?php esc_html_e("Learn more about Smart Shopping Campaigns.","enhanced-e-commerce-for-woocommerce-store"); ?></a>
201
  </p>
202
  </div>
203
  <div class="form-row" style="margin-bottom: 0">
204
  <div class="col-md-12 row">
205
+ <label for="campaign-name" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Campaign name:","enhanced-e-commerce-for-woocommerce-store"); ?> </label>
206
  <input type="text" class="form-group col-md-6" name="campaign_name" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->compaignName):""; ?>" id="campaign-name" required>
207
  </div>
208
  <div class="col-md-12 row">
209
+ <label for="campaign-budget" class="form-group col-md-4 mt-2 mb-0 text-left"><span class="font-weight-bold"><?php esc_html_e("Daily Campaign Budget","enhanced-e-commerce-for-woocommerce-store"); ?> (<?php echo esc_attr($currency); ?>):</span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("Only pay if someone clicks your ad. Recommended minimum budget of","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr($currency); ?>5 per day.</p></label>
210
  <input type="number" class="form-group col-md-6" name="campaign_budget" id="campaign-budget" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->dailyBudget):""; ?>" style="height: 35px;" required>
211
  </div>
212
  <input type="hidden" name="campaign_id" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->compaignId):""; ?>" />
214
  <input type="hidden" name="ad_group_id" value="<?php echo (isset($campaign_details) && $campaign_details != '')?esc_attr($campaign_details->adGroupId):""; ?>" />
215
  <input type="hidden" name="ad_group_resource_name" value="<?php echo(isset($campaign_details) && $campaign_details != '')? esc_attr($campaign_details->adGroupResourceName):""; ?>" />
216
  <div class="col-md-12 row">
217
+ <label for="sales-country" class="form-group col-md-4 mt-2 text-left"><span class="font-weight-bold"><?php esc_html_e("Target Country:","enhanced-e-commerce-for-woocommerce-store"); ?></span> <p style="text-align:left;font-size: 11px;"><?php esc_html_e("If you want to target multiple countries, then create multiple campaigns.","enhanced-e-commerce-for-woocommerce-store"); ?></p></label>
218
  <?php echo $this->country_dropdown($defaultCountry, true); ?>
219
  </div>
220
  <div class="col-md-12 row">
221
+ <label for="campaign-products" class="form-group col-md-4 mt-2 text-left font-weight-bold"><?php esc_html_e("Products in campaign:","enhanced-e-commerce-for-woocommerce-store"); ?> </label>
222
  <label class="mt-2">
223
  <?php
224
  if(isset($campaign_details) && $campaign_details->category_level > 0 && $campaign_details->category_id > 0){?>
227
  }else{ ?>
228
  <input type="radio" id="campaign-products" name="all_products" value="1" checked />
229
  <?php
230
+ } ?> <?php esc_html_e("Include all Merchant Center products","enhanced-e-commerce-for-woocommerce-store"); ?></label>
231
  </div>
232
  <div class="col-md-12 row" style="display: none;">
233
  <div class="col-md-4"></div>
240
  <input type="radio" id="campaign-product-partition" value="0" name="all_products" />
241
  <?php
242
  } ?>
243
+ <?php esc_html_e("Select products using product partition filters","enhanced-e-commerce-for-woocommerce-store"); ?></label>
244
  </div>
245
  <div class="col-md-12 row">
246
+ <label class="form-group col-md-12 mt-2 mb-0 text-left font-weight-bold"><?php esc_html_e("Campaign duration:","enhanced-e-commerce-for-woocommerce-store"); ?> </label>
247
+ <p class="ml-3" style="text-align:left; font-size: 14px;"><?php esc_html_e("Your campaign will run until you pause it. You can pause your campaign at any time, however it can take up to 30 days for google to optimize your products and ads.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
248
  </div>
249
  </div>
250
  <div class="col-12">
251
+ <button onclick="showLoader()" type="submit" class="btn btn-primary btn-success" id="update_campaign" name="update_campaign"><?php esc_html_e("Update Smart Shopping Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></button>
252
  </div>
253
  </form>
254
  <hr>
255
  <form method="post">
256
  <div class="text-left">
257
+ <p style="font-size: 14px;"><?php esc_html_e("Please note that campaigns will be created with accounts configured in previous steps.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
258
+ <p style="font-size: 14px;"><span><?php esc_html_e("Google Merchant Center :","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr($this->merchantId); ?></span>&nbsp;&nbsp;&nbsp;&nbsp;<span><?php esc_html_e("Google Ads Account Id :","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr($this->currentCustomerId); ?></span></p>
259
  </div>
260
  </form>
261
  <?php } ?>
328
  }
329
  public function success_message($customerId) {
330
  $class = 'notice notice-success';
331
+ $message = esc_html__($customerId . ' Set as default Ads Account ID.', 'enhanced-e-commerce-for-woocommerce-store');
332
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
333
  }
334
 
includes/setup/class-conversios-dashboard.php CHANGED
@@ -44,7 +44,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
44
  $this->TVC_Admin_Helper->update_subscription_details_api_to_db();
45
  }
46
  } else if(isset($_GET['subscription_id']) && sanitize_text_field($_GET['subscription_id'])){
47
- $this->notice = esc_html__("You tried signing in with different email. Please try again by signing it with the email id that you used to set up the plugin earlier.","conversios");
48
  }
49
  $this->is_refresh_token_expire = $this->TVC_Admin_Helper->is_refresh_token_expire();
50
  $this->subscription_data = $this->TVC_Admin_Helper->get_user_subscription_data();
@@ -350,8 +350,8 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
350
  <?php } ?>
351
  </div>
352
  <div class="dashtp-left">
353
- <button class="dashtpleft-btn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/download-icon.png'); ?>" alt="" /><?php esc_html_e("Download PDF","conversios"); ?></button>
354
- <button class="dashtpleft-btn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('schedule_email')); ?>"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/clock-icon.png'); ?>" alt="" /><?php esc_html_e("Schedule Email","conversios"); ?></button>
355
  </div>
356
  <div class="dashtp-right">
357
  <?php /*
@@ -383,164 +383,164 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
383
  </div>
384
  </div>
385
  <?php /*if($this->ga_traking_type == "GA4"){?>
386
- <div class="temp_note"><p><?php esc_html_e("The reporting dashboard feature is only available for Google Analytics 3 properties currently. We are working on Google Analytics 4 dashboard, we will update you once it is live.","conversios"); ?></p></div>
387
  <?php }*/ ?>
388
  <!--- dashboard summary section start -->
389
  <div class="wht-rnd-shdwbx mt24 dashsmry-wrap">
390
  <div class="dashsmry-item">
391
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
392
  <div class="dashsmrybx" id="s1_transactionsPerSession">
393
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Conversion Rate","conversios"); ?></div>
394
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
395
  <div class="updownsmry dash-smry-compare-val">
396
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-up.png'); ?>" alt="" />
397
  %
398
  </div>
399
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
400
  </div>
401
  <div class="dashsmrybx" id="s1_transactionRevenue">
402
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Revenue","conversios"); ?></div>
403
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
404
  <div class="updownsmry dash-smry-compare-val">
405
  %
406
  </div>
407
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
408
  </div>
409
  <div class="dashsmrybx mblsmry3bx" id="s1_transactions">
410
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Transactions","conversios"); ?></div>
411
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
412
  <div class="updownsmry dash-smry-compare-val">
413
  %
414
  </div>
415
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
416
  </div>
417
  <div class="dashsmrybx mblsmry3bx" id="s1_revenuePerTransaction">
418
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Avg. Order Value","conversios"); ?></div>
419
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
420
  <div class="updownsmry dash-smry-compare-val">
421
  %
422
  </div>
423
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
424
  </div>
425
  <div class="dashsmrybx mblsmry3bx flwdthmblbx" id="s1_productAddsToCart">
426
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Added to Cart","conversios"); ?></div>
427
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
428
  <div class="updownsmry dash-smry-compare-val">
429
  %
430
  </div>
431
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
432
  </div>
433
  </div>
434
  <div class="dashsmry-item">
435
  <div class="dashsmrybx" id="s1_productRemovesFromCart">
436
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Removed from Cart","conversios"); ?></div>
437
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
438
  <div class="updownsmry dash-smry-compare-val">
439
  %
440
  </div>
441
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
442
  </div>
443
  <div class="dashsmrybx" id="s1_sessions">
444
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Sessions","conversios"); ?></div>
445
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
446
  <div class="updownsmry dash-smry-compare-val">
447
  %
448
  </div>
449
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
450
  </div>
451
  <div class="dashsmrybx" id="s1_users">
452
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Users","conversios"); ?></div>
453
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
454
  <div class="updownsmry dash-smry-compare-val">
455
  %
456
  </div>
457
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
458
  </div>
459
  <div class="dashsmrybx" id="s1_newUsers">
460
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("New Users","conversios"); ?></div>
461
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
462
  <div class="updownsmry dash-smry-compare-val">
463
  %
464
  </div>
465
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
466
  </div>
467
  <div class="dashsmrybx" id="s1_productDetailViews">
468
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Product Views","conversios"); ?></div>
469
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
470
  <div class="updownsmry dash-smry-compare-val">
471
  %
472
  </div>
473
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
474
  </div>
475
 
476
  <?php }else { ?>
477
 
478
  <div class="dashsmrybx" id="s1_totalRevenue">
479
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Revenue","conversios"); ?></div>
480
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
481
  <div class="updownsmry dash-smry-compare-val">
482
  %
483
  </div>
484
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
485
  </div>
486
  <div class="dashsmrybx mblsmry3bx" id="s1_transactions">
487
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Transactions","conversios"); ?></div>
488
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
489
  <div class="updownsmry dash-smry-compare-val">
490
  %
491
  </div>
492
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
493
  </div>
494
  <div class="dashsmrybx mblsmry3bx" id="s1_averagePurchaseRevenue">
495
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Avg. Order Value","conversios"); ?></div>
496
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
497
  <div class="updownsmry dash-smry-compare-val">
498
  %
499
  </div>
500
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
501
  </div>
502
  <div class="dashsmrybx mblsmry3bx flwdthmblbx" id="s1_addToCarts">
503
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Added to Cart","conversios"); ?></div>
504
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
505
  <div class="updownsmry dash-smry-compare-val">
506
  %
507
  </div>
508
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
509
  </div>
510
  </div>
511
  <div class="dashsmry-item">
512
 
513
  <div class="dashsmrybx" id="s1_sessions">
514
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Sessions","conversios"); ?></div>
515
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
516
  <div class="updownsmry dash-smry-compare-val">
517
  %
518
  </div>
519
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
520
  </div>
521
  <div class="dashsmrybx" id="s1_totalUsers">
522
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Users","conversios"); ?></div>
523
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
524
  <div class="updownsmry dash-smry-compare-val">
525
  %
526
  </div>
527
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
528
  </div>
529
  <div class="dashsmrybx" id="s1_newUsers">
530
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("New Users","conversios"); ?></div>
531
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
532
  <div class="updownsmry dash-smry-compare-val">
533
  %
534
  </div>
535
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
536
  </div>
537
  <div class="dashsmrybx" id="s1_itemViews">
538
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Product Views","conversios"); ?></div>
539
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
540
  <div class="updownsmry dash-smry-compare-val">
541
  %
542
  </div>
543
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
544
  </div>
545
  <?php
546
  } ?>
@@ -549,12 +549,12 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
549
  <?php /*
550
  <div class="dashsmry-item">
551
  <div class="dashsmrybx" id="s1_transactionShipping">
552
- <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Shipping","conversios"); ?></div>
553
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
554
  <div class="updownsmry dash-smry-compare-val">
555
  %
556
  </div>
557
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
558
  </div>
559
  <div class="dashsmrybx" id="s1_transactionTax">
560
  <div class="dshsmrycattxt dash-smry-title">TAX</div>
@@ -562,7 +562,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
562
  <div class="updownsmry dash-smry-compare-val">
563
  %
564
  </div>
565
- <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","conversios"); ?></div>
566
  </div>
567
  </div> */?>
568
  </div>
@@ -575,7 +575,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
575
  <div class="col50">
576
  <div class="chartbx ecomfunnchrtbx ecom-funn-chrt-bx">
577
  <div class="chartcntnbx">
578
- <h5><?php esc_html_e("Ecommerce Conversion Funnel","conversios"); ?></h5>
579
  <div class="chartarea">
580
  <canvas id="ecomfunchart" width="400" height="300"></canvas>
581
  </div>
@@ -583,23 +583,23 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
583
  <div class="ecomchartinfo">
584
  <div class="ecomchrtinfoflex">
585
  <div class="ecomchartinfoitem">
586
- <div class="ecomchartinfolabel"><?php esc_html_e("Sessions","conversios"); ?></div>
587
  <div class="chartpercarrow conversion_s1"></div>
588
  </div>
589
  <div class="ecomchartinfoitem">
590
- <div class="ecomchartinfolabel"><?php esc_html_e("Product View","conversios"); ?></div>
591
  <div class="chartpercarrow conversion_s2"></div>
592
  </div>
593
  <div class="ecomchartinfoitem">
594
- <div class="ecomchartinfolabel"><?php esc_html_e("Add to Cart","conversios"); ?></div>
595
  <div class="chartpercarrow conversion_s3"></div>
596
  </div>
597
  <div class="ecomchartinfoitem">
598
- <div class="ecomchartinfolabel"><?php esc_html_e("Checkouts","conversios"); ?></div>
599
  <div class="chartpercarrow conversion_s4"></div>
600
  </div>
601
  <div class="ecomchartinfoitem">
602
- <div class="ecomchartinfolabel"><?php esc_html_e("Order Confirmation","conversios"); ?></div>
603
  </div>
604
  </div>
605
  </div>
@@ -610,7 +610,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
610
  <div class="col50">
611
  <div class="chartbx ecomfunnchrtbx">
612
  <div class="chartcntnbx prochrtftr">
613
- <h5><?php esc_html_e("Ecommerce Conversion Funnel","conversios"); ?></h5>
614
  <div class="chartarea">
615
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/ecom-chart.jpg'); ?>" alt="" />
616
  </div>
@@ -621,9 +621,9 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
621
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
622
  Locked
623
  </div>
624
- <h5 class="prochrtitle"><?php esc_html_e("Conversion Funnel","conversios"); ?></h5>
625
- <p><?php esc_html_e("This Report will help you visualize drop offs at each stage of your shopping funnel starting from home page to product page, cart page to checkout page and to final order confirmation page. Find out the major drop offs at each stage and take informed data driven decisions to increase the conversions and better marketing ROI.","conversios"); ?></p>
626
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
627
  </div>
628
  </div>
629
  </div>
@@ -634,7 +634,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
634
  <div class="col50">
635
  <div class="chartbx ecomfunnchrtbx ecom-checkout-funn-chrt-bx">
636
  <div class="chartcntnbx">
637
- <h5><?php esc_html_e("Ecommerce Checkout Funnel","conversios"); ?></h5>
638
  <div class="chartarea">
639
  <canvas id="ecomcheckoutfunchart" width="400" height="300"></canvas>
640
  </div>
@@ -642,19 +642,19 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
642
  <div class="ecomchartinfo ecomcheckoutfunchartinfo">
643
  <div class="ecomchrtinfoflex">
644
  <div class="ecomchartinfoitem">
645
- <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 1","conversios"); ?></div>
646
  <div class="chartpercarrow checkoutfunn_s1"></div>
647
  </div>
648
  <div class="ecomchartinfoitem">
649
- <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 2","conversios"); ?></div>
650
  <div class="chartpercarrow checkoutfunn_s2"></div>
651
  </div>
652
  <div class="ecomchartinfoitem">
653
- <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 3","conversios"); ?></div>
654
  <div class="chartpercarrow checkoutfunn_s3"></div>
655
  </div>
656
  <div class="ecomchartinfoitem">
657
- <div class="ecomchartinfolabel"><?php esc_html_e("Purchase","conversios"); ?></div>
658
  </div>
659
 
660
  </div>
@@ -667,7 +667,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
667
  <div class="col50">
668
  <div class="chartbx ecomfunnchrtbx">
669
  <div class="chartcntnbx prochrtftr">
670
- <h5><?php esc_html_e("Checkout Funnel","conversios"); ?></h5>
671
  <div class="chartarea">
672
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/ecom-chart.jpg'); ?>" alt="" />
673
  </div>
@@ -678,9 +678,9 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
678
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
679
  Locked
680
  </div>
681
- <h5 class="prochrtitle"><?php esc_html_e("Checkout Funnel","conversios"); ?></h5>
682
- <p><?php esc_html_e("This Report will help you in finding out the performance of your checkout page and leakages at each checkout step. Identify the small areas of improvements and fix them for smooth customer experience on your ecommerce site.","conversios"); ?></p>
683
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
684
  </div>
685
  </div>
686
  </div>
@@ -696,26 +696,26 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
696
  <div class="mt24 whiteroundedbx dshreport-sec">
697
  <div class="row dsh-reprttop">
698
  <div class="dshrprttp-left">
699
- <h4><?php esc_html_e("Product Performance Report","conversios"); ?></h4>
700
- <a href="#" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
701
  </div>
702
  </div>
703
  <div class="dashtablewrp product_performance_report" id="product_performance_report">
704
  <table class="dshreporttble mbl-table" >
705
  <thead>
706
  <tr>
707
- <th class="prdnm-cell"><?php esc_html_e("Product Name","conversios"); ?></th>
708
- <th><?php esc_html_e("Views","conversios"); ?></th>
709
- <th><?php esc_html_e("Added to Cart","conversios"); ?></th>
710
- <th><?php esc_html_e("Orders","conversios"); ?></th>
711
- <th><?php esc_html_e("Qty","conversios"); ?></th>
712
- <th><?php esc_html_e("Revenue","conversios"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
713
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
714
- <th><?php esc_html_e("Avg Price","conversios"); ?> (<?php echo esc_attr($this->ga_currency_symbols); ?>)</th>
715
- <th><?php esc_html_e("Refund Amount","conversios"); ?> (<?php echo esc_attr($this->ga_currency_symbols); ?>)</th>
716
  <?php } ?>
717
- <th><?php esc_html_e("Cart to details (%)","conversios"); ?></th>
718
- <th><?php esc_html_e("Buy to details (%)","conversios"); ?></th>
719
  </tr>
720
  </thead>
721
  <tbody>
@@ -729,7 +729,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
729
  <div class="col">
730
  <div class="chartbx ecomfunnchrtbx">
731
  <div class="chartcntnbx prochrtftr">
732
- <h5><?php esc_html_e("Product Performance Report","conversios"); ?></h5>
733
  <div class="chartarea">
734
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
735
  </div>
@@ -738,11 +738,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
738
  <div class="prochrtcntn">
739
  <div class="prochrttop">
740
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
741
- <?php esc_html_e("Locked","conversios"); ?>
742
  </div>
743
- <h5 class="prochrtitle"><?php esc_html_e("Product Performance Report","conversios"); ?></h5>
744
- <p><?php esc_html_e("This report will help you understand how products in your store are performing and based on it you can take informed merchandising decision to further increase your revenue.","conversios"); ?></p>
745
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
746
  </div>
747
  </div>
748
  </div>
@@ -757,28 +757,28 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
757
  <div class="mt24 whiteroundedbx dshreport-sec">
758
  <div class="row dsh-reprttop">
759
  <div class="dshrprttp-left">
760
- <h4><?php esc_html_e("Source/Medium Performance Report","conversios"); ?></h4>
761
- <a href="" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
762
  </div>
763
  </div>
764
  <div class="dashtablewrp medium_performance_report" id="medium_performance_report">
765
  <table class="dshreporttble mbl-table" >
766
  <thead>
767
  <tr>
768
- <th class="prdnm-cell"><?php esc_html_e("Source/Medium","conversios"); ?></th>
769
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
770
- <th><?php esc_html_e("Conversion (%)","conversios"); ?></th>
771
  <?php } ?>
772
- <th><?php esc_html_e("Revenue","conversios"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
773
- <th><?php esc_html_e("Total transactions","conversios"); ?></th>
774
- <th><?php esc_html_e("Avg Order value","conversios"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
775
- <th><?php esc_html_e("Added to carts","conversios"); ?></th>
776
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
777
- <th><?php esc_html_e("removed from cart","conversios"); ?></th>
778
  <?php } ?>
779
- <th><?php esc_html_e("Product views","conversios"); ?></th>
780
- <th><?php esc_html_e("Users","conversios"); ?></th>
781
- <th><?php esc_html_e("Sessions","conversios"); ?></th>
782
  </tr>
783
  </thead>
784
  <tbody>
@@ -793,7 +793,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
793
  <div class="col">
794
  <div class="chartbx ecomfunnchrtbx">
795
  <div class="chartcntnbx prochrtftr">
796
- <h5><?php esc_html_e("Source/Medium Performance Report","conversios"); ?></h5>
797
  <div class="chartarea">
798
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
799
  </div>
@@ -802,11 +802,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
802
  <div class="prochrtcntn">
803
  <div class="prochrttop">
804
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
805
- <?php esc_html_e("Locked","conversios"); ?>
806
  </div>
807
- <h5 class="prochrtitle"><?php esc_html_e("Source/Medium Performance Report","conversios"); ?></h5>
808
- <p><?php esc_html_e("Find out the performance of each of your traffic channels. You can access which campaigns or channels are attributing sales, add to carts, product views etc. You can also see your shopping and checkout behavior funnels for each of the channels and take informed decisions of managing your ad spends for each channel.","conversios"); ?></p>
809
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
810
  </div>
811
  </div>
812
  </div>
@@ -820,12 +820,12 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
820
  <!--- Shopping and Google Ads Performance section start -->
821
  <?php if($this->plan_id != 1){?>
822
  <div class="mt24 whiteroundedbx ggladsperfom-sec">
823
- <h4><?php esc_html_e("Google Ads Account Performance","conversios"); ?></h4>
824
  <div class="row">
825
  <div class="col50">
826
  <div class="chartbx ggladschrtbx daily-clicks-bx">
827
  <div class="chartcntnbx">
828
- <h5><?php esc_html_e("Clicks","conversios"); ?></h5>
829
  <div class="chartarea">
830
  <canvas id="dailyClicks" width="400" height="300" class="chartcntainer"></canvas>
831
  </div>
@@ -835,7 +835,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
835
  <div class="col50">
836
  <div class="chartbx ggladschrtbx daily-cost-bx">
837
  <div class="chartcntnbx">
838
- <h5><?php esc_html_e("Cost","conversios"); ?></h5>
839
  <div class="chartarea">
840
  <canvas id="dailyCost" width="400" height="300" class="chartcntainer"></canvas>
841
  </div>
@@ -846,7 +846,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
846
  <div class="col50">
847
  <div class="chartbx ggladschrtbx daily-conversions-bx">
848
  <div class="chartcntnbx">
849
- <h5><?php esc_html_e("Conversions","conversios"); ?></h5>
850
  <div class="chartarea">
851
  <canvas id="dailyConversions" width="400" height="300" class="chartcntainer"></canvas>
852
  </div>
@@ -856,7 +856,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
856
  <div class="col50">
857
  <div class="chartbx ggladschrtbx daily-sales-bx">
858
  <div class="chartcntnbx">
859
- <h5><?php esc_html_e("Sales","conversios"); ?></h5>
860
  <div class="chartarea">
861
  <canvas id="dailySales" width="400" height="300" class="chartcntainer"></canvas>
862
  </div>
@@ -867,12 +867,12 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
867
  </div>
868
  <?php }else{ ?>
869
  <div class="mt24 whiteroundedbx ggladsperfom-sec">
870
- <h4><?php esc_html_e("Shopping and Google Ads Performance","conversios"); ?></h4>
871
  <div class="row">
872
  <div class="col50">
873
  <div class="chartbx ecomfunnchrtbx">
874
  <div class="chartcntnbx prochrtftr">
875
- <h5><?php esc_html_e("Google Ads Clicks Performance","conversios"); ?></h5>
876
  <div class="chartarea">
877
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
878
  </div>
@@ -881,11 +881,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
881
  <div class="prochrtcntn">
882
  <div class="prochrttop">
883
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
884
- <?php esc_html_e("Locked","conversios"); ?>
885
  </div>
886
- <h5 class="prochrtitle"><?php esc_html_e("Google Ads Clicks Performance","conversios"); ?></h5>
887
- <p><?php esc_html_e("This report will help you .","conversios"); ?></p>
888
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
889
  </div>
890
  </div>
891
  </div>
@@ -893,7 +893,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
893
  <div class="col50">
894
  <div class="chartbx ecomfunnchrtbx">
895
  <div class="chartcntnbx prochrtftr">
896
- <h5><?php esc_html_e("Google Ads Cost Performance","conversios"); ?></h5>
897
  <div class="chartarea">
898
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
899
  </div>
@@ -902,11 +902,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
902
  <div class="prochrtcntn">
903
  <div class="prochrttop">
904
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
905
- <?php esc_html_e("Locked","conversios"); ?>
906
  </div>
907
- <h5 class="prochrtitle"><?php esc_html_e("Google Ads Cost Performance","conversios"); ?></h5>
908
- <p><?php esc_html_e("This report will help you understand how products in your store are performing and based on it you can take informed merchandising decision to further increase your revenue.","conversios"); ?></p>
909
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
910
  </div>
911
  </div>
912
  </div>
@@ -915,7 +915,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
915
  <div class="col50">
916
  <div class="chartbx ecomfunnchrtbx">
917
  <div class="chartcntnbx prochrtftr">
918
- <h5><?php esc_html_e("Google Ads Conversions Performance","conversios"); ?></h5>
919
  <div class="chartarea">
920
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
921
  </div>
@@ -924,11 +924,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
924
  <div class="prochrtcntn">
925
  <div class="prochrttop">
926
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
927
- <?php esc_html_e("Locked","conversios"); ?>
928
  </div>
929
- <h5 class="prochrtitle"><?php esc_html_e("Google Ads Conversions Performance","conversios"); ?></h5>
930
- <p><?php esc_html_e("This report will help you","conversios"); ?> </p>
931
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
932
  </div>
933
  </div>
934
  </div>
@@ -936,7 +936,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
936
  <div class="col50">
937
  <div class="chartbx ecomfunnchrtbx">
938
  <div class="chartcntnbx prochrtftr">
939
- <h5><?php esc_html_e("Google Ads Sales Performance","conversios"); ?></h5>
940
  <div class="chartarea">
941
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
942
  </div>
@@ -947,9 +947,9 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
947
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
948
  Locked
949
  </div>
950
- <h5 class="prochrtitle"><?php esc_html_e("Google Ads Sales Performance","conversios"); ?></h5>
951
- <p><?php esc_html_e("This report will help you.","conversios"); ?></p>
952
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
953
  </div>
954
  </div>
955
  </div>
@@ -965,26 +965,26 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
965
  <div class="mt24 whiteroundedbx dshreport-sec">
966
  <div class="row dsh-reprttop">
967
  <div class="dshrprttp-left">
968
- <h4><?php esc_html_e("Campaign Performance","conversios"); ?></h4>
969
- <a href="" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
970
  </div>
971
  </div>
972
  <div class="dashtablewrp campaign_performance_report" id="campaign_performance_report">
973
  <?php if($this->google_ads_id == ""){
974
  ?>
975
- <p><?php esc_html_e("Set up your google ads account from","conversios"); ?> <a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>"><?php esc_html_e("here","conversios"); ?></a> <?php esc_html_e("in order to access Campaign performance data.","conversios"); ?></p>
976
  <?php
977
  } ?>
978
  <table class="dshreporttble mbl-table" >
979
  <thead>
980
  <tr>
981
- <th class="prdnm-cell"><?php esc_html_e("Campaign Name","conversios"); ?></th>
982
- <th><?php esc_html_e("Daily Budget","conversios"); ?></th>
983
- <th><?php esc_html_e("Status","conversios"); ?></th>
984
- <th><?php esc_html_e("Clicks","conversios"); ?></th>
985
- <th><?php esc_html_e("Cost","conversios"); ?></th>
986
- <th><?php esc_html_e("Conversions","conversios"); ?></th>
987
- <th><?php esc_html_e("Sales","conversios"); ?></th>
988
  </tr>
989
  </thead>
990
  <tbody>
@@ -998,7 +998,7 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
998
  <div class="col">
999
  <div class="chartbx ecomfunnchrtbx">
1000
  <div class="chartcntnbx prochrtftr">
1001
- <h5><?php esc_html_e("Campaign Performance","conversios"); ?></h5>
1002
  <div class="chartarea">
1003
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
1004
  </div>
@@ -1007,11 +1007,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
1007
  <div class="prochrtcntn">
1008
  <div class="prochrttop">
1009
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
1010
- <?php esc_html_e("Locked","conversios"); ?>
1011
  </div>
1012
- <h5 class="prochrtitle"><?php esc_html_e("Campaign Performance","conversios"); ?></h5>
1013
- <p><?php esc_html_e("Access your campaign performance data to know how are they performing and take actionable decisions to increase your marketing ROI.","conversios"); ?></p>
1014
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
1015
  </div>
1016
  </div>
1017
  </div>
@@ -1029,12 +1029,12 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
1029
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
1030
  </div>
1031
  <div class="upgradsbscrptnpp-hdr">
1032
- <h5 class="prochrtitle"><?php esc_html_e("Upgrade to Pro..!!","conversios"); ?></h5>
1033
  </div>
1034
  <div class="ppmodal-body">
1035
- <p><?php esc_html_e("This feature is only available in the paid plan. Please upgrade to get the full range of reports and more.","conversios"); ?></p>
1036
  <div class="ppupgrdbtnwrap">
1037
- <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","conversios"); ?></a>
1038
  </div>
1039
  </div>
1040
  </div>
@@ -1048,11 +1048,11 @@ if ( ! class_exists( 'Conversios_Dashboard' ) ) {
1048
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
1049
  </div>
1050
  <div class="upgradsbscrptnpp-hdr">
1051
- <h5><?php esc_html_e("Upcoming..!!","conversios"); ?></h5>
1052
  </div>
1053
  <div class="ppmodal-body">
1054
- <p><?php esc_html_e("We are currently working on this feature and we will reach out to you once this is live.","conversios"); ?></p>
1055
- <p><?php esc_html_e("We aim to give you a capability to schedule the reports directly in your inbox whenever you want.","conversios"); ?></p>
1056
  </div>
1057
  </div>
1058
  </div>
44
  $this->TVC_Admin_Helper->update_subscription_details_api_to_db();
45
  }
46
  } else if(isset($_GET['subscription_id']) && sanitize_text_field($_GET['subscription_id'])){
47
+ $this->notice = esc_html__("You tried signing in with different email. Please try again by signing it with the email id that you used to set up the plugin earlier.","enhanced-e-commerce-for-woocommerce-store");
48
  }
49
  $this->is_refresh_token_expire = $this->TVC_Admin_Helper->is_refresh_token_expire();
50
  $this->subscription_data = $this->TVC_Admin_Helper->get_user_subscription_data();
350
  <?php } ?>
351
  </div>
352
  <div class="dashtp-left">
353
+ <button class="dashtpleft-btn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/download-icon.png'); ?>" alt="" /><?php esc_html_e("Download PDF","enhanced-e-commerce-for-woocommerce-store"); ?></button>
354
+ <button class="dashtpleft-btn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('schedule_email')); ?>"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/clock-icon.png'); ?>" alt="" /><?php esc_html_e("Schedule Email","enhanced-e-commerce-for-woocommerce-store"); ?></button>
355
  </div>
356
  <div class="dashtp-right">
357
  <?php /*
383
  </div>
384
  </div>
385
  <?php /*if($this->ga_traking_type == "GA4"){?>
386
+ <div class="temp_note"><p><?php esc_html_e("The reporting dashboard feature is only available for Google Analytics 3 properties currently. We are working on Google Analytics 4 dashboard, we will update you once it is live.","enhanced-e-commerce-for-woocommerce-store"); ?></p></div>
387
  <?php }*/ ?>
388
  <!--- dashboard summary section start -->
389
  <div class="wht-rnd-shdwbx mt24 dashsmry-wrap">
390
  <div class="dashsmry-item">
391
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
392
  <div class="dashsmrybx" id="s1_transactionsPerSession">
393
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Conversion Rate","enhanced-e-commerce-for-woocommerce-store"); ?></div>
394
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
395
  <div class="updownsmry dash-smry-compare-val">
396
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/green-up.png'); ?>" alt="" />
397
  %
398
  </div>
399
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
400
  </div>
401
  <div class="dashsmrybx" id="s1_transactionRevenue">
402
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Revenue","enhanced-e-commerce-for-woocommerce-store"); ?></div>
403
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
404
  <div class="updownsmry dash-smry-compare-val">
405
  %
406
  </div>
407
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
408
  </div>
409
  <div class="dashsmrybx mblsmry3bx" id="s1_transactions">
410
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Transactions","enhanced-e-commerce-for-woocommerce-store"); ?></div>
411
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
412
  <div class="updownsmry dash-smry-compare-val">
413
  %
414
  </div>
415
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
416
  </div>
417
  <div class="dashsmrybx mblsmry3bx" id="s1_revenuePerTransaction">
418
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Avg. Order Value","enhanced-e-commerce-for-woocommerce-store"); ?></div>
419
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
420
  <div class="updownsmry dash-smry-compare-val">
421
  %
422
  </div>
423
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
424
  </div>
425
  <div class="dashsmrybx mblsmry3bx flwdthmblbx" id="s1_productAddsToCart">
426
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Added to Cart","enhanced-e-commerce-for-woocommerce-store"); ?></div>
427
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
428
  <div class="updownsmry dash-smry-compare-val">
429
  %
430
  </div>
431
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
432
  </div>
433
  </div>
434
  <div class="dashsmry-item">
435
  <div class="dashsmrybx" id="s1_productRemovesFromCart">
436
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Removed from Cart","enhanced-e-commerce-for-woocommerce-store"); ?></div>
437
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
438
  <div class="updownsmry dash-smry-compare-val">
439
  %
440
  </div>
441
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
442
  </div>
443
  <div class="dashsmrybx" id="s1_sessions">
444
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Sessions","enhanced-e-commerce-for-woocommerce-store"); ?></div>
445
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
446
  <div class="updownsmry dash-smry-compare-val">
447
  %
448
  </div>
449
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
450
  </div>
451
  <div class="dashsmrybx" id="s1_users">
452
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Users","enhanced-e-commerce-for-woocommerce-store"); ?></div>
453
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
454
  <div class="updownsmry dash-smry-compare-val">
455
  %
456
  </div>
457
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
458
  </div>
459
  <div class="dashsmrybx" id="s1_newUsers">
460
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("New Users","enhanced-e-commerce-for-woocommerce-store"); ?></div>
461
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
462
  <div class="updownsmry dash-smry-compare-val">
463
  %
464
  </div>
465
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
466
  </div>
467
  <div class="dashsmrybx" id="s1_productDetailViews">
468
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Product Views","enhanced-e-commerce-for-woocommerce-store"); ?></div>
469
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
470
  <div class="updownsmry dash-smry-compare-val">
471
  %
472
  </div>
473
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
474
  </div>
475
 
476
  <?php }else { ?>
477
 
478
  <div class="dashsmrybx" id="s1_totalRevenue">
479
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Revenue","enhanced-e-commerce-for-woocommerce-store"); ?></div>
480
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
481
  <div class="updownsmry dash-smry-compare-val">
482
  %
483
  </div>
484
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
485
  </div>
486
  <div class="dashsmrybx mblsmry3bx" id="s1_transactions">
487
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Transactions","enhanced-e-commerce-for-woocommerce-store"); ?></div>
488
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
489
  <div class="updownsmry dash-smry-compare-val">
490
  %
491
  </div>
492
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
493
  </div>
494
  <div class="dashsmrybx mblsmry3bx" id="s1_averagePurchaseRevenue">
495
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Avg. Order Value","enhanced-e-commerce-for-woocommerce-store"); ?></div>
496
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
497
  <div class="updownsmry dash-smry-compare-val">
498
  %
499
  </div>
500
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
501
  </div>
502
  <div class="dashsmrybx mblsmry3bx flwdthmblbx" id="s1_addToCarts">
503
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Added to Cart","enhanced-e-commerce-for-woocommerce-store"); ?></div>
504
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
505
  <div class="updownsmry dash-smry-compare-val">
506
  %
507
  </div>
508
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
509
  </div>
510
  </div>
511
  <div class="dashsmry-item">
512
 
513
  <div class="dashsmrybx" id="s1_sessions">
514
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Sessions","enhanced-e-commerce-for-woocommerce-store"); ?></div>
515
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
516
  <div class="updownsmry dash-smry-compare-val">
517
  %
518
  </div>
519
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
520
  </div>
521
  <div class="dashsmrybx" id="s1_totalUsers">
522
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Total Users","enhanced-e-commerce-for-woocommerce-store"); ?></div>
523
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
524
  <div class="updownsmry dash-smry-compare-val">
525
  %
526
  </div>
527
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
528
  </div>
529
  <div class="dashsmrybx" id="s1_newUsers">
530
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("New Users","enhanced-e-commerce-for-woocommerce-store"); ?></div>
531
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
532
  <div class="updownsmry dash-smry-compare-val">
533
  %
534
  </div>
535
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
536
  </div>
537
  <div class="dashsmrybx" id="s1_itemViews">
538
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Product Views","enhanced-e-commerce-for-woocommerce-store"); ?></div>
539
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
540
  <div class="updownsmry dash-smry-compare-val">
541
  %
542
  </div>
543
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
544
  </div>
545
  <?php
546
  } ?>
549
  <?php /*
550
  <div class="dashsmry-item">
551
  <div class="dashsmrybx" id="s1_transactionShipping">
552
+ <div class="dshsmrycattxt dash-smry-title"><?php esc_html_e("Shipping","enhanced-e-commerce-for-woocommerce-store"); ?></div>
553
  <div class="dshsmrylrgtxt dash-smry-value">-</div>
554
  <div class="updownsmry dash-smry-compare-val">
555
  %
556
  </div>
557
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
558
  </div>
559
  <div class="dashsmrybx" id="s1_transactionTax">
560
  <div class="dshsmrycattxt dash-smry-title">TAX</div>
562
  <div class="updownsmry dash-smry-compare-val">
563
  %
564
  </div>
565
+ <div class="dshsmryprdtxt"><?php esc_html_e("From Previous Period","enhanced-e-commerce-for-woocommerce-store"); ?></div>
566
  </div>
567
  </div> */?>
568
  </div>
575
  <div class="col50">
576
  <div class="chartbx ecomfunnchrtbx ecom-funn-chrt-bx">
577
  <div class="chartcntnbx">
578
+ <h5><?php esc_html_e("Ecommerce Conversion Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
579
  <div class="chartarea">
580
  <canvas id="ecomfunchart" width="400" height="300"></canvas>
581
  </div>
583
  <div class="ecomchartinfo">
584
  <div class="ecomchrtinfoflex">
585
  <div class="ecomchartinfoitem">
586
+ <div class="ecomchartinfolabel"><?php esc_html_e("Sessions","enhanced-e-commerce-for-woocommerce-store"); ?></div>
587
  <div class="chartpercarrow conversion_s1"></div>
588
  </div>
589
  <div class="ecomchartinfoitem">
590
+ <div class="ecomchartinfolabel"><?php esc_html_e("Product View","enhanced-e-commerce-for-woocommerce-store"); ?></div>
591
  <div class="chartpercarrow conversion_s2"></div>
592
  </div>
593
  <div class="ecomchartinfoitem">
594
+ <div class="ecomchartinfolabel"><?php esc_html_e("Add to Cart","enhanced-e-commerce-for-woocommerce-store"); ?></div>
595
  <div class="chartpercarrow conversion_s3"></div>
596
  </div>
597
  <div class="ecomchartinfoitem">
598
+ <div class="ecomchartinfolabel"><?php esc_html_e("Checkouts","enhanced-e-commerce-for-woocommerce-store"); ?></div>
599
  <div class="chartpercarrow conversion_s4"></div>
600
  </div>
601
  <div class="ecomchartinfoitem">
602
+ <div class="ecomchartinfolabel"><?php esc_html_e("Order Confirmation","enhanced-e-commerce-for-woocommerce-store"); ?></div>
603
  </div>
604
  </div>
605
  </div>
610
  <div class="col50">
611
  <div class="chartbx ecomfunnchrtbx">
612
  <div class="chartcntnbx prochrtftr">
613
+ <h5><?php esc_html_e("Ecommerce Conversion Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
614
  <div class="chartarea">
615
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/ecom-chart.jpg'); ?>" alt="" />
616
  </div>
621
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
622
  Locked
623
  </div>
624
+ <h5 class="prochrtitle"><?php esc_html_e("Conversion Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
625
+ <p><?php esc_html_e("This Report will help you visualize drop offs at each stage of your shopping funnel starting from home page to product page, cart page to checkout page and to final order confirmation page. Find out the major drop offs at each stage and take informed data driven decisions to increase the conversions and better marketing ROI.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
626
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
627
  </div>
628
  </div>
629
  </div>
634
  <div class="col50">
635
  <div class="chartbx ecomfunnchrtbx ecom-checkout-funn-chrt-bx">
636
  <div class="chartcntnbx">
637
+ <h5><?php esc_html_e("Ecommerce Checkout Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
638
  <div class="chartarea">
639
  <canvas id="ecomcheckoutfunchart" width="400" height="300"></canvas>
640
  </div>
642
  <div class="ecomchartinfo ecomcheckoutfunchartinfo">
643
  <div class="ecomchrtinfoflex">
644
  <div class="ecomchartinfoitem">
645
+ <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 1","enhanced-e-commerce-for-woocommerce-store"); ?></div>
646
  <div class="chartpercarrow checkoutfunn_s1"></div>
647
  </div>
648
  <div class="ecomchartinfoitem">
649
+ <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 2","enhanced-e-commerce-for-woocommerce-store"); ?></div>
650
  <div class="chartpercarrow checkoutfunn_s2"></div>
651
  </div>
652
  <div class="ecomchartinfoitem">
653
+ <div class="ecomchartinfolabel"><?php esc_html_e("Checkout Step 3","enhanced-e-commerce-for-woocommerce-store"); ?></div>
654
  <div class="chartpercarrow checkoutfunn_s3"></div>
655
  </div>
656
  <div class="ecomchartinfoitem">
657
+ <div class="ecomchartinfolabel"><?php esc_html_e("Purchase","enhanced-e-commerce-for-woocommerce-store"); ?></div>
658
  </div>
659
 
660
  </div>
667
  <div class="col50">
668
  <div class="chartbx ecomfunnchrtbx">
669
  <div class="chartcntnbx prochrtftr">
670
+ <h5><?php esc_html_e("Checkout Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
671
  <div class="chartarea">
672
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/ecom-chart.jpg'); ?>" alt="" />
673
  </div>
678
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
679
  Locked
680
  </div>
681
+ <h5 class="prochrtitle"><?php esc_html_e("Checkout Funnel","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
682
+ <p><?php esc_html_e("This Report will help you in finding out the performance of your checkout page and leakages at each checkout step. Identify the small areas of improvements and fix them for smooth customer experience on your ecommerce site.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
683
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
684
  </div>
685
  </div>
686
  </div>
696
  <div class="mt24 whiteroundedbx dshreport-sec">
697
  <div class="row dsh-reprttop">
698
  <div class="dshrprttp-left">
699
+ <h4><?php esc_html_e("Product Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
700
+ <a href="#" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
701
  </div>
702
  </div>
703
  <div class="dashtablewrp product_performance_report" id="product_performance_report">
704
  <table class="dshreporttble mbl-table" >
705
  <thead>
706
  <tr>
707
+ <th class="prdnm-cell"><?php esc_html_e("Product Name","enhanced-e-commerce-for-woocommerce-store"); ?></th>
708
+ <th><?php esc_html_e("Views","enhanced-e-commerce-for-woocommerce-store"); ?></th>
709
+ <th><?php esc_html_e("Added to Cart","enhanced-e-commerce-for-woocommerce-store"); ?></th>
710
+ <th><?php esc_html_e("Orders","enhanced-e-commerce-for-woocommerce-store"); ?></th>
711
+ <th><?php esc_html_e("Qty","enhanced-e-commerce-for-woocommerce-store"); ?></th>
712
+ <th><?php esc_html_e("Revenue","enhanced-e-commerce-for-woocommerce-store"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
713
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
714
+ <th><?php esc_html_e("Avg Price","enhanced-e-commerce-for-woocommerce-store"); ?> (<?php echo esc_attr($this->ga_currency_symbols); ?>)</th>
715
+ <th><?php esc_html_e("Refund Amount","enhanced-e-commerce-for-woocommerce-store"); ?> (<?php echo esc_attr($this->ga_currency_symbols); ?>)</th>
716
  <?php } ?>
717
+ <th><?php esc_html_e("Cart to details (%)","enhanced-e-commerce-for-woocommerce-store"); ?></th>
718
+ <th><?php esc_html_e("Buy to details (%)","enhanced-e-commerce-for-woocommerce-store"); ?></th>
719
  </tr>
720
  </thead>
721
  <tbody>
729
  <div class="col">
730
  <div class="chartbx ecomfunnchrtbx">
731
  <div class="chartcntnbx prochrtftr">
732
+ <h5><?php esc_html_e("Product Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
733
  <div class="chartarea">
734
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
735
  </div>
738
  <div class="prochrtcntn">
739
  <div class="prochrttop">
740
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
741
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
742
  </div>
743
+ <h5 class="prochrtitle"><?php esc_html_e("Product Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
744
+ <p><?php esc_html_e("This report will help you understand how products in your store are performing and based on it you can take informed merchandising decision to further increase your revenue.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
745
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
746
  </div>
747
  </div>
748
  </div>
757
  <div class="mt24 whiteroundedbx dshreport-sec">
758
  <div class="row dsh-reprttop">
759
  <div class="dshrprttp-left">
760
+ <h4><?php esc_html_e("Source/Medium Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
761
+ <a href="" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
762
  </div>
763
  </div>
764
  <div class="dashtablewrp medium_performance_report" id="medium_performance_report">
765
  <table class="dshreporttble mbl-table" >
766
  <thead>
767
  <tr>
768
+ <th class="prdnm-cell"><?php esc_html_e("Source/Medium","enhanced-e-commerce-for-woocommerce-store"); ?></th>
769
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
770
+ <th><?php esc_html_e("Conversion (%)","enhanced-e-commerce-for-woocommerce-store"); ?></th>
771
  <?php } ?>
772
+ <th><?php esc_html_e("Revenue","enhanced-e-commerce-for-woocommerce-store"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
773
+ <th><?php esc_html_e("Total transactions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
774
+ <th><?php esc_html_e("Avg Order value","enhanced-e-commerce-for-woocommerce-store"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->ga_currency_symbols); ?></spn>)</th>
775
+ <th><?php esc_html_e("Added to carts","enhanced-e-commerce-for-woocommerce-store"); ?></th>
776
  <?php if($this->ga_swatch == "" || $this->ga_swatch == "ga3"){ ?>
777
+ <th><?php esc_html_e("removed from cart","enhanced-e-commerce-for-woocommerce-store"); ?></th>
778
  <?php } ?>
779
+ <th><?php esc_html_e("Product views","enhanced-e-commerce-for-woocommerce-store"); ?></th>
780
+ <th><?php esc_html_e("Users","enhanced-e-commerce-for-woocommerce-store"); ?></th>
781
+ <th><?php esc_html_e("Sessions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
782
  </tr>
783
  </thead>
784
  <tbody>
793
  <div class="col">
794
  <div class="chartbx ecomfunnchrtbx">
795
  <div class="chartcntnbx prochrtftr">
796
+ <h5><?php esc_html_e("Source/Medium Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
797
  <div class="chartarea">
798
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
799
  </div>
802
  <div class="prochrtcntn">
803
  <div class="prochrttop">
804
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
805
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
806
  </div>
807
+ <h5 class="prochrtitle"><?php esc_html_e("Source/Medium Performance Report","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
808
+ <p><?php esc_html_e("Find out the performance of each of your traffic channels. You can access which campaigns or channels are attributing sales, add to carts, product views etc. You can also see your shopping and checkout behavior funnels for each of the channels and take informed decisions of managing your ad spends for each channel.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
809
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
810
  </div>
811
  </div>
812
  </div>
820
  <!--- Shopping and Google Ads Performance section start -->
821
  <?php if($this->plan_id != 1){?>
822
  <div class="mt24 whiteroundedbx ggladsperfom-sec">
823
+ <h4><?php esc_html_e("Google Ads Account Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
824
  <div class="row">
825
  <div class="col50">
826
  <div class="chartbx ggladschrtbx daily-clicks-bx">
827
  <div class="chartcntnbx">
828
+ <h5><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
829
  <div class="chartarea">
830
  <canvas id="dailyClicks" width="400" height="300" class="chartcntainer"></canvas>
831
  </div>
835
  <div class="col50">
836
  <div class="chartbx ggladschrtbx daily-cost-bx">
837
  <div class="chartcntnbx">
838
+ <h5><?php esc_html_e("Cost","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
839
  <div class="chartarea">
840
  <canvas id="dailyCost" width="400" height="300" class="chartcntainer"></canvas>
841
  </div>
846
  <div class="col50">
847
  <div class="chartbx ggladschrtbx daily-conversions-bx">
848
  <div class="chartcntnbx">
849
+ <h5><?php esc_html_e("Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
850
  <div class="chartarea">
851
  <canvas id="dailyConversions" width="400" height="300" class="chartcntainer"></canvas>
852
  </div>
856
  <div class="col50">
857
  <div class="chartbx ggladschrtbx daily-sales-bx">
858
  <div class="chartcntnbx">
859
+ <h5><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
860
  <div class="chartarea">
861
  <canvas id="dailySales" width="400" height="300" class="chartcntainer"></canvas>
862
  </div>
867
  </div>
868
  <?php }else{ ?>
869
  <div class="mt24 whiteroundedbx ggladsperfom-sec">
870
+ <h4><?php esc_html_e("Shopping and Google Ads Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
871
  <div class="row">
872
  <div class="col50">
873
  <div class="chartbx ecomfunnchrtbx">
874
  <div class="chartcntnbx prochrtftr">
875
+ <h5><?php esc_html_e("Google Ads Clicks Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
876
  <div class="chartarea">
877
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
878
  </div>
881
  <div class="prochrtcntn">
882
  <div class="prochrttop">
883
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
884
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
885
  </div>
886
+ <h5 class="prochrtitle"><?php esc_html_e("Google Ads Clicks Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
887
+ <p><?php esc_html_e("This report will help you .","enhanced-e-commerce-for-woocommerce-store"); ?></p>
888
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
889
  </div>
890
  </div>
891
  </div>
893
  <div class="col50">
894
  <div class="chartbx ecomfunnchrtbx">
895
  <div class="chartcntnbx prochrtftr">
896
+ <h5><?php esc_html_e("Google Ads Cost Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
897
  <div class="chartarea">
898
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
899
  </div>
902
  <div class="prochrtcntn">
903
  <div class="prochrttop">
904
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
905
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
906
  </div>
907
+ <h5 class="prochrtitle"><?php esc_html_e("Google Ads Cost Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
908
+ <p><?php esc_html_e("This report will help you understand how products in your store are performing and based on it you can take informed merchandising decision to further increase your revenue.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
909
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
910
  </div>
911
  </div>
912
  </div>
915
  <div class="col50">
916
  <div class="chartbx ecomfunnchrtbx">
917
  <div class="chartcntnbx prochrtftr">
918
+ <h5><?php esc_html_e("Google Ads Conversions Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
919
  <div class="chartarea">
920
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
921
  </div>
924
  <div class="prochrtcntn">
925
  <div class="prochrttop">
926
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
927
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
928
  </div>
929
+ <h5 class="prochrtitle"><?php esc_html_e("Google Ads Conversions Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
930
+ <p><?php esc_html_e("This report will help you","enhanced-e-commerce-for-woocommerce-store"); ?> </p>
931
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
932
  </div>
933
  </div>
934
  </div>
936
  <div class="col50">
937
  <div class="chartbx ecomfunnchrtbx">
938
  <div class="chartcntnbx prochrtftr">
939
+ <h5><?php esc_html_e("Google Ads Sales Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
940
  <div class="chartarea">
941
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
942
  </div>
947
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
948
  Locked
949
  </div>
950
+ <h5 class="prochrtitle"><?php esc_html_e("Google Ads Sales Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
951
+ <p><?php esc_html_e("This report will help you.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
952
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
953
  </div>
954
  </div>
955
  </div>
965
  <div class="mt24 whiteroundedbx dshreport-sec">
966
  <div class="row dsh-reprttop">
967
  <div class="dshrprttp-left">
968
+ <h4><?php esc_html_e("Campaign Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
969
+ <a href="" class="viewallbtn <?php echo esc_attr($this->add_upgrdsbrs_btn_calss('download_pdf')); ?>"><?php esc_html_e("View all","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-right-arrow.png'); ?>" alt="" /></a>
970
  </div>
971
  </div>
972
  <div class="dashtablewrp campaign_performance_report" id="campaign_performance_report">
973
  <?php if($this->google_ads_id == ""){
974
  ?>
975
+ <p><?php esc_html_e("Set up your google ads account from","enhanced-e-commerce-for-woocommerce-store"); ?> <a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>"><?php esc_html_e("here","enhanced-e-commerce-for-woocommerce-store"); ?></a> <?php esc_html_e("in order to access Campaign performance data.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
976
  <?php
977
  } ?>
978
  <table class="dshreporttble mbl-table" >
979
  <thead>
980
  <tr>
981
+ <th class="prdnm-cell"><?php esc_html_e("Campaign Name","enhanced-e-commerce-for-woocommerce-store"); ?></th>
982
+ <th><?php esc_html_e("Daily Budget","enhanced-e-commerce-for-woocommerce-store"); ?></th>
983
+ <th><?php esc_html_e("Status","enhanced-e-commerce-for-woocommerce-store"); ?></th>
984
+ <th><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></th>
985
+ <th><?php esc_html_e("Cost","enhanced-e-commerce-for-woocommerce-store"); ?></th>
986
+ <th><?php esc_html_e("Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
987
+ <th><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></th>
988
  </tr>
989
  </thead>
990
  <tbody>
998
  <div class="col">
999
  <div class="chartbx ecomfunnchrtbx">
1000
  <div class="chartcntnbx prochrtftr">
1001
+ <h5><?php esc_html_e("Campaign Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
1002
  <div class="chartarea">
1003
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/table-data.jpg'); ?>" alt="" />
1004
  </div>
1007
  <div class="prochrtcntn">
1008
  <div class="prochrttop">
1009
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" alt="" />
1010
+ <?php esc_html_e("Locked","enhanced-e-commerce-for-woocommerce-store"); ?>
1011
  </div>
1012
+ <h5 class="prochrtitle"><?php esc_html_e("Campaign Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
1013
+ <p><?php esc_html_e("Access your campaign performance data to know how are they performing and take actionable decisions to increase your marketing ROI.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
1014
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
1015
  </div>
1016
  </div>
1017
  </div>
1029
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
1030
  </div>
1031
  <div class="upgradsbscrptnpp-hdr">
1032
+ <h5 class="prochrtitle"><?php esc_html_e("Upgrade to Pro..!!","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
1033
  </div>
1034
  <div class="ppmodal-body">
1035
+ <p><?php esc_html_e("This feature is only available in the paid plan. Please upgrade to get the full range of reports and more.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
1036
  <div class="ppupgrdbtnwrap">
1037
+ <a class="blueupgrdbtn" href="<?php echo esc_url_raw($this->pro_plan_site); ?>" target="_blank"><?php esc_html_e("Upgrade Now","enhanced-e-commerce-for-woocommerce-store"); ?></a>
1038
  </div>
1039
  </div>
1040
  </div>
1048
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/close-white.png'); ?>" alt="">
1049
  </div>
1050
  <div class="upgradsbscrptnpp-hdr">
1051
+ <h5><?php esc_html_e("Upcoming..!!","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
1052
  </div>
1053
  <div class="ppmodal-body">
1054
+ <p><?php esc_html_e("We are currently working on this feature and we will reach out to you once this is live.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
1055
+ <p><?php esc_html_e("We aim to give you a capability to schedule the reports directly in your inbox whenever you want.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
1056
  </div>
1057
  </div>
1058
  </div>
includes/setup/class-tvc-product-sync-helper.php CHANGED
@@ -94,10 +94,10 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
94
  }
95
  }
96
  if(empty($sync_profile_data)){
97
- return array("error"=>true,"message"=>esc_html__("No product sync profiles find.","conversios"));
98
  }
99
  if(empty($products)){
100
- return array("error"=>true,"message"=>esc_html__("Products not found.","conversios"));
101
  }
102
  $products_sync = 0;
103
  foreach ($products as $postkey => $postvalue) {
@@ -123,7 +123,7 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
123
  }
124
 
125
  if(empty($formArray)){
126
- return array("error"=>true,"message"=>esc_html__("Product sync profile not found.","conversios"));
127
  }
128
  //$formArray = json_decode($postvalue->g_attribute_mapping, true);
129
  foreach ($fixed_att_select_list as $fixed_key) {
@@ -431,36 +431,36 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
431
  <div class="modal-content">
432
  <div class="modal-body">
433
  <button type="button" class="btn-close tvc-popup-close" data-bs-dismiss="modal" aria-label="Close"> &times; </button>
434
- <h5><?php esc_html_e("Map your product attributes","conversios"); ?></h5>
435
- <p><?php esc_html_e("Google Merchant Center uses attributes to format your product information for Shopping Ads. Map your product attributes to the Merchant Center product attributes below. You can also edit each product’s individual attributes after you sync your products. Not all fields below are marked required, however based on your shop's categories and your country you might map a few optional attributes as well. See the full guide","conversios"); ?> <a target="_blank" href="<?php esc_url_raw("https://support.google.com/merchants/answer/7052112"); ?>"><?php esc_html_e("here","conversios"); ?></a>.
436
  </p>
437
  <div class="wizard-section campaign-wizard">
438
  <div class="wizard-content">
439
  <input type="hidden" name="merchant_id" id="merchant_id" value="<?php echo esc_attr($this->merchantId); ?>">
440
  <form class="tab-wizard wizard- wizard" id="productSync" method="POST">
441
- <h5><span class="wiz-title"><?php esc_html_e("Category Mapping","conversios"); ?></span></h5>
442
  <section>
443
  <div class="card-wrapper">
444
  <div class="row">
445
  <div class="col-6">
446
- <h6 class="heading-tbl"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/woocommerce.svg'); ?>" alt="WooCommerce"/><?php esc_html_e("Commerce Category","conversios"); ?></h6>
447
  </div>
448
  <div class="col-6">
449
- <h6 class="heading-tbl gmc-image-heading"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/google-shopping.svg'); ?>" alt="google-shopping"/><?php esc_html_e("Google Merchant Center Category","conversios"); ?></h6>
450
  </div>
451
  </div><?php echo $this->category_wrapper_obj->category_table_content('mapping'); ?>
452
  </div>
453
  </section>
454
  <!-- Step 2 -->
455
- <h5><span class="wiz-title"><?php esc_html_e("Product Attribution Mapping","conversios"); ?></span></h5>
456
  <section>
457
  <div class="card-wrapper">
458
  <div class="row">
459
  <div class="col-6">
460
- <h6 class="heading-tbl gmc-image-heading"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/google-shopping.svg'); ?>" alt="google-shopping"/><?php esc_html_e("Google Merchant center product attributes","conversios"); ?></h6>
461
  </div>
462
  <div class="col-6">
463
- <h6 class="heading-tbl"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/woocommerce.svg'); ?>" alt="WooCommerce"/><?php esc_html_e("Commerce product attributes","conversios"); ?></h6>
464
  </div>
465
  </div>
466
  <?php
@@ -490,16 +490,16 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
490
  }else if($attribute["field"]=='shipping'){
491
  //$name, $class_id, string $label=null, $sel_val = null, bool $require = false
492
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?$ee_mapped_attrs[$attribute["field"]]:$sel_val_def;
493
- echo $this->TVC_Admin_Helper->tvc_text($attribute["field"], 'number', '', esc_html__('Add shipping flat rate','conversios'), $sel_val, $require);
494
  }else if($attribute["field"]=='tax'){
495
  //$name, $class_id, string $label=null, $sel_val = null, bool $require = false
496
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?esc_attr($ee_mapped_attrs[$attribute["field"]]):esc_attr($sel_val_def);
497
  echo $this->TVC_Admin_Helper->tvc_text($attribute["field"], 'number', '', 'Add TAX flat (%)', $sel_val, $require);
498
  }else if($attribute["field"]=='content_language'){
499
- echo $this->TVC_Admin_Helper->tvc_language_select($attribute["field"], 'content_language', esc_html__('Please Select Attribute','conversios'), 'en',$require);
500
  }else if($attribute["field"]=='target_country'){
501
  //$name, $class_id, bool $require = false
502
- echo $this->TVC_Admin_Helper->tvc_countries_select($attribute["field"], 'target_country', esc_html__('Please Select Attribute','conversios'), $require);
503
  }else{
504
  if(isset($attribute['fixed_options']) && $attribute['fixed_options'] !=""){
505
  $tvc_select_option_t = explode(",", $attribute['fixed_options']);
@@ -508,11 +508,11 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
508
  $tvc_select_option[]['field'] = esc_attr($o_val);
509
  }
510
  $sel_val = $sel_val_def;
511
- $this->TVC_Admin_Helper->tvc_select($attribute["field"],$attribute["field"],esc_html__('Please Select Attribute','conversios'), $sel_val, $require, $tvc_select_option);
512
  }else{
513
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?$ee_mapped_attrs[$attribute["field"]]:$sel_val_def;
514
  //$name, $class_id, $label="Please Select", $sel_val, $require, $option_list
515
- $this->TVC_Admin_Helper->tvc_select($attribute["field"],$attribute["field"],esc_html__('Please Select Attribute','conversios'), $sel_val, $require, $tvc_select_option);
516
  }
517
  }
518
  echo '</div>
@@ -543,7 +543,7 @@ if ( ! class_exists( 'TVCProductSyncHelper' ) ) {
543
  </div>
544
  </div>
545
  <div class="progress-bar-wapper">
546
- <span class="tvc-sync-message"><?php esc_html_e("Initializing...","conversios"); ?></span>
547
  <div class="progress tvc-sync-progress-db">
548
  <div class="progress-bar progress-bar-striped progress-bar-animated tvc-sync-progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">0%</div>
549
  </div>
94
  }
95
  }
96
  if(empty($sync_profile_data)){
97
+ return array("error"=>true,"message"=>esc_html__("No product sync profiles find.","enhanced-e-commerce-for-woocommerce-store"));
98
  }
99
  if(empty($products)){
100
+ return array("error"=>true,"message"=>esc_html__("Products not found.","enhanced-e-commerce-for-woocommerce-store"));
101
  }
102
  $products_sync = 0;
103
  foreach ($products as $postkey => $postvalue) {
123
  }
124
 
125
  if(empty($formArray)){
126
+ return array("error"=>true,"message"=>esc_html__("Product sync profile not found.","enhanced-e-commerce-for-woocommerce-store"));
127
  }
128
  //$formArray = json_decode($postvalue->g_attribute_mapping, true);
129
  foreach ($fixed_att_select_list as $fixed_key) {
431
  <div class="modal-content">
432
  <div class="modal-body">
433
  <button type="button" class="btn-close tvc-popup-close" data-bs-dismiss="modal" aria-label="Close"> &times; </button>
434
+ <h5><?php esc_html_e("Map your product attributes","enhanced-e-commerce-for-woocommerce-store"); ?></h5>
435
+ <p><?php esc_html_e("Google Merchant Center uses attributes to format your product information for Shopping Ads. Map your product attributes to the Merchant Center product attributes below. You can also edit each product’s individual attributes after you sync your products. Not all fields below are marked required, however based on your shop's categories and your country you might map a few optional attributes as well. See the full guide","enhanced-e-commerce-for-woocommerce-store"); ?> <a target="_blank" href="<?php esc_url_raw("https://support.google.com/merchants/answer/7052112"); ?>"><?php esc_html_e("here","enhanced-e-commerce-for-woocommerce-store"); ?></a>.
436
  </p>
437
  <div class="wizard-section campaign-wizard">
438
  <div class="wizard-content">
439
  <input type="hidden" name="merchant_id" id="merchant_id" value="<?php echo esc_attr($this->merchantId); ?>">
440
  <form class="tab-wizard wizard- wizard" id="productSync" method="POST">
441
+ <h5><span class="wiz-title"><?php esc_html_e("Category Mapping","enhanced-e-commerce-for-woocommerce-store"); ?></span></h5>
442
  <section>
443
  <div class="card-wrapper">
444
  <div class="row">
445
  <div class="col-6">
446
+ <h6 class="heading-tbl"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/woocommerce.svg'); ?>" alt="WooCommerce"/><?php esc_html_e("Commerce Category","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
447
  </div>
448
  <div class="col-6">
449
+ <h6 class="heading-tbl gmc-image-heading"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/google-shopping.svg'); ?>" alt="google-shopping"/><?php esc_html_e("Google Merchant Center Category","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
450
  </div>
451
  </div><?php echo $this->category_wrapper_obj->category_table_content('mapping'); ?>
452
  </div>
453
  </section>
454
  <!-- Step 2 -->
455
+ <h5><span class="wiz-title"><?php esc_html_e("Product Attribution Mapping","enhanced-e-commerce-for-woocommerce-store"); ?></span></h5>
456
  <section>
457
  <div class="card-wrapper">
458
  <div class="row">
459
  <div class="col-6">
460
+ <h6 class="heading-tbl gmc-image-heading"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/google-shopping.svg'); ?>" alt="google-shopping"/><?php esc_html_e("Google Merchant center product attributes","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
461
  </div>
462
  <div class="col-6">
463
+ <h6 class="heading-tbl"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/woocommerce.svg'); ?>" alt="WooCommerce"/><?php esc_html_e("Commerce product attributes","enhanced-e-commerce-for-woocommerce-store"); ?></h6>
464
  </div>
465
  </div>
466
  <?php
490
  }else if($attribute["field"]=='shipping'){
491
  //$name, $class_id, string $label=null, $sel_val = null, bool $require = false
492
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?$ee_mapped_attrs[$attribute["field"]]:$sel_val_def;
493
+ echo $this->TVC_Admin_Helper->tvc_text($attribute["field"], 'number', '', esc_html__('Add shipping flat rate','enhanced-e-commerce-for-woocommerce-store'), $sel_val, $require);
494
  }else if($attribute["field"]=='tax'){
495
  //$name, $class_id, string $label=null, $sel_val = null, bool $require = false
496
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?esc_attr($ee_mapped_attrs[$attribute["field"]]):esc_attr($sel_val_def);
497
  echo $this->TVC_Admin_Helper->tvc_text($attribute["field"], 'number', '', 'Add TAX flat (%)', $sel_val, $require);
498
  }else if($attribute["field"]=='content_language'){
499
+ echo $this->TVC_Admin_Helper->tvc_language_select($attribute["field"], 'content_language', esc_html__('Please Select Attribute','enhanced-e-commerce-for-woocommerce-store'), 'en',$require);
500
  }else if($attribute["field"]=='target_country'){
501
  //$name, $class_id, bool $require = false
502
+ echo $this->TVC_Admin_Helper->tvc_countries_select($attribute["field"], 'target_country', esc_html__('Please Select Attribute','enhanced-e-commerce-for-woocommerce-store'), $require);
503
  }else{
504
  if(isset($attribute['fixed_options']) && $attribute['fixed_options'] !=""){
505
  $tvc_select_option_t = explode(",", $attribute['fixed_options']);
508
  $tvc_select_option[]['field'] = esc_attr($o_val);
509
  }
510
  $sel_val = $sel_val_def;
511
+ $this->TVC_Admin_Helper->tvc_select($attribute["field"],$attribute["field"],esc_html__('Please Select Attribute','enhanced-e-commerce-for-woocommerce-store'), $sel_val, $require, $tvc_select_option);
512
  }else{
513
  $sel_val = (isset($ee_mapped_attrs[$attribute["field"]]))?$ee_mapped_attrs[$attribute["field"]]:$sel_val_def;
514
  //$name, $class_id, $label="Please Select", $sel_val, $require, $option_list
515
+ $this->TVC_Admin_Helper->tvc_select($attribute["field"],$attribute["field"],esc_html__('Please Select Attribute','enhanced-e-commerce-for-woocommerce-store'), $sel_val, $require, $tvc_select_option);
516
  }
517
  }
518
  echo '</div>
543
  </div>
544
  </div>
545
  <div class="progress-bar-wapper">
546
+ <span class="tvc-sync-message"><?php esc_html_e("Initializing...","enhanced-e-commerce-for-woocommerce-store"); ?></span>
547
  <div class="progress tvc-sync-progress-db">
548
  <div class="progress-bar progress-bar-striped progress-bar-animated tvc-sync-progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">0%</div>
549
  </div>
includes/setup/google-ads.php CHANGED
@@ -64,7 +64,7 @@ class GoogleAds {
64
  $googleDetail['setting'] = $googleDetail_setting;
65
  $this->TVC_Admin_Helper->set_ee_options_data($googleDetail);
66
  $class = 'alert-message tvc-alert-success';
67
- $message = esc_html__("Your tracking options have been saved.","conversios");
68
  }
69
 
70
  $googleDetail = [];
@@ -87,12 +87,12 @@ class GoogleAds {
87
  <div class="google-account-analytics">
88
  <div class="row mb-3">
89
  <div class="col-6 col-md-6 col-lg-6">
90
- <h2 class="ga-title"><?php esc_html_e("Connected Google Ads account:","conversios"); ?></h2>
91
  </div>
92
  <div class="col-6 col-md-6 col-lg-6 text-right">
93
  <div class="acc-num">
94
  <p class="ga-text">
95
- <?php echo (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') ? esc_attr($googleDetail->google_ads_id) :'<span>'. esc_html__('Get started','conversios').'</span>'; ?>
96
  </p>
97
  <?php
98
  if (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') {
@@ -106,12 +106,12 @@ class GoogleAds {
106
  </div>
107
  <div class="row mb-3">
108
  <div class="col-6 col-md-6 col-lg-6">
109
- <h2 class="ga-title"><?php esc_html_e("Linked Google Analytics Account:","conversios"); ?></h2>
110
  </div>
111
  <div class="col-6 col-md-6 col-lg-6 text-right">
112
  <div class="acc-num">
113
  <p class="ga-text">
114
- <?php echo isset($googleDetail->property_id) && $googleDetail->property_id != '' ? esc_attr($googleDetail->property_id) : '<span>'. esc_html__('Get started','conversios').'</span>';?>
115
  </p>
116
  <?php
117
  if(isset($googleDetail->property_id) && $googleDetail->property_id != ''){
@@ -124,11 +124,11 @@ class GoogleAds {
124
  </div>
125
  <div class="row mb-3">
126
  <div class="col-6 col-md-6 col-lg-6">
127
- <h2 class="ga-title"><?php esc_html_e("Linked Google Merchant Center Account:","conversios"); ?></h2>
128
  </div>
129
  <div class="col-6 col-md-6 col-lg-6 text-right">
130
  <div class="acc-num">
131
- <p class="ga-text"><?php echo isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id != '' ? esc_attr($googleDetail->google_merchant_center_id) :'<span>'. esc_html__('Get started','conversios').'</span>'; ?>
132
  </p>
133
  <?php
134
  if (isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id != '') {
@@ -146,7 +146,7 @@ class GoogleAds {
146
  <div class="form-group">
147
  <div class="tvc-custom-control tvc-custom-checkbox">
148
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck1" name="remarketing_tags" value="1" <?php echo (esc_attr($googleDetail->remarketing_tags) == 1) ? 'checked="checked"' : ''; ?> >
149
- <label class="custom-control-label" for="customCheck1"><?php esc_html_e("Enable remarketing tags","conversios"); ?></label>
150
  </div>
151
  </div>
152
  </div>
@@ -154,7 +154,7 @@ class GoogleAds {
154
  <div class="form-group">
155
  <div class="tvc-custom-control tvc-custom-checkbox">
156
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck2" name="dynamic_remarketing_tags" value="1" <?php echo (esc_attr($googleDetail->dynamic_remarketing_tags) == 1) ? 'checked="checked"' : ''; ?>>
157
- <label class="custom-control-label" for="customCheck2"><?php esc_html_e("Enable dynamic remarketing tags","conversios"); ?></label>
158
  </div>
159
  </div>
160
  </div>
@@ -162,20 +162,20 @@ class GoogleAds {
162
  <div class="form-group">
163
  <div class="tvc-custom-control tvc-custom-checkbox">
164
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck3" name="link_google_analytics_with_google_ads" value="1" <?php echo (esc_attr($googleDetail->link_google_analytics_with_google_ads) == 1) ? 'checked="checked"' : ''; ?> >
165
- <label class="custom-control-label" for="customCheck3"><?php esc_html_e("Link Google analytics with google ads","conversios"); ?></label>
166
  </div>
167
  </div>
168
  </div>
169
  </div>
170
  <?php
171
  }else{ ?>
172
- <h2 class="ga-title"><?php esc_html_e("Connect Google Ads account to enable below features.","conversios"); ?></h2>
173
  <br>
174
  <ul>
175
- <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable remarketing tags","conversios"); ?></li>
176
- <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable dynamic remarketing tags","conversios"); ?></li>
177
- <!--<li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable Google Ads conversion tracking","conversios"); ?><span class="tvc-pro"> (PRO)</span></li>-->
178
- <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Link Google analytics with google ads","conversios"); ?></li>
179
  </ul>
180
  <?php
181
  } ?>
@@ -185,7 +185,7 @@ class GoogleAds {
185
  <div class="form-group">
186
  <div class="tvc-custom-control tvc-custom-checkbox">
187
  <input type="checkbox" class="tvc-custom-control-input" id="google_ads_conversion_tracking" class="google_ads_conversion_tracking" name="google_ads_conversion_tracking" value="1" <?php echo (esc_attr($googleDetail->google_ads_conversion_tracking) == 1) ? 'checked="checked"' : ''; ?>>
188
- <label for="google_ads_conversion_tracking"><?php esc_html_e("Enable Google Ads conversion tracking","conversios"); ?></label>
189
  </div>
190
  </div>
191
  </div>
@@ -195,7 +195,7 @@ class GoogleAds {
195
  <div class="form-group">
196
  <div class="tvc-custom-control tvc-custom-checkbox">
197
  <input type="checkbox" class="tvc-custom-control-input" id="ga_EC" name="ga_EC" value="1"<?php if(!empty($ga_EC)){ echo (esc_attr($ga_EC) == 1) ? 'checked="checked"' : '';}?> <?php if($googleDetail->google_ads_conversion_tracking!=1){ echo 'disabled'; } ?>>
198
- <label for="ga_EC"><?php esc_html_e("Enable Google Ads Enhanced Conversion tracking","conversios"); ?>
199
  </label>
200
  </div>
201
  </div>
@@ -237,10 +237,10 @@ class GoogleAds {
237
  <?php }else{?>
238
  <div class="row">
239
  <div class="col-md-12">
240
- <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" class="config-success"><?php esc_html_e("Enable Google Ads conversion tracking","conversios"); ?><span class="tvc-pro"> (PRO)</span>
241
  </div>
242
  <div class="col-md-12">
243
- <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" class="config-success"><?php esc_html_e("Enable Google Ads Enhanced conversion tracking","conversios"); ?><span class="tvc-pro"> (PRO)</span>
244
  </div>
245
  </div>
246
  <?php } ?>
@@ -248,7 +248,7 @@ class GoogleAds {
248
  <?php
249
  if (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') { ?>
250
  <div class="text-left">
251
- <button type="submit" id="google-add" class="btn btn-primary btn-success" name="google-add"><?php esc_html_e("Save","conversios"); ?></button>
252
  </div>
253
  <?php } ?>
254
  </form>
64
  $googleDetail['setting'] = $googleDetail_setting;
65
  $this->TVC_Admin_Helper->set_ee_options_data($googleDetail);
66
  $class = 'alert-message tvc-alert-success';
67
+ $message = esc_html__("Your tracking options have been saved.","enhanced-e-commerce-for-woocommerce-store");
68
  }
69
 
70
  $googleDetail = [];
87
  <div class="google-account-analytics">
88
  <div class="row mb-3">
89
  <div class="col-6 col-md-6 col-lg-6">
90
+ <h2 class="ga-title"><?php esc_html_e("Connected Google Ads account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
91
  </div>
92
  <div class="col-6 col-md-6 col-lg-6 text-right">
93
  <div class="acc-num">
94
  <p class="ga-text">
95
+ <?php echo (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') ? esc_attr($googleDetail->google_ads_id) :'<span>'. esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store').'</span>'; ?>
96
  </p>
97
  <?php
98
  if (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') {
106
  </div>
107
  <div class="row mb-3">
108
  <div class="col-6 col-md-6 col-lg-6">
109
+ <h2 class="ga-title"><?php esc_html_e("Linked Google Analytics Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
110
  </div>
111
  <div class="col-6 col-md-6 col-lg-6 text-right">
112
  <div class="acc-num">
113
  <p class="ga-text">
114
+ <?php echo isset($googleDetail->property_id) && $googleDetail->property_id != '' ? esc_attr($googleDetail->property_id) : '<span>'. esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store').'</span>';?>
115
  </p>
116
  <?php
117
  if(isset($googleDetail->property_id) && $googleDetail->property_id != ''){
124
  </div>
125
  <div class="row mb-3">
126
  <div class="col-6 col-md-6 col-lg-6">
127
+ <h2 class="ga-title"><?php esc_html_e("Linked Google Merchant Center Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
128
  </div>
129
  <div class="col-6 col-md-6 col-lg-6 text-right">
130
  <div class="acc-num">
131
+ <p class="ga-text"><?php echo isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id != '' ? esc_attr($googleDetail->google_merchant_center_id) :'<span>'. esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store').'</span>'; ?>
132
  </p>
133
  <?php
134
  if (isset($googleDetail->google_merchant_center_id) && $googleDetail->google_merchant_center_id != '') {
146
  <div class="form-group">
147
  <div class="tvc-custom-control tvc-custom-checkbox">
148
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck1" name="remarketing_tags" value="1" <?php echo (esc_attr($googleDetail->remarketing_tags) == 1) ? 'checked="checked"' : ''; ?> >
149
+ <label class="custom-control-label" for="customCheck1"><?php esc_html_e("Enable remarketing tags","enhanced-e-commerce-for-woocommerce-store"); ?></label>
150
  </div>
151
  </div>
152
  </div>
154
  <div class="form-group">
155
  <div class="tvc-custom-control tvc-custom-checkbox">
156
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck2" name="dynamic_remarketing_tags" value="1" <?php echo (esc_attr($googleDetail->dynamic_remarketing_tags) == 1) ? 'checked="checked"' : ''; ?>>
157
+ <label class="custom-control-label" for="customCheck2"><?php esc_html_e("Enable dynamic remarketing tags","enhanced-e-commerce-for-woocommerce-store"); ?></label>
158
  </div>
159
  </div>
160
  </div>
162
  <div class="form-group">
163
  <div class="tvc-custom-control tvc-custom-checkbox">
164
  <input type="checkbox" class="tvc-custom-control-input" id="customCheck3" name="link_google_analytics_with_google_ads" value="1" <?php echo (esc_attr($googleDetail->link_google_analytics_with_google_ads) == 1) ? 'checked="checked"' : ''; ?> >
165
+ <label class="custom-control-label" for="customCheck3"><?php esc_html_e("Link Google analytics with google ads","enhanced-e-commerce-for-woocommerce-store"); ?></label>
166
  </div>
167
  </div>
168
  </div>
169
  </div>
170
  <?php
171
  }else{ ?>
172
+ <h2 class="ga-title"><?php esc_html_e("Connect Google Ads account to enable below features.","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
173
  <br>
174
  <ul>
175
+ <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable remarketing tags","enhanced-e-commerce-for-woocommerce-store"); ?></li>
176
+ <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable dynamic remarketing tags","enhanced-e-commerce-for-woocommerce-store"); ?></li>
177
+ <!--<li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Enable Google Ads conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span></li>-->
178
+ <li><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/config-success.svg'); ?>" alt="configuration success" class="config-success"><?php esc_html_e("Link Google analytics with google ads","enhanced-e-commerce-for-woocommerce-store"); ?></li>
179
  </ul>
180
  <?php
181
  } ?>
185
  <div class="form-group">
186
  <div class="tvc-custom-control tvc-custom-checkbox">
187
  <input type="checkbox" class="tvc-custom-control-input" id="google_ads_conversion_tracking" class="google_ads_conversion_tracking" name="google_ads_conversion_tracking" value="1" <?php echo (esc_attr($googleDetail->google_ads_conversion_tracking) == 1) ? 'checked="checked"' : ''; ?>>
188
+ <label for="google_ads_conversion_tracking"><?php esc_html_e("Enable Google Ads conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?></label>
189
  </div>
190
  </div>
191
  </div>
195
  <div class="form-group">
196
  <div class="tvc-custom-control tvc-custom-checkbox">
197
  <input type="checkbox" class="tvc-custom-control-input" id="ga_EC" name="ga_EC" value="1"<?php if(!empty($ga_EC)){ echo (esc_attr($ga_EC) == 1) ? 'checked="checked"' : '';}?> <?php if($googleDetail->google_ads_conversion_tracking!=1){ echo 'disabled'; } ?>>
198
+ <label for="ga_EC"><?php esc_html_e("Enable Google Ads Enhanced Conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?>
199
  </label>
200
  </div>
201
  </div>
237
  <?php }else{?>
238
  <div class="row">
239
  <div class="col-md-12">
240
+ <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" class="config-success"><?php esc_html_e("Enable Google Ads conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span>
241
  </div>
242
  <div class="col-md-12">
243
+ <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" class="config-success"><?php esc_html_e("Enable Google Ads Enhanced conversion tracking","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span>
244
  </div>
245
  </div>
246
  <?php } ?>
248
  <?php
249
  if (isset($googleDetail->google_ads_id) && $googleDetail->google_ads_id != '') { ?>
250
  <div class="text-left">
251
+ <button type="submit" id="google-add" class="btn btn-primary btn-success" name="google-add"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
252
  </div>
253
  <?php } ?>
254
  </form>
includes/setup/google-shopping-feed-gaa-config.php CHANGED
@@ -28,7 +28,7 @@ class GAAConfiguration {
28
  public function create_form() {
29
  if(isset($_GET['welcome_msg']) && sanitize_textarea_field($_GET['welcome_msg']) == true){
30
  $class = 'notice notice-success';
31
- $message = esc_html__("Get your WooCommerce products in front of the millions of shoppers across Google by setting up your Google Merchant Center account from below.","conversios");
32
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
33
  ?>
34
  <script>
@@ -64,11 +64,11 @@ class GAAConfiguration {
64
  <div class="google-account-analytics" id="gaa-config">
65
  <div class="row mb-3">
66
  <div class="col-6 col-md-6 col-lg-6">
67
- <h2 class="ga-title"><?php esc_html_e("Connected Google Merchant center account:","conversios"); ?></h2>
68
  </div>
69
  <div class="col-6 col-md-6 col-lg-6 text-right">
70
  <div class="acc-num">
71
- <p class="ga-text"><?php echo ((isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != '') ? esc_attr($googleDetail->google_merchant_center_id) : '<span>'.esc_html__('Get started','conversios').'</span>'); ?></p>
72
  <?php
73
  if(isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != ''){
74
  echo '<p class="ga-text text-right"><a href="' . esc_url_raw($this->url) . '" class="text-underline" id="connect_google_merchant_center_account"><img src="'.esc_url_raw( ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg').'" alt="refresh"/></a></p>';
@@ -80,11 +80,11 @@ class GAAConfiguration {
80
  </div>
81
  <div class="row mb-3">
82
  <div class="col-6 col-md-6 col-lg-6">
83
- <h2 class="ga-title"><?php esc_html_e("Linked Google Ads Account:","conversios"); ?></h2>
84
  </div>
85
  <div class="col-6 col-md-6 col-lg-6 text-right">
86
  <div class="acc-num">
87
- <p class="ga-text"><?php echo (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != '' ? esc_attr($googleDetail->google_ads_id) : '<span>'.esc_html__('Get started','conversios').'</span>');?></p>
88
  <?php
89
  if (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != '') {
90
  echo '<p class="ga-text text-right"><a href="' . esc_url_raw($this->url) . '" class="text-underline" id="linked_google_ads_account"><img src="'. esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg').'" alt="refresh"/></a></p>';
@@ -98,35 +98,35 @@ class GAAConfiguration {
98
  if (isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != '') {?>
99
  <div class="row mb-3">
100
  <div class="col-6 col-md-6">
101
- <h2 class="ga-title"><?php esc_html_e("Sync Products:","conversios"); ?></h2>
102
  </div>
103
  <div class="col-6 col-md-6">
104
- <button id="tvc_btn_product_sync" type="button" class="btn btn-primary btn-success" data-bs-toggle="modal" data-bs-target="#syncProduct"><?php esc_html_e("Sync New Products","conversios"); ?></button>
105
  </div>
106
  </div>
107
  <div class="row mb-3">
108
  <div class="col-6 col-md-6">
109
- <h2 class="ga-title"><?php esc_html_e("Smart Shopping Campaigns:","conversios"); ?></h2>
110
  </div>
111
  <div class="col-6 col-md-6">
112
- <a href="admin.php?page=conversios-google-shopping-feed&tab=add_campaign_page" class="btn btn-primary btn-success" id="shopping_campaign"><?php esc_html_e("Create Smart Shopping Campaign","conversios"); ?></a>
113
  </div>
114
  </div>
115
  <?php }else{ ?>
116
  <div class="row mb-3">
117
  <div class="col-6 col-md-6">
118
- <h2 class="ga-title"><?php esc_html_e("Sync Products:","conversios"); ?></h2>
119
  </div>
120
  <div class="col-6 col-md-6">
121
- <a href="<?php echo esc_url_raw($this->url); ?>" class="btn btn-primary btn-success"><?php esc_html_e("Sync New Products","conversios"); ?></a>
122
  </div>
123
  </div>
124
  <div class="row mb-3">
125
  <div class="col-6 col-md-6">
126
- <h2 class="ga-title"><?php esc_html_e("Smart Shopping Campaigns:","conversios"); ?></h2>
127
  </div>
128
  <div class="col-6 col-md-6">
129
- <a href="<?php echo esc_url_raw($this->url); ?>" class="btn btn-primary btn-success " id="shopping_campaign"><?php esc_html_e("Create Smart Shopping Campaign","conversios"); ?></a>
130
  </div>
131
  </div>
132
  <?php } ?>
@@ -134,9 +134,9 @@ class GAAConfiguration {
134
  <form method="post" class="tvc-auto-product-sync-form">
135
  <div class="row mb-3">
136
  <div class="col-6 col-md-6 col-lg-6">
137
- <h2 class="ga-title"><?php esc_html_e("Select time interval for product sync","conversios"); ?>
138
  <div class="tvc-tooltip tvc-product-sync-toolip">
139
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This will periodically sync your products in the google merchant center as it is important to keep your store products updated in the merchant center if you are running shopping ads. By default the products will get sync after every 25 days.","conversios"); ?></span>
140
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
141
  </div>
142
  <span class="tvc-pro">: (PRO)</span></h2>
@@ -151,9 +151,9 @@ class GAAConfiguration {
151
  </div>
152
  <div class="row mb-3">
153
  <div class="col-6 col-md-6 col-lg-6">
154
- <h2 class="ga-title"><?php esc_html_e("Select product sync batch size","conversios"); ?>
155
  <div class="tvc-tooltip tvc-product-sync-toolip">
156
- <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("The product sync will happen based on the batch size you select. By default the batch size is 50 products per batch. This should be set up based on your server configuration in order to manage your site performance.","conversios"); ?></span>
157
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
158
  </div>
159
  <span class="tvc-pro">: (PRO)</span></h2>
@@ -171,14 +171,14 @@ class GAAConfiguration {
171
  </div>
172
  <div class="auto_product_sync_save_button mb-3">
173
  <div class="col-12 col-md-12 col-lg-12">
174
- <button type="submit" id="auto_product_sync_save" class="auto_product_sync_save btn btn-primary btn-success" name="auto_product_sync_setting_save"><?php esc_html_e("Save","conversios"); ?></button>
175
  </div>
176
  </div>
177
  </form>
178
  <?php }else{ ?>
179
  <div class="row">
180
  <div class="col-6 col-md-6 col-lg-6">
181
- <h2 class="ga-title"><?php esc_html_e("Select time interval for product sync:","conversios"); ?><span class="tvc-pro"> (PRO)</span></h2>
182
  </div>
183
  <div class="col-6 col-md-6 col-lg-6 mt-2">
184
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>">
@@ -186,7 +186,7 @@ class GAAConfiguration {
186
  </div>
187
  <div class="row ">
188
  <div class="col-6 col-md-6 col-lg-6">
189
- <h2 class="ga-title"><?php esc_html_e("Select product sync batch size:","conversios"); ?><span class="tvc-pro"> (PRO)</span></h2>
190
  </div>
191
  <div class="col-6 col-md-6 col-lg-6 mt-2">
192
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" >
28
  public function create_form() {
29
  if(isset($_GET['welcome_msg']) && sanitize_textarea_field($_GET['welcome_msg']) == true){
30
  $class = 'notice notice-success';
31
+ $message = esc_html__("Get your WooCommerce products in front of the millions of shoppers across Google by setting up your Google Merchant Center account from below.","enhanced-e-commerce-for-woocommerce-store");
32
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
33
  ?>
34
  <script>
64
  <div class="google-account-analytics" id="gaa-config">
65
  <div class="row mb-3">
66
  <div class="col-6 col-md-6 col-lg-6">
67
+ <h2 class="ga-title"><?php esc_html_e("Connected Google Merchant center account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
68
  </div>
69
  <div class="col-6 col-md-6 col-lg-6 text-right">
70
  <div class="acc-num">
71
+ <p class="ga-text"><?php echo ((isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != '') ? esc_attr($googleDetail->google_merchant_center_id) : '<span>'.esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store').'</span>'); ?></p>
72
  <?php
73
  if(isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != ''){
74
  echo '<p class="ga-text text-right"><a href="' . esc_url_raw($this->url) . '" class="text-underline" id="connect_google_merchant_center_account"><img src="'.esc_url_raw( ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg').'" alt="refresh"/></a></p>';
80
  </div>
81
  <div class="row mb-3">
82
  <div class="col-6 col-md-6 col-lg-6">
83
+ <h2 class="ga-title"><?php esc_html_e("Linked Google Ads Account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
84
  </div>
85
  <div class="col-6 col-md-6 col-lg-6 text-right">
86
  <div class="acc-num">
87
+ <p class="ga-text"><?php echo (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != '' ? esc_attr($googleDetail->google_ads_id) : '<span>'.esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store').'</span>');?></p>
88
  <?php
89
  if (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != '') {
90
  echo '<p class="ga-text text-right"><a href="' . esc_url_raw($this->url) . '" class="text-underline" id="linked_google_ads_account"><img src="'. esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/refresh.svg').'" alt="refresh"/></a></p>';
98
  if (isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != '') {?>
99
  <div class="row mb-3">
100
  <div class="col-6 col-md-6">
101
+ <h2 class="ga-title"><?php esc_html_e("Sync Products:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
102
  </div>
103
  <div class="col-6 col-md-6">
104
+ <button id="tvc_btn_product_sync" type="button" class="btn btn-primary btn-success" data-bs-toggle="modal" data-bs-target="#syncProduct"><?php esc_html_e("Sync New Products","enhanced-e-commerce-for-woocommerce-store"); ?></button>
105
  </div>
106
  </div>
107
  <div class="row mb-3">
108
  <div class="col-6 col-md-6">
109
+ <h2 class="ga-title"><?php esc_html_e("Smart Shopping Campaigns:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
110
  </div>
111
  <div class="col-6 col-md-6">
112
+ <a href="admin.php?page=conversios-google-shopping-feed&tab=add_campaign_page" class="btn btn-primary btn-success" id="shopping_campaign"><?php esc_html_e("Create Smart Shopping Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></a>
113
  </div>
114
  </div>
115
  <?php }else{ ?>
116
  <div class="row mb-3">
117
  <div class="col-6 col-md-6">
118
+ <h2 class="ga-title"><?php esc_html_e("Sync Products:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
119
  </div>
120
  <div class="col-6 col-md-6">
121
+ <a href="<?php echo esc_url_raw($this->url); ?>" class="btn btn-primary btn-success"><?php esc_html_e("Sync New Products","enhanced-e-commerce-for-woocommerce-store"); ?></a>
122
  </div>
123
  </div>
124
  <div class="row mb-3">
125
  <div class="col-6 col-md-6">
126
+ <h2 class="ga-title"><?php esc_html_e("Smart Shopping Campaigns:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
127
  </div>
128
  <div class="col-6 col-md-6">
129
+ <a href="<?php echo esc_url_raw($this->url); ?>" class="btn btn-primary btn-success " id="shopping_campaign"><?php esc_html_e("Create Smart Shopping Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></a>
130
  </div>
131
  </div>
132
  <?php } ?>
134
  <form method="post" class="tvc-auto-product-sync-form">
135
  <div class="row mb-3">
136
  <div class="col-6 col-md-6 col-lg-6">
137
+ <h2 class="ga-title"><?php esc_html_e("Select time interval for product sync","enhanced-e-commerce-for-woocommerce-store"); ?>
138
  <div class="tvc-tooltip tvc-product-sync-toolip">
139
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("This will periodically sync your products in the google merchant center as it is important to keep your store products updated in the merchant center if you are running shopping ads. By default the products will get sync after every 25 days.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
140
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
141
  </div>
142
  <span class="tvc-pro">: (PRO)</span></h2>
151
  </div>
152
  <div class="row mb-3">
153
  <div class="col-6 col-md-6 col-lg-6">
154
+ <h2 class="ga-title"><?php esc_html_e("Select product sync batch size","enhanced-e-commerce-for-woocommerce-store"); ?>
155
  <div class="tvc-tooltip tvc-product-sync-toolip">
156
+ <span class="tvc-tooltiptext tvc-tooltip-right"><?php esc_html_e("The product sync will happen based on the batch size you select. By default the batch size is 50 products per batch. This should be set up based on your server configuration in order to manage your site performance.","enhanced-e-commerce-for-woocommerce-store"); ?></span>
157
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/informationI.svg"); ?>" alt=""/>
158
  </div>
159
  <span class="tvc-pro">: (PRO)</span></h2>
171
  </div>
172
  <div class="auto_product_sync_save_button mb-3">
173
  <div class="col-12 col-md-12 col-lg-12">
174
+ <button type="submit" id="auto_product_sync_save" class="auto_product_sync_save btn btn-primary btn-success" name="auto_product_sync_setting_save"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
175
  </div>
176
  </div>
177
  </form>
178
  <?php }else{ ?>
179
  <div class="row">
180
  <div class="col-6 col-md-6 col-lg-6">
181
+ <h2 class="ga-title"><?php esc_html_e("Select time interval for product sync:","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span></h2>
182
  </div>
183
  <div class="col-6 col-md-6 col-lg-6 mt-2">
184
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>">
186
  </div>
187
  <div class="row ">
188
  <div class="col-6 col-md-6 col-lg-6">
189
+ <h2 class="ga-title"><?php esc_html_e("Select product sync batch size:","enhanced-e-commerce-for-woocommerce-store"); ?><span class="tvc-pro"> (PRO)</span></h2>
190
  </div>
191
  <div class="col-6 col-md-6 col-lg-6 mt-2">
192
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/lock-orange.png'); ?>" >
includes/setup/google-shopping-feed-shopping-campaigns.php CHANGED
@@ -73,12 +73,12 @@ class CampaignsConfiguration
73
  $campaigns_list_res = $api_old_obj->getCampaigns();
74
  if(isset($campaigns_list_res->errors) || isset($campaigns_list_res->errors[423])){
75
  $class = 'tvc-alert-error';
76
- $message = esc_html__("If Data is not generated please make sure your Google Ads account should link with our MCC account.","conversios");
77
  }
78
 
79
  if (isset($campaigns_list_res->errors) && !empty($campaigns_list_res->errors) && $message == "") {
80
  $class = 'tvc-alert-error';
81
- $message = esc_html__("Not any campaigns found.","conversios");
82
  } else if(isset($campaigns_list_res->data)){
83
  $campaigns_list_res = $campaigns_list_res->data;
84
  if ($campaigns_list_res['status'] == 200) {
@@ -196,18 +196,18 @@ class CampaignsConfiguration
196
  <input type="hidden" id="customRange2" name="customRadio" value="2" class="custom-control-input" checked="checked">
197
  <div class="campaigns">
198
  <div class="d-flex justify-content-between align-items-center">
199
- <h3 class="title mb-0"><?php esc_html_e("Smart Shopping Campaigns","conversios"); ?></h3>
200
  <div class="campaing-date">
201
  <div class="input-group input-daterange">
202
  <input type="text" class="form-control" id="from_date" name="from_date" value="<?php echo esc_attr($this->from_date); ?>">
203
  <div class="input-group-addon text px-3">to</div>
204
  <input type="text" class="form-control" id="to_date" name="to_date" value="<?php echo esc_attr($this->to_date); ?>">
205
- <label class="mt-2 mb-2 error-msg float-left hidden" id="errorMessage"><?php esc_html_e("Please select both from and to date","conversios"); ?></label>
206
  </div>
207
  </div>
208
  <div class="create-campaign-btn">
209
- <button type="button" class="btn btn-outline-primary" onclick="validateAll()" id="select_range" name="select_range"><?php esc_html_e("Submit","conversios"); ?></button>
210
- <a href="<?php echo esc_url_raw($this->site_url.'add_campaign_page');?>" class="btn btn-outline-primary" id="create_a_new_campaign"><?php esc_html_e("Create a New Campaign","conversios"); ?></a>
211
  </div>
212
  </div>
213
  </div>
@@ -215,29 +215,29 @@ class CampaignsConfiguration
215
  <div class="account-performance">
216
  <div class="row">
217
  <div class="col-md-12">
218
- <h3 class="title"><?php esc_html_e("Account Performance","conversios"); ?></h3>
219
  </div>
220
  <div class="col-md-6 col-lg-3">
221
  <div class="chart">
222
- <h4 class="sub-title"><?php esc_html_e("Daily Clicks","conversios"); ?></h4>
223
  <canvas id="dailyClick" width="240" height="180"></canvas>
224
  </div>
225
  </div>
226
  <div class="col-md-6 col-lg-3">
227
  <div class="chart">
228
- <h4 class="sub-title"><?php esc_html_e("Daily Cost","conversios"); ?></h4>
229
  <canvas id="dailyCost" width="240" height="180"></canvas>
230
  </div>
231
  </div>
232
  <div class="col-md-6 col-lg-3">
233
  <div class="chart">
234
- <h4 class="sub-title"><?php esc_html_e("Daily Conversions","conversios"); ?></h4>
235
  <canvas id="dailyConversions" width="240" height="180"></canvas>
236
  </div>
237
  </div>
238
  <div class="col-md-6 col-lg-3">
239
  <div class="chart">
240
- <h4 class="sub-title"><?php esc_html_e("Daily Sales","conversios"); ?></h4>
241
  <canvas id="dailySales" width="240" height="180"></canvas>
242
  </div>
243
  </div>
@@ -247,19 +247,19 @@ class CampaignsConfiguration
247
  <div class="account-performance">
248
  <div class="row">
249
  <div class="col-lg-10">
250
- <h3 class="title"><?php esc_html_e("Campaign Performance","conversios"); ?></h3>
251
  <div class="table-section">
252
  <table id="campaingPerformance" class="table dt-responsive nowrap" style="width:100%">
253
  <thead>
254
  <tr>
255
- <th><?php esc_html_e("Campaign","conversios"); ?></th>
256
- <th width="100"><?php esc_html_e("Daily Budget","conversios"); ?></th>
257
- <th class="text-center"><?php esc_html_e("Active","conversios"); ?></th>
258
- <th class="text-center"><?php esc_html_e("Clicks","conversios"); ?></th>
259
- <th class="text-center"><?php esc_html_e("Cost","conversios"); ?></th>
260
- <th class="text-center"><?php esc_html_e("Conversions","conversios"); ?></th>
261
- <th class="text-center"><?php esc_html_e("Sales","conversios"); ?></th>
262
- <th class="text-center"><?php esc_html_e("Action","conversios"); ?></th>
263
  </tr>
264
  </thead>
265
  <tbody>
@@ -282,7 +282,7 @@ class CampaignsConfiguration
282
  <td class="text-center"><?php echo esc_attr(number_format($campaign_performance[$i]->conversions, 2)); ?></td>
283
  <td class="text-center"><?php echo esc_attr(number_format($campaign_performance[$i]->sales, 2)); ?></td>
284
  <input type="hidden" value="<?php echo esc_attr($campaign_performance[$i]->compaignName); ?>" id="campaign_name_<?php echo esc_attr($i); ?>" />
285
- <td><a href="<?php echo esc_url_raw($this->site_url.'add_campaign_page&edit='.$campaign_performance[$i]->compaignId); ?>"><?php esc_html_e("Edit","conversios"); ?></a> | <a href="#" onclick="deleteCampaign('<?php echo esc_attr($this->merchantId); ?>','<?php echo esc_attr($this->currentCustomerId); ?>','<?php echo esc_attr($campaign_performance[$i]->compaignId); ?>','<?php echo esc_attr($i); ?>')"><?php esc_html_e("Delete","conversios"); ?></a></td>
286
  </tr>
287
  <?php
288
  }
@@ -300,12 +300,12 @@ class CampaignsConfiguration
300
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/undraw_update_uxn2.svg'); ?>" alt=""/>
301
  </div>
302
  <div class="pro-content">
303
- <h3 class="userName"><?php esc_html_e("Hello","conversios"); ?> <?php echo esc_attr(get_bloginfo()); ?>!</h3>
304
- <p>Explore <a target="_blank" href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site()); ?>" class="font-weight-bold"><?php esc_html_e("Pro account","conversios"); ?></a> <?php esc_html_e("with Premium features.","conversios"); ?></p>
305
  </div>
306
  </div>
307
  <div class="card-footer">
308
- <a target="_blank" href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site().'pricings'); ?>"><button class="btn btn-primary"><?php esc_html_e("Learn more","conversios"); ?></button></a>
309
  </div>
310
  </div>
311
  </div>
@@ -318,17 +318,17 @@ class CampaignsConfiguration
318
  <div class="account-performance">
319
  <div class="row">
320
  <div class="col-lg-10">
321
- <h3 class="title"><?php esc_html_e("Product Performance :","conversios"); ?></h3>
322
  <div class="table-section">
323
  <table id="productPerformance" class="table dt-responsive nowrap" style="width:100%">
324
  <thead>
325
  <tr>
326
  <th></th>
327
- <th><?php esc_html_e("Product","conversios"); ?></th>
328
- <th class="text-center"><?php esc_html_e("Clicks","conversios"); ?></th>
329
- <th class="text-center"><?php esc_html_e("Cost","conversios"); ?></th>
330
- <th class="text-center"><?php esc_html_e("Conversions","conversios"); ?></th>
331
- <th class="text-center"><?php esc_html_e("Sales","conversios"); ?></th>
332
  </tr>
333
  </thead>
334
  <tbody>
@@ -351,18 +351,18 @@ class CampaignsConfiguration
351
  <div class="account-performance">
352
  <div class="row">
353
  <div class="col-lg-10">
354
- <h3 class="title"><?php esc_html_e("Product Partition Performance","conversios"); ?></h3>
355
  <div class="table-section">
356
  <table id="productPerformance" class="table dt-responsive nowrap" style="width:100%">
357
  <thead>
358
  <tr>
359
- <th><?php esc_html_e("Campaign","conversios"); ?></th>
360
- <th class="text-center"><?php esc_html_e("Product Dimension","conversios"); ?></th>
361
- <?php /*<th class="text-center"><?php esc_html_e("Product Dimension Value","conversios"); ?></th> */ ?>
362
- <th class="text-center"><?php esc_html_e("Clicks","conversios"); ?></th>
363
- <th class="text-center"><?php esc_html_e("Cost","conversios"); ?></th>
364
- <th class="text-center"><?php esc_html_e("Conversions","conversios"); ?></th>
365
- <th class="text-center"><?php esc_html_e("Sales","conversios"); ?></th>
366
  </tr>
367
  </thead>
368
  <tbody>
73
  $campaigns_list_res = $api_old_obj->getCampaigns();
74
  if(isset($campaigns_list_res->errors) || isset($campaigns_list_res->errors[423])){
75
  $class = 'tvc-alert-error';
76
+ $message = esc_html__("If Data is not generated please make sure your Google Ads account should link with our MCC account.","enhanced-e-commerce-for-woocommerce-store");
77
  }
78
 
79
  if (isset($campaigns_list_res->errors) && !empty($campaigns_list_res->errors) && $message == "") {
80
  $class = 'tvc-alert-error';
81
+ $message = esc_html__("Not any campaigns found.","enhanced-e-commerce-for-woocommerce-store");
82
  } else if(isset($campaigns_list_res->data)){
83
  $campaigns_list_res = $campaigns_list_res->data;
84
  if ($campaigns_list_res['status'] == 200) {
196
  <input type="hidden" id="customRange2" name="customRadio" value="2" class="custom-control-input" checked="checked">
197
  <div class="campaigns">
198
  <div class="d-flex justify-content-between align-items-center">
199
+ <h3 class="title mb-0"><?php esc_html_e("Smart Shopping Campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
200
  <div class="campaing-date">
201
  <div class="input-group input-daterange">
202
  <input type="text" class="form-control" id="from_date" name="from_date" value="<?php echo esc_attr($this->from_date); ?>">
203
  <div class="input-group-addon text px-3">to</div>
204
  <input type="text" class="form-control" id="to_date" name="to_date" value="<?php echo esc_attr($this->to_date); ?>">
205
+ <label class="mt-2 mb-2 error-msg float-left hidden" id="errorMessage"><?php esc_html_e("Please select both from and to date","enhanced-e-commerce-for-woocommerce-store"); ?></label>
206
  </div>
207
  </div>
208
  <div class="create-campaign-btn">
209
+ <button type="button" class="btn btn-outline-primary" onclick="validateAll()" id="select_range" name="select_range"><?php esc_html_e("Submit","enhanced-e-commerce-for-woocommerce-store"); ?></button>
210
+ <a href="<?php echo esc_url_raw($this->site_url.'add_campaign_page');?>" class="btn btn-outline-primary" id="create_a_new_campaign"><?php esc_html_e("Create a New Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></a>
211
  </div>
212
  </div>
213
  </div>
215
  <div class="account-performance">
216
  <div class="row">
217
  <div class="col-md-12">
218
+ <h3 class="title"><?php esc_html_e("Account Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
219
  </div>
220
  <div class="col-md-6 col-lg-3">
221
  <div class="chart">
222
+ <h4 class="sub-title"><?php esc_html_e("Daily Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
223
  <canvas id="dailyClick" width="240" height="180"></canvas>
224
  </div>
225
  </div>
226
  <div class="col-md-6 col-lg-3">
227
  <div class="chart">
228
+ <h4 class="sub-title"><?php esc_html_e("Daily Cost","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
229
  <canvas id="dailyCost" width="240" height="180"></canvas>
230
  </div>
231
  </div>
232
  <div class="col-md-6 col-lg-3">
233
  <div class="chart">
234
+ <h4 class="sub-title"><?php esc_html_e("Daily Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
235
  <canvas id="dailyConversions" width="240" height="180"></canvas>
236
  </div>
237
  </div>
238
  <div class="col-md-6 col-lg-3">
239
  <div class="chart">
240
+ <h4 class="sub-title"><?php esc_html_e("Daily Sales","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
241
  <canvas id="dailySales" width="240" height="180"></canvas>
242
  </div>
243
  </div>
247
  <div class="account-performance">
248
  <div class="row">
249
  <div class="col-lg-10">
250
+ <h3 class="title"><?php esc_html_e("Campaign Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
251
  <div class="table-section">
252
  <table id="campaingPerformance" class="table dt-responsive nowrap" style="width:100%">
253
  <thead>
254
  <tr>
255
+ <th><?php esc_html_e("Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></th>
256
+ <th width="100"><?php esc_html_e("Daily Budget","enhanced-e-commerce-for-woocommerce-store"); ?></th>
257
+ <th class="text-center"><?php esc_html_e("Active","enhanced-e-commerce-for-woocommerce-store"); ?></th>
258
+ <th class="text-center"><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></th>
259
+ <th class="text-center"><?php esc_html_e("Cost","enhanced-e-commerce-for-woocommerce-store"); ?></th>
260
+ <th class="text-center"><?php esc_html_e("Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
261
+ <th class="text-center"><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></th>
262
+ <th class="text-center"><?php esc_html_e("Action","enhanced-e-commerce-for-woocommerce-store"); ?></th>
263
  </tr>
264
  </thead>
265
  <tbody>
282
  <td class="text-center"><?php echo esc_attr(number_format($campaign_performance[$i]->conversions, 2)); ?></td>
283
  <td class="text-center"><?php echo esc_attr(number_format($campaign_performance[$i]->sales, 2)); ?></td>
284
  <input type="hidden" value="<?php echo esc_attr($campaign_performance[$i]->compaignName); ?>" id="campaign_name_<?php echo esc_attr($i); ?>" />
285
+ <td><a href="<?php echo esc_url_raw($this->site_url.'add_campaign_page&edit='.$campaign_performance[$i]->compaignId); ?>"><?php esc_html_e("Edit","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a href="#" onclick="deleteCampaign('<?php echo esc_attr($this->merchantId); ?>','<?php echo esc_attr($this->currentCustomerId); ?>','<?php echo esc_attr($campaign_performance[$i]->compaignId); ?>','<?php echo esc_attr($i); ?>')"><?php esc_html_e("Delete","enhanced-e-commerce-for-woocommerce-store"); ?></a></td>
286
  </tr>
287
  <?php
288
  }
300
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/undraw_update_uxn2.svg'); ?>" alt=""/>
301
  </div>
302
  <div class="pro-content">
303
+ <h3 class="userName"><?php esc_html_e("Hello","enhanced-e-commerce-for-woocommerce-store"); ?> <?php echo esc_attr(get_bloginfo()); ?>!</h3>
304
+ <p>Explore <a target="_blank" href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site()); ?>" class="font-weight-bold"><?php esc_html_e("Pro account","enhanced-e-commerce-for-woocommerce-store"); ?></a> <?php esc_html_e("with Premium features.","enhanced-e-commerce-for-woocommerce-store"); ?></p>
305
  </div>
306
  </div>
307
  <div class="card-footer">
308
+ <a target="_blank" href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_pro_plan_site().'pricings'); ?>"><button class="btn btn-primary"><?php esc_html_e("Learn more","enhanced-e-commerce-for-woocommerce-store"); ?></button></a>
309
  </div>
310
  </div>
311
  </div>
318
  <div class="account-performance">
319
  <div class="row">
320
  <div class="col-lg-10">
321
+ <h3 class="title"><?php esc_html_e("Product Performance :","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
322
  <div class="table-section">
323
  <table id="productPerformance" class="table dt-responsive nowrap" style="width:100%">
324
  <thead>
325
  <tr>
326
  <th></th>
327
+ <th><?php esc_html_e("Product","enhanced-e-commerce-for-woocommerce-store"); ?></th>
328
+ <th class="text-center"><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></th>
329
+ <th class="text-center"><?php esc_html_e("Cost","enhanced-e-commerce-for-woocommerce-store"); ?></th>
330
+ <th class="text-center"><?php esc_html_e("Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
331
+ <th class="text-center"><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></th>
332
  </tr>
333
  </thead>
334
  <tbody>
351
  <div class="account-performance">
352
  <div class="row">
353
  <div class="col-lg-10">
354
+ <h3 class="title"><?php esc_html_e("Product Partition Performance","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
355
  <div class="table-section">
356
  <table id="productPerformance" class="table dt-responsive nowrap" style="width:100%">
357
  <thead>
358
  <tr>
359
+ <th><?php esc_html_e("Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></th>
360
+ <th class="text-center"><?php esc_html_e("Product Dimension","enhanced-e-commerce-for-woocommerce-store"); ?></th>
361
+ <?php /*<th class="text-center"><?php esc_html_e("Product Dimension Value","enhanced-e-commerce-for-woocommerce-store"); ?></th> */ ?>
362
+ <th class="text-center"><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></th>
363
+ <th class="text-center"><?php esc_html_e("Cost","enhanced-e-commerce-for-woocommerce-store"); ?></th>
364
+ <th class="text-center"><?php esc_html_e("Conversions","enhanced-e-commerce-for-woocommerce-store"); ?></th>
365
+ <th class="text-center"><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></th>
366
  </tr>
367
  </thead>
368
  <tbody>
includes/setup/google-shopping-feed-sync-product.php CHANGED
@@ -30,13 +30,13 @@ public function create_form(){
30
  if(isset($_GET['welcome_msg']) && sanitize_text_field($_GET['welcome_msg']) == true){
31
  $this->TVC_Admin_Helper->call_domain_claim();
32
  $class = 'notice notice-success';
33
- $message = esc_html__("Everthing is now set up. One more step - Sync your WooCommerce products into your Merchant Center and reach out to millions of shopper across Google.","conversios");
34
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
35
  ?>
36
  <script>
37
  jQuery(document).ready(function() {
38
  var msg="<?php echo esc_attr($message);?>"
39
- tvc_helper.tvc_alert("success", "<?php esc_html_e("Congratulation..!","conversios"); ?>", msg, true);
40
  });
41
  </script>
42
  <?php
@@ -82,9 +82,9 @@ public function create_form(){
82
  <div class="tvc-api-sunc">
83
  <span>
84
  <?php if($last_api_sync_up){
85
- echo esc_html__("Merchant center products details last synced at ","conversios").esc_attr($last_api_sync_up);
86
  }else{
87
- echo esc_html__("Refresh sync up","conversios");
88
  }?>.</span><span id="products_count"></span><img id="refresh_api" onclick="call_tvc_api_sync_up();" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/refresh.png'); ?>">
89
  </div>
90
  <?php } ?>
@@ -95,8 +95,8 @@ public function create_form(){
95
  <div class="row">
96
  <div class="col-12">
97
  <div class="d-flex justify-content-between ">
98
- <p class="mb-0 align-self-center product-title"><?php esc_html_e("Products in your Merchant Center account","conversios"); ?></p>
99
- <button id="tvc_btn_product_sync" class="btn btn-outline-primary align-self-center" data-bs-toggle="modal" data-bs-target="#syncProduct"><?php esc_html_e("Sync New Products","conversios"); ?></button>
100
  </div>
101
  </div>
102
  </div>
@@ -111,34 +111,34 @@ public function create_form(){
111
  <div class="card">
112
  <h3 class="pro-count"><?php
113
  echo ($woo_product) ? esc_attr($woo_product) : "0"; ?></h3>
114
- <p class="pro-title"><?php esc_html_e("Total Products","conversios"); ?></p>
115
  </div>
116
  </div>
117
  <div class="col">
118
  <div class="card">
119
  <h3 class="pro-count"><?php
120
  echo esc_attr($sync_product_total) ; ?></h3>
121
- <p class="pro-title"><?php esc_html_e("Sync Products","conversios"); ?></p>
122
  </div>
123
  </div>
124
  <div class="col">
125
  <div class="card pending">
126
  <h3 class="pro-count">
127
  <?php echo esc_attr($sync_product_pending);?></h3>
128
- <p class="pro-title"><?php esc_html_e("Pending Review","conversios"); ?></p>
129
  </div>
130
  </div>
131
  <div class="col">
132
  <div class="card approved">
133
  <h3 class="pro-count"><?php echo esc_attr($sync_product_approved);?></h3>
134
- <p class="pro-title"><?php esc_html_e("Approved","conversios"); ?></p>
135
  </div>
136
  </div>
137
  <div class="col">
138
  <div class="card disapproved">
139
  <h3 class="pro-count"><?php
140
  echo esc_attr($sync_product_disapproved); ?></h3>
141
- <p class="pro-title"><?php esc_html_e("Disapproved","conversios"); ?></p>
142
  </div>
143
  </div>
144
  </div>
@@ -151,9 +151,9 @@ public function create_form(){
151
  <thead>
152
  <tr>
153
  <th></th>
154
- <th style="vertical-align: top;"><?php esc_html_e("Product","conversios"); ?></th>
155
- <th style="vertical-align: top;"><?php esc_html_e("Google status","conversios"); ?></th>
156
- <th style="vertical-align: top;"><?php esc_html_e("Issues","conversios"); ?></th>
157
  </tr>
158
  </thead>
159
  <tbody>
@@ -183,7 +183,7 @@ public function create_form(){
183
  <?php
184
  }
185
  }else{ ?>
186
- <tr><td colspan="4"><?php echo esc_html__("Record not found","conversios"); ?></td></tr>
187
  <?php
188
  } ?>
189
  </tbody>
@@ -241,7 +241,7 @@ function call_tvc_api_sync_up(){
241
  jQuery("#tvc_msg").remove();
242
  jQuery("#refresh_api").css("visibility","hidden");
243
  jQuery(tvs_this).after('<div class="tvc-nb-spinner" id="tvc-nb-spinner"></div>');
244
- tvc_helper.tvc_alert("error","<?php esc_html_e("Attention !","conversios"); ?>", "<?php esc_html_e("Sync up is in the process do not refresh the page. it may take few minutes, if GMC product sync count is large.","conversios"); ?>");
245
  ImportGMCProduct();
246
  }
247
  var total_import = 0;
30
  if(isset($_GET['welcome_msg']) && sanitize_text_field($_GET['welcome_msg']) == true){
31
  $this->TVC_Admin_Helper->call_domain_claim();
32
  $class = 'notice notice-success';
33
+ $message = esc_html__("Everthing is now set up. One more step - Sync your WooCommerce products into your Merchant Center and reach out to millions of shopper across Google.","enhanced-e-commerce-for-woocommerce-store");
34
  printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), esc_html($message));
35
  ?>
36
  <script>
37
  jQuery(document).ready(function() {
38
  var msg="<?php echo esc_attr($message);?>"
39
+ tvc_helper.tvc_alert("success", "<?php esc_html_e("Congratulation..!","enhanced-e-commerce-for-woocommerce-store"); ?>", msg, true);
40
  });
41
  </script>
42
  <?php
82
  <div class="tvc-api-sunc">
83
  <span>
84
  <?php if($last_api_sync_up){
85
+ echo esc_html__("Merchant center products details last synced at ","enhanced-e-commerce-for-woocommerce-store").esc_attr($last_api_sync_up);
86
  }else{
87
+ echo esc_html__("Refresh sync up","enhanced-e-commerce-for-woocommerce-store");
88
  }?>.</span><span id="products_count"></span><img id="refresh_api" onclick="call_tvc_api_sync_up();" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/refresh.png'); ?>">
89
  </div>
90
  <?php } ?>
95
  <div class="row">
96
  <div class="col-12">
97
  <div class="d-flex justify-content-between ">
98
+ <p class="mb-0 align-self-center product-title"><?php esc_html_e("Products in your Merchant Center account","enhanced-e-commerce-for-woocommerce-store"); ?></p>
99
+ <button id="tvc_btn_product_sync" class="btn btn-outline-primary align-self-center" data-bs-toggle="modal" data-bs-target="#syncProduct"><?php esc_html_e("Sync New Products","enhanced-e-commerce-for-woocommerce-store"); ?></button>
100
  </div>
101
  </div>
102
  </div>
111
  <div class="card">
112
  <h3 class="pro-count"><?php
113
  echo ($woo_product) ? esc_attr($woo_product) : "0"; ?></h3>
114
+ <p class="pro-title"><?php esc_html_e("Total Products","enhanced-e-commerce-for-woocommerce-store"); ?></p>
115
  </div>
116
  </div>
117
  <div class="col">
118
  <div class="card">
119
  <h3 class="pro-count"><?php
120
  echo esc_attr($sync_product_total) ; ?></h3>
121
+ <p class="pro-title"><?php esc_html_e("Sync Products","enhanced-e-commerce-for-woocommerce-store"); ?></p>
122
  </div>
123
  </div>
124
  <div class="col">
125
  <div class="card pending">
126
  <h3 class="pro-count">
127
  <?php echo esc_attr($sync_product_pending);?></h3>
128
+ <p class="pro-title"><?php esc_html_e("Pending Review","enhanced-e-commerce-for-woocommerce-store"); ?></p>
129
  </div>
130
  </div>
131
  <div class="col">
132
  <div class="card approved">
133
  <h3 class="pro-count"><?php echo esc_attr($sync_product_approved);?></h3>
134
+ <p class="pro-title"><?php esc_html_e("Approved","enhanced-e-commerce-for-woocommerce-store"); ?></p>
135
  </div>
136
  </div>
137
  <div class="col">
138
  <div class="card disapproved">
139
  <h3 class="pro-count"><?php
140
  echo esc_attr($sync_product_disapproved); ?></h3>
141
+ <p class="pro-title"><?php esc_html_e("Disapproved","enhanced-e-commerce-for-woocommerce-store"); ?></p>
142
  </div>
143
  </div>
144
  </div>
151
  <thead>
152
  <tr>
153
  <th></th>
154
+ <th style="vertical-align: top;"><?php esc_html_e("Product","enhanced-e-commerce-for-woocommerce-store"); ?></th>
155
+ <th style="vertical-align: top;"><?php esc_html_e("Google status","enhanced-e-commerce-for-woocommerce-store"); ?></th>
156
+ <th style="vertical-align: top;"><?php esc_html_e("Issues","enhanced-e-commerce-for-woocommerce-store"); ?></th>
157
  </tr>
158
  </thead>
159
  <tbody>
183
  <?php
184
  }
185
  }else{ ?>
186
+ <tr><td colspan="4"><?php echo esc_html__("Record not found","enhanced-e-commerce-for-woocommerce-store"); ?></td></tr>
187
  <?php
188
  } ?>
189
  </tbody>
241
  jQuery("#tvc_msg").remove();
242
  jQuery("#refresh_api").css("visibility","hidden");
243
  jQuery(tvs_this).after('<div class="tvc-nb-spinner" id="tvc-nb-spinner"></div>');
244
+ tvc_helper.tvc_alert("error","<?php esc_html_e("Attention !","enhanced-e-commerce-for-woocommerce-store"); ?>", "<?php esc_html_e("Sync up is in the process do not refresh the page. it may take few minutes, if GMC product sync count is large.","enhanced-e-commerce-for-woocommerce-store"); ?>");
245
  ImportGMCProduct();
246
  }
247
  var total_import = 0;
includes/setup/google-shopping-feed.php CHANGED
@@ -133,9 +133,9 @@ class GoogleShoppingFeed {
133
  <div class="tvc-api-sunc">
134
  <span>
135
  <?php if(esc_attr($last_api_sync_up)){
136
- echo esc_html__("Details last synced at ","conversios").esc_attr($last_api_sync_up);
137
  }else{
138
- echo esc_html__("Refresh sync up","conversios");
139
  }?></span><img id="refresh_api" onclick="call_tvc_api_sync_up();" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/refresh.png'); ?>">
140
  </div>
141
  <?php } ?>
@@ -151,9 +151,9 @@ class GoogleShoppingFeed {
151
  $next_sync = date($date_formate,strtotime($next_sync));
152
  ?>
153
  <div class="product-auto-sync-details">
154
- <strong><?php esc_html_e("Last auto product sync details","conversios"); ?></strong>
155
  <table>
156
- <tr><th><?php esc_html_e("Last sync","conversios"); ?></th><th><?php esc_html_e("Sync product","conversios"); ?></th><th><?php esc_html_e("Status","conversios"); ?></th><th><?php esc_html_e("Upcoming sync","conversios"); ?></th></tr>
157
  <tr>
158
  <td><?php echo esc_attr($create_sync);?></td>
159
  <td><?php echo (isset($last_auto_sync['total_sync_product']))?esc_attr($last_auto_sync['total_sync_product']):"";?></td>
@@ -170,7 +170,7 @@ class GoogleShoppingFeed {
170
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
171
  <div class="card configure-card">
172
  <div class="card-header">
173
- <h4 class="confg-title"><?php esc_html_e("Configuration","conversios"); ?></h4>
174
  </div>
175
  <div class="card-body">
176
  <ul class="list-unstyled"><?php
@@ -178,44 +178,44 @@ class GoogleShoppingFeed {
178
  $is_site_verified = (isset($googleDetail->is_site_verified))?esc_attr($googleDetail->is_site_verified):"";
179
  echo $this->configuration_list_html("Google merchant center",(isset($googleDetail->google_merchant_center_id))?esc_attr($googleDetail->google_merchant_center_id):"");
180
  if($is_site_verified ==1){
181
- echo $this->configuration_list_html(esc_html__("Site Verified","conversios"), esc_attr($is_site_verified));
182
  }else{
183
- echo $this->configuration_error_list_html(esc_html__("Site Verified","conversios"),esc_attr($is_site_verified),"call_site_verified", $googleDetail);
184
  }
185
  if($is_domain_claim ==1){
186
- echo $this->configuration_list_html(esc_html__("Domain claim","conversios"),esc_attr($is_domain_claim));
187
  }else{
188
- echo $this->configuration_error_list_html(esc_html__("Domain claim","conversios"),esc_attr($is_domain_claim), 'call_domain_claim', $googleDetail);
189
  }
190
- echo $this->configuration_list_html(esc_html__("Google Ads linking","conversios"),((isset($googleDetail->google_ads_id)))?esc_attr($googleDetail->google_ads_id):"");
191
  ?>
192
  </ul>
193
  </div>
194
  <div class="card-footer">
195
- <a href="<?php echo esc_url_raw($this->site_url.'gaa_config_page'); ?>" class="btn btn-primary" id="configuration"><?php esc_html_e("Edit","conversios"); ?></a>
196
  </div>
197
  </div>
198
  </div>
199
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
200
  <div class="card">
201
  <div class="card-header">
202
- <h4 class="confg-title"><?php esc_html_e("Product Sync","conversios"); ?></h4>
203
  </div>
204
  <div class="card-body">
205
  <ul class="list-unstyled">
206
  <?php
207
- echo $this->add_list_html(esc_html__("Active products in WooCommerce","conversios"), $totalActiveWooProduct)
208
- .$this->add_list_html(esc_html__("Total synced products in Merchant center","conversios"), $sync_product_total)
209
- .$this->add_list_html(esc_html__("Approved","conversios"), $sync_product_approved)
210
- .$this->add_list_html(esc_html__("Disapproved","conversios"), $sync_product_disapproved)
211
- .$this->add_list_html(esc_html__("Pending","conversios"), $sync_product_pending);
212
  ?>
213
  </ul>
214
  </div>
215
  <?php
216
  if (isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != "") {?>
217
  <div class="card-footer">
218
- <a href="<?php echo esc_url_raw($this->site_url.'sync_product_page'); ?>" class="btn btn-primary" id="product-sync"><?php esc_html_e("Edit","conversios"); ?></a>
219
  </div>
220
  <?php } ?>
221
  </div>
@@ -223,22 +223,22 @@ class GoogleShoppingFeed {
223
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
224
  <div class="card">
225
  <div class="card-header">
226
- <h4 class="confg-title"><?php esc_html_e("Smart Shopping Campaigns","conversios"); ?></h4>
227
  </div>
228
  <div class="card-body">
229
  <ul class="list-unstyled">
230
  <?php
231
- echo $this->add_list_html(esc_html__("Total campaign","conversios"), $totalCampaigns)
232
- .$this->add_list_html(esc_html__("Active campaigns","conversios"), $campaignActive)
233
- .$this->add_list_html(esc_html__("Cost","conversios"), $campaignCost)
234
- .$this->add_list_html(esc_html__("Click","conversios"), $campaignClicks)
235
- .$this->add_list_html(esc_html__("Conversion","conversios"), (int) $campaignConversions)
236
- .$this->add_list_html(esc_html__("Sales","conversios"), (int) $campaignSales); ?>
237
  </ul>
238
  </div>
239
  <?php if (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != "") { ?>
240
  <div class="card-footer">
241
- <a href="<?php echo esc_url_raw($this->site_url.'shopping_campaigns_page'); ?>" id="smart-shopping-campaigns" class="btn btn-primary"><?php esc_html_e("Edit","conversios"); ?></a>
242
  </div>
243
  <?php }?>
244
  </div>
@@ -309,7 +309,7 @@ class GoogleShoppingFeed {
309
  jQuery("#tvc_msg").remove();
310
  jQuery("#refresh_api").css("visibility","hidden");
311
  jQuery(tvs_this).after('<div class="tvc-nb-spinner" id="tvc-nb-spinner"></div>');
312
- tvc_helper.tvc_alert("error","<?php esc_html_e("Attention !","conversios"); ?>","<?php esc_html_e("Sync up is in the process do not refresh the page. it may take few minutes.","conversios"); ?>");
313
  jQuery.post(tvc_ajax_url,{
314
  action: "tvc_call_api_sync"
315
  },function( response ){
133
  <div class="tvc-api-sunc">
134
  <span>
135
  <?php if(esc_attr($last_api_sync_up)){
136
+ echo esc_html__("Details last synced at ","enhanced-e-commerce-for-woocommerce-store").esc_attr($last_api_sync_up);
137
  }else{
138
+ echo esc_html__("Refresh sync up","enhanced-e-commerce-for-woocommerce-store");
139
  }?></span><img id="refresh_api" onclick="call_tvc_api_sync_up();" src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/refresh.png'); ?>">
140
  </div>
141
  <?php } ?>
151
  $next_sync = date($date_formate,strtotime($next_sync));
152
  ?>
153
  <div class="product-auto-sync-details">
154
+ <strong><?php esc_html_e("Last auto product sync details","enhanced-e-commerce-for-woocommerce-store"); ?></strong>
155
  <table>
156
+ <tr><th><?php esc_html_e("Last sync","enhanced-e-commerce-for-woocommerce-store"); ?></th><th><?php esc_html_e("Sync product","enhanced-e-commerce-for-woocommerce-store"); ?></th><th><?php esc_html_e("Status","enhanced-e-commerce-for-woocommerce-store"); ?></th><th><?php esc_html_e("Upcoming sync","enhanced-e-commerce-for-woocommerce-store"); ?></th></tr>
157
  <tr>
158
  <td><?php echo esc_attr($create_sync);?></td>
159
  <td><?php echo (isset($last_auto_sync['total_sync_product']))?esc_attr($last_auto_sync['total_sync_product']):"";?></td>
170
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
171
  <div class="card configure-card">
172
  <div class="card-header">
173
+ <h4 class="confg-title"><?php esc_html_e("Configuration","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
174
  </div>
175
  <div class="card-body">
176
  <ul class="list-unstyled"><?php
178
  $is_site_verified = (isset($googleDetail->is_site_verified))?esc_attr($googleDetail->is_site_verified):"";
179
  echo $this->configuration_list_html("Google merchant center",(isset($googleDetail->google_merchant_center_id))?esc_attr($googleDetail->google_merchant_center_id):"");
180
  if($is_site_verified ==1){
181
+ echo $this->configuration_list_html(esc_html__("Site Verified","enhanced-e-commerce-for-woocommerce-store"), esc_attr($is_site_verified));
182
  }else{
183
+ echo $this->configuration_error_list_html(esc_html__("Site Verified","enhanced-e-commerce-for-woocommerce-store"),esc_attr($is_site_verified),"call_site_verified", $googleDetail);
184
  }
185
  if($is_domain_claim ==1){
186
+ echo $this->configuration_list_html(esc_html__("Domain claim","enhanced-e-commerce-for-woocommerce-store"),esc_attr($is_domain_claim));
187
  }else{
188
+ echo $this->configuration_error_list_html(esc_html__("Domain claim","enhanced-e-commerce-for-woocommerce-store"),esc_attr($is_domain_claim), 'call_domain_claim', $googleDetail);
189
  }
190
+ echo $this->configuration_list_html(esc_html__("Google Ads linking","enhanced-e-commerce-for-woocommerce-store"),((isset($googleDetail->google_ads_id)))?esc_attr($googleDetail->google_ads_id):"");
191
  ?>
192
  </ul>
193
  </div>
194
  <div class="card-footer">
195
+ <a href="<?php echo esc_url_raw($this->site_url.'gaa_config_page'); ?>" class="btn btn-primary" id="configuration"><?php esc_html_e("Edit","enhanced-e-commerce-for-woocommerce-store"); ?></a>
196
  </div>
197
  </div>
198
  </div>
199
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
200
  <div class="card">
201
  <div class="card-header">
202
+ <h4 class="confg-title"><?php esc_html_e("Product Sync","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
203
  </div>
204
  <div class="card-body">
205
  <ul class="list-unstyled">
206
  <?php
207
+ echo $this->add_list_html(esc_html__("Active products in WooCommerce","enhanced-e-commerce-for-woocommerce-store"), $totalActiveWooProduct)
208
+ .$this->add_list_html(esc_html__("Total synced products in Merchant center","enhanced-e-commerce-for-woocommerce-store"), $sync_product_total)
209
+ .$this->add_list_html(esc_html__("Approved","enhanced-e-commerce-for-woocommerce-store"), $sync_product_approved)
210
+ .$this->add_list_html(esc_html__("Disapproved","enhanced-e-commerce-for-woocommerce-store"), $sync_product_disapproved)
211
+ .$this->add_list_html(esc_html__("Pending","enhanced-e-commerce-for-woocommerce-store"), $sync_product_pending);
212
  ?>
213
  </ul>
214
  </div>
215
  <?php
216
  if (isset($googleDetail->google_merchant_center_id) && esc_attr($googleDetail->google_merchant_center_id) != "") {?>
217
  <div class="card-footer">
218
+ <a href="<?php echo esc_url_raw($this->site_url.'sync_product_page'); ?>" class="btn btn-primary" id="product-sync"><?php esc_html_e("Edit","enhanced-e-commerce-for-woocommerce-store"); ?></a>
219
  </div>
220
  <?php } ?>
221
  </div>
223
  <div class="col-md-12 col-lg-4 mb-3 mb-lg-0">
224
  <div class="card">
225
  <div class="card-header">
226
+ <h4 class="confg-title"><?php esc_html_e("Smart Shopping Campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
227
  </div>
228
  <div class="card-body">
229
  <ul class="list-unstyled">
230
  <?php
231
+ echo $this->add_list_html(esc_html__("Total campaign","enhanced-e-commerce-for-woocommerce-store"), $totalCampaigns)
232
+ .$this->add_list_html(esc_html__("Active campaigns","enhanced-e-commerce-for-woocommerce-store"), $campaignActive)
233
+ .$this->add_list_html(esc_html__("Cost","enhanced-e-commerce-for-woocommerce-store"), $campaignCost)
234
+ .$this->add_list_html(esc_html__("Click","enhanced-e-commerce-for-woocommerce-store"), $campaignClicks)
235
+ .$this->add_list_html(esc_html__("Conversion","enhanced-e-commerce-for-woocommerce-store"), (int) $campaignConversions)
236
+ .$this->add_list_html(esc_html__("Sales","enhanced-e-commerce-for-woocommerce-store"), (int) $campaignSales); ?>
237
  </ul>
238
  </div>
239
  <?php if (isset($googleDetail->google_ads_id) && esc_attr($googleDetail->google_ads_id) != "") { ?>
240
  <div class="card-footer">
241
+ <a href="<?php echo esc_url_raw($this->site_url.'shopping_campaigns_page'); ?>" id="smart-shopping-campaigns" class="btn btn-primary"><?php esc_html_e("Edit","enhanced-e-commerce-for-woocommerce-store"); ?></a>
242
  </div>
243
  <?php }?>
244
  </div>
309
  jQuery("#tvc_msg").remove();
310
  jQuery("#refresh_api").css("visibility","hidden");
311
  jQuery(tvs_this).after('<div class="tvc-nb-spinner" id="tvc-nb-spinner"></div>');
312
+ tvc_helper.tvc_alert("error","<?php esc_html_e("Attention !","enhanced-e-commerce-for-woocommerce-store"); ?>","<?php esc_html_e("Sync up is in the process do not refresh the page. it may take few minutes.","enhanced-e-commerce-for-woocommerce-store"); ?>");
313
  jQuery.post(tvc_ajax_url,{
314
  action: "tvc_call_api_sync"
315
  },function( response ){
includes/setup/help-html.php CHANGED
@@ -5,15 +5,15 @@ function get_connect_google_popup_html_to_active_licence(){
5
  <div class="modal-dialog modal-dialog-centered">
6
  <div class="modal-content">
7
  <div class="modal-body">
8
- <h5 class="modal-title" id="staticBackdropLabel">'.esc_html__("Connect Tatvic with your website to active licence key", "conversios").'</h5>
9
  <button type="button" id="tvc_google_connect_active_licence_close" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>
10
  </button>
11
  <br>
12
- <p>'.esc_html__("Make sure you sign in with the google account that has all privileges to access google analytics, google ads and google merchant center account.", "conversios").'</p>
13
  </div>
14
  <div class="modal-footer">
15
  <a class="ee-oauth-container btn darken-4 white black-text" href="'. esc_url_raw($TVC_Admin_Helper->get_onboarding_page_url()).'" style="text-transform:none; margin: 0 auto;">
16
- <p style="font-size: inherit; margin-top:5px;"><img width="20px" style="margin-right:8px" alt="Google sign-in" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/g-logo.png").'" />'.esc_html__("Sign In With Google", "conversios").'</p>
17
  </a>
18
  </div>
19
  </div>
@@ -39,17 +39,17 @@ function get_google_shopping_tabs_html($site_url, $google_merchant_center_id){
39
  ?><ul class="nav nav-tabs nav-justified edit-tabs" id="myTab" role="tablist">
40
  <li class="nav-item" role="presentation">
41
  <div class="tvc-tooltip nav-link <?php echo ($tab=="gaa_config_page")?"active":""; ?>">
42
- <a href="<?php echo esc_url_raw($site_url.'gaa_config_page'); ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Configuration", "conversios" ); ?></a>
43
  </div>
44
  </li>
45
  <li class="nav-item" role="presentation">
46
  <div class="tvc-tooltip nav-link <?php echo ($tab=="sync_product_page")?"active":""; ?>" <?php echo esc_attr($site_url_p_target); ?>>
47
- <a href="<?php echo ($site_url_p)?esc_url_raw($site_url_p.'sync_product_page'):"#"; ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Product Sync", "conversios" ); ?></a>
48
  </div>
49
  </li>
50
  <li class="nav-item" role="presentation">
51
  <div class="tvc-tooltip nav-link <?php echo ($tab=="shopping_campaigns_page")?"active":""; ?>" <?php echo esc_attr($site_url_p_target); ?>>
52
- <a href="<?php echo ($site_url_p)?esc_url_raw($site_url_p . 'shopping_campaigns_page'):"#"; ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Smart Shopping Campaigns", "conversios" ); ?></a>
53
  </div>
54
  </li>
55
  </ul>
@@ -64,23 +64,23 @@ function get_tvc_google_ads_help_html(){
64
  <div class="content-icon">
65
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
66
  </div>
67
- <h4 class="content-heading"><?php esc_html_e("Help Center:", "conversios" ); ?></h4>
68
  <section class="tvc-help-slider">
69
  <?php if($TVC_Admin_Helper->is_ga_property() == false){?>
70
  <div>
71
- <?php esc_html_e('In order to configure your Google Ads account, you need to sign in with the associated Google account. Click on "Get started"','conversios'); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/add.svg"); ?>" alt="connect account"/> <?php esc_html_e("icon to set up the plugin.","conversios"); ?>
72
  </div>
73
  <div>
74
- <?php esc_html_e("Once you select or create a new google ads account, your account will be enabled for the following:","conversios"); ?>
75
  <ol>
76
- <li><?php esc_html_e("Remarketing and dynamic remarketing tags for all the major eCommerce events on your website (Optional)","conversios"); ?></li>
77
- <li><?php esc_html_e("Your google ads account will be linked with the previously selected google analytics account (Optional)","conversios"); ?></li>
78
- <li><?php esc_html_e("Your google ads account will be linked with google merchant center account in the next step so that you can start running google shopping campaigns(Optional)","conversios"); ?></li>
79
  </ol>
80
  </div>
81
  <?php }else{ ?>
82
  <div>
83
- <?php esc_html_e("You can update or change the google ads account anytime by clicking on","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/refresh.svg"); ?>" alt="refresh"/> icon.
84
  </div>
85
  <?php }?>
86
 
@@ -116,11 +116,11 @@ function get_tvc_google_ads_help_html(){
116
  <div class="content-icon">
117
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
118
  </div>
119
- <h4 class="content-heading"><?php esc_html_e("Business Value:","conversios"); ?></h4>
120
  <section class="tvc-b-value-slider">
121
- <div><?php esc_html_e("With dynamic remarketing tags, you will be able to show ads to your past site visitors with specific product information that is tailored to your customer’s previous site visits.","conversios"); ?></div>
122
- <div><?php esc_html_e("This plugin enables dynamic remarketing tags for crucial eCommerce events like product list views, product detail page views, add to cart and final purchase event.","conversios"); ?></div>
123
- <div><?php esc_html_e("Dynamic remarketing along with the product feeds in your merchant center account will enable you for smart shopping campaigns which is very essential for any eCommerce business globally. ","conversios"); ?><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/3124536?hl=en"); ?>"><?php esc_html_e("Learn More","conversios"); ?></a>
124
  </div>
125
  </section>
126
  </div>
@@ -137,7 +137,7 @@ function get_tvc_google_ads_help_html(){
137
  </nav>
138
  </div>
139
  <div class="tvc-footer-links">
140
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"><?php esc_html_e("Installation manual","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"><?php esc_html_e("Google shopping guide","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"><?php esc_html_e("FAQ","conversios"); ?></a>
141
  </div>
142
  <script>
143
  //let rtl= "<?php echo (is_rtl())?"true":"false"; ?>";
@@ -162,11 +162,11 @@ function get_tvc_help_html(){
162
  <div class="content-icon">
163
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
164
  </div>
165
- <h4 class="content-heading"><?php esc_html_e("Help Center:","conversios"); ?></h4>
166
  <section class="tvc-help-slider">
167
- <div><?php esc_html_e("Set up your Google Merchant Center Account and make your WooCommerce shop and products available to millions of shoppers across Google.","conversios"); ?></div>
168
- <div><?php esc_html_e("Our plugin will help you automate everything you need to make your products available to interested customers across Google.","conversios"); ?></div>
169
- <div>Follow <a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=3163841"); ?>"><?php esc_html_e("merchant center guidelines for site requirements","conversios"); ?></a> <?php esc_html_e("in order to avoid account suspension issues.","conversios"); ?>
170
  </div>
171
  </section>
172
  </div>
@@ -200,11 +200,11 @@ function get_tvc_help_html(){
200
  <div class="content-icon">
201
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
202
  </div>
203
- <h4 class="content-heading"><?php esc_html_e("Business Value:","conversios"); ?></h4>
204
  <section class="tvc-b-value-slider">
205
- <div><?php esc_html_e("Opt your product data into programmes, like surfaces across Google, Shopping ads, local inventory ads and Shopping Actions, to highlight your products to shoppers across Google.","conversios"); ?></div>
206
- <div><?php esc_html_e(" store’s products will be eligible to get featured under the shopping tab when anyone searches for products that match your store’s product attributes.","conversios"); ?></div>
207
- <div><?php esc_html_e("Reach out to customers leaving your store by running smart shopping campaigns based on their past site behavior.","conversios"); ?><a target="_blank" href="<?php echo esc_url_raw("https://www.google.com/intl/en_in/retail/?fmp=1&utm_id=bkws&mcsubid=in-en-ha-g-mc-bkws"); ?>"><?php esc_html_e("Learn More","conversios"); ?></a></div>
208
  </section>
209
  </div>
210
  <nav>
@@ -220,7 +220,7 @@ function get_tvc_help_html(){
220
  </nav>
221
  </div>
222
  <div class="tvc-footer-links">
223
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"><?php esc_html_e("Installation manual","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"><?php esc_html_e("Google shopping guide","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"><?php esc_html_e("FAQ","conversios"); ?></a>
224
  </div>
225
  <script>
226
  //let rtl= "<?php echo (is_rtl())?"true":"false"; ?>";
@@ -246,23 +246,23 @@ function get_tvc_google_ga_sidebar(){
246
  <div class="content-icon">
247
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
248
  </div>
249
- <h4 class="content-heading"><?php esc_html_e("Help Center:","conversios"); ?></h4>
250
  <section class="tvc-help-slider">
251
  <?php if($TVC_Admin_Helper->is_ga_property() == false){?>
252
  <div>
253
- <?php esc_html_e("In order to configure your Google Analytics account, you need to sign in with the associated Google account. Click on \"Get started\" ","conversios"); ?><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/add.svg"); ?>" alt="connect account"/> <?php esc_html_e("icon to set up the plugin.","conversios"); ?>
254
  </div>
255
  <div>
256
- <?php esc_html_e("Once you sign in with an associated google account, you will be asked to select a google analytics account from the drop down.","conversios"); ?>
257
  </div>
258
  <div>
259
- <?php esc_html_e("If you have already added the gtag.js snippet manually, YOU MUST uncheck the “add gtag.js”","conversios"); ?>
260
  </div>
261
  <?php
262
  }else{
263
  ?>
264
  <div>
265
- <?php esc_html_e("You can update or change the google analytics account anytime by clicking on","conversios"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/refresh.svg"); ?>" alt="refresh"/> icon.
266
  </div>
267
  <?php
268
  }?>
@@ -296,16 +296,16 @@ function get_tvc_google_ga_sidebar(){
296
  <div class="content-icon">
297
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
298
  </div>
299
- <h4 class="content-heading"> <?php esc_html_e("Business Value:","conversios"); ?></h4>
300
  <section class="tvc-b-value-slider">
301
  <div>
302
- <p> <?php esc_html_e("Once you set up google analytics account, your website will be tagged for all the important eCommerce events in google analytics and you will be able to start taking data driven decisions in order to scale your eCommerce business faster. Some of the important data points are:","conversios"); ?></p>
303
  <ol>
304
- <li> <?php esc_html_e("What exactly is your site’s conversion rate?","conversios"); ?></li>
305
- <li> <?php esc_html_e("What is the exact drop at each stage in your eCommerce funnel? For example, 100 people are coming to your website, how many users are seeing any product detail page, how many are adding products to cart, how many are abandoning cart etc.","conversios"); ?></li>
306
  </ol>
307
  </div>
308
- <div> <?php esc_html_e("What all are your star products and what all are just consuming the space in your website?","conversios"); ?></div>
309
  </section>
310
  </div>
311
  <nav>
@@ -321,7 +321,7 @@ function get_tvc_google_ga_sidebar(){
321
  </nav>
322
  </div>
323
  <div class="tvc-footer-links">
324
- <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"> <?php esc_html_e("Installation manual","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"> <?php esc_html_e("Google shopping guide","conversios"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"> <?php esc_html_e("FAQ","conversios"); ?></a>
325
  </div>
326
  <script>
327
  jQuery(".tvc-b-value-slider").slick({
5
  <div class="modal-dialog modal-dialog-centered">
6
  <div class="modal-content">
7
  <div class="modal-body">
8
+ <h5 class="modal-title" id="staticBackdropLabel">'.esc_html__("Connect Tatvic with your website to active licence key", "enhanced-e-commerce-for-woocommerce-store").'</h5>
9
  <button type="button" id="tvc_google_connect_active_licence_close" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span>
10
  </button>
11
  <br>
12
+ <p>'.esc_html__("Make sure you sign in with the google account that has all privileges to access google analytics, google ads and google merchant center account.", "enhanced-e-commerce-for-woocommerce-store").'</p>
13
  </div>
14
  <div class="modal-footer">
15
  <a class="ee-oauth-container btn darken-4 white black-text" href="'. esc_url_raw($TVC_Admin_Helper->get_onboarding_page_url()).'" style="text-transform:none; margin: 0 auto;">
16
+ <p style="font-size: inherit; margin-top:5px;"><img width="20px" style="margin-right:8px" alt="Google sign-in" src="'.esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/g-logo.png").'" />'.esc_html__("Sign In With Google", "enhanced-e-commerce-for-woocommerce-store").'</p>
17
  </a>
18
  </div>
19
  </div>
39
  ?><ul class="nav nav-tabs nav-justified edit-tabs" id="myTab" role="tablist">
40
  <li class="nav-item" role="presentation">
41
  <div class="tvc-tooltip nav-link <?php echo ($tab=="gaa_config_page")?"active":""; ?>">
42
+ <a href="<?php echo esc_url_raw($site_url.'gaa_config_page'); ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Configuration", "enhanced-e-commerce-for-woocommerce-store" ); ?></a>
43
  </div>
44
  </li>
45
  <li class="nav-item" role="presentation">
46
  <div class="tvc-tooltip nav-link <?php echo ($tab=="sync_product_page")?"active":""; ?>" <?php echo esc_attr($site_url_p_target); ?>>
47
+ <a href="<?php echo ($site_url_p)?esc_url_raw($site_url_p.'sync_product_page'):"#"; ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Product Sync", "enhanced-e-commerce-for-woocommerce-store" ); ?></a>
48
  </div>
49
  </li>
50
  <li class="nav-item" role="presentation">
51
  <div class="tvc-tooltip nav-link <?php echo ($tab=="shopping_campaigns_page")?"active":""; ?>" <?php echo esc_attr($site_url_p_target); ?>>
52
+ <a href="<?php echo ($site_url_p)?esc_url_raw($site_url_p . 'shopping_campaigns_page'):"#"; ?>" id="smart-shopping-campaigns"><?php echo esc_html__("Smart Shopping Campaigns", "enhanced-e-commerce-for-woocommerce-store" ); ?></a>
53
  </div>
54
  </li>
55
  </ul>
64
  <div class="content-icon">
65
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
66
  </div>
67
+ <h4 class="content-heading"><?php esc_html_e("Help Center:", "enhanced-e-commerce-for-woocommerce-store" ); ?></h4>
68
  <section class="tvc-help-slider">
69
  <?php if($TVC_Admin_Helper->is_ga_property() == false){?>
70
  <div>
71
+ <?php esc_html_e('In order to configure your Google Ads account, you need to sign in with the associated Google account. Click on "Get started"','enhanced-e-commerce-for-woocommerce-store'); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/add.svg"); ?>" alt="connect account"/> <?php esc_html_e("icon to set up the plugin.","enhanced-e-commerce-for-woocommerce-store"); ?>
72
  </div>
73
  <div>
74
+ <?php esc_html_e("Once you select or create a new google ads account, your account will be enabled for the following:","enhanced-e-commerce-for-woocommerce-store"); ?>
75
  <ol>
76
+ <li><?php esc_html_e("Remarketing and dynamic remarketing tags for all the major eCommerce events on your website (Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></li>
77
+ <li><?php esc_html_e("Your google ads account will be linked with the previously selected google analytics account (Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></li>
78
+ <li><?php esc_html_e("Your google ads account will be linked with google merchant center account in the next step so that you can start running google shopping campaigns(Optional)","enhanced-e-commerce-for-woocommerce-store"); ?></li>
79
  </ol>
80
  </div>
81
  <?php }else{ ?>
82
  <div>
83
+ <?php esc_html_e("You can update or change the google ads account anytime by clicking on","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/refresh.svg"); ?>" alt="refresh"/> icon.
84
  </div>
85
  <?php }?>
86
 
116
  <div class="content-icon">
117
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
118
  </div>
119
+ <h4 class="content-heading"><?php esc_html_e("Business Value:","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
120
  <section class="tvc-b-value-slider">
121
+ <div><?php esc_html_e("With dynamic remarketing tags, you will be able to show ads to your past site visitors with specific product information that is tailored to your customer’s previous site visits.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
122
+ <div><?php esc_html_e("This plugin enables dynamic remarketing tags for crucial eCommerce events like product list views, product detail page views, add to cart and final purchase event.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
123
+ <div><?php esc_html_e("Dynamic remarketing along with the product feeds in your merchant center account will enable you for smart shopping campaigns which is very essential for any eCommerce business globally. ","enhanced-e-commerce-for-woocommerce-store"); ?><a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/google-ads/answer/3124536?hl=en"); ?>"><?php esc_html_e("Learn More","enhanced-e-commerce-for-woocommerce-store"); ?></a>
124
  </div>
125
  </section>
126
  </div>
137
  </nav>
138
  </div>
139
  <div class="tvc-footer-links">
140
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"><?php esc_html_e("Installation manual","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"><?php esc_html_e("Google shopping guide","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"><?php esc_html_e("FAQ","enhanced-e-commerce-for-woocommerce-store"); ?></a>
141
  </div>
142
  <script>
143
  //let rtl= "<?php echo (is_rtl())?"true":"false"; ?>";
162
  <div class="content-icon">
163
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
164
  </div>
165
+ <h4 class="content-heading"><?php esc_html_e("Help Center:","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
166
  <section class="tvc-help-slider">
167
+ <div><?php esc_html_e("Set up your Google Merchant Center Account and make your WooCommerce shop and products available to millions of shoppers across Google.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
168
+ <div><?php esc_html_e("Our plugin will help you automate everything you need to make your products available to interested customers across Google.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
169
+ <div>Follow <a target="_blank" href="<?php echo esc_url_raw("https://support.google.com/merchants/answer/6363310?hl=en&ref_topic=3163841"); ?>"><?php esc_html_e("merchant center guidelines for site requirements","enhanced-e-commerce-for-woocommerce-store"); ?></a> <?php esc_html_e("in order to avoid account suspension issues.","enhanced-e-commerce-for-woocommerce-store"); ?>
170
  </div>
171
  </section>
172
  </div>
200
  <div class="content-icon">
201
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
202
  </div>
203
+ <h4 class="content-heading"><?php esc_html_e("Business Value:","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
204
  <section class="tvc-b-value-slider">
205
+ <div><?php esc_html_e("Opt your product data into programmes, like surfaces across Google, Shopping ads, local inventory ads and Shopping Actions, to highlight your products to shoppers across Google.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
206
+ <div><?php esc_html_e(" store’s products will be eligible to get featured under the shopping tab when anyone searches for products that match your store’s product attributes.","enhanced-e-commerce-for-woocommerce-store"); ?></div>
207
+ <div><?php esc_html_e("Reach out to customers leaving your store by running smart shopping campaigns based on their past site behavior.","enhanced-e-commerce-for-woocommerce-store"); ?><a target="_blank" href="<?php echo esc_url_raw("https://www.google.com/intl/en_in/retail/?fmp=1&utm_id=bkws&mcsubid=in-en-ha-g-mc-bkws"); ?>"><?php esc_html_e("Learn More","enhanced-e-commerce-for-woocommerce-store"); ?></a></div>
208
  </section>
209
  </div>
210
  <nav>
220
  </nav>
221
  </div>
222
  <div class="tvc-footer-links">
223
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"><?php esc_html_e("Installation manual","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"><?php esc_html_e("Google shopping guide","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"><?php esc_html_e("FAQ","enhanced-e-commerce-for-woocommerce-store"); ?></a>
224
  </div>
225
  <script>
226
  //let rtl= "<?php echo (is_rtl())?"true":"false"; ?>";
246
  <div class="content-icon">
247
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/information.svg'); ?>" alt="information"/>
248
  </div>
249
+ <h4 class="content-heading"><?php esc_html_e("Help Center:","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
250
  <section class="tvc-help-slider">
251
  <?php if($TVC_Admin_Helper->is_ga_property() == false){?>
252
  <div>
253
+ <?php esc_html_e("In order to configure your Google Analytics account, you need to sign in with the associated Google account. Click on \"Get started\" ","enhanced-e-commerce-for-woocommerce-store"); ?><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/add.svg"); ?>" alt="connect account"/> <?php esc_html_e("icon to set up the plugin.","enhanced-e-commerce-for-woocommerce-store"); ?>
254
  </div>
255
  <div>
256
+ <?php esc_html_e("Once you sign in with an associated google account, you will be asked to select a google analytics account from the drop down.","enhanced-e-commerce-for-woocommerce-store"); ?>
257
  </div>
258
  <div>
259
+ <?php esc_html_e("If you have already added the gtag.js snippet manually, YOU MUST uncheck the “add gtag.js”","enhanced-e-commerce-for-woocommerce-store"); ?>
260
  </div>
261
  <?php
262
  }else{
263
  ?>
264
  <div>
265
+ <?php esc_html_e("You can update or change the google analytics account anytime by clicking on","enhanced-e-commerce-for-woocommerce-store"); ?> <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/refresh.svg"); ?>" alt="refresh"/> icon.
266
  </div>
267
  <?php
268
  }?>
296
  <div class="content-icon">
297
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/lamp.svg'); ?>" alt="information"/>
298
  </div>
299
+ <h4 class="content-heading"> <?php esc_html_e("Business Value:","enhanced-e-commerce-for-woocommerce-store"); ?></h4>
300
  <section class="tvc-b-value-slider">
301
  <div>
302
+ <p> <?php esc_html_e("Once you set up google analytics account, your website will be tagged for all the important eCommerce events in google analytics and you will be able to start taking data driven decisions in order to scale your eCommerce business faster. Some of the important data points are:","enhanced-e-commerce-for-woocommerce-store"); ?></p>
303
  <ol>
304
+ <li> <?php esc_html_e("What exactly is your site’s conversion rate?","enhanced-e-commerce-for-woocommerce-store"); ?></li>
305
+ <li> <?php esc_html_e("What is the exact drop at each stage in your eCommerce funnel? For example, 100 people are coming to your website, how many users are seeing any product detail page, how many are adding products to cart, how many are abandoning cart etc.","enhanced-e-commerce-for-woocommerce-store"); ?></li>
306
  </ol>
307
  </div>
308
+ <div> <?php esc_html_e("What all are your star products and what all are just consuming the space in your website?","enhanced-e-commerce-for-woocommerce-store"); ?></div>
309
  </section>
310
  </div>
311
  <nav>
321
  </nav>
322
  </div>
323
  <div class="tvc-footer-links">
324
+ <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Installation-Manual.pdf"); ?>" tabindex="0"> <?php esc_html_e("Installation manual","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://conversios.io/help-center/Google-shopping-Guide.pdf"); ?>" tabindex="0"> <?php esc_html_e("Google shopping guide","enhanced-e-commerce-for-woocommerce-store"); ?></a> | <a target="_blank" href="<?php echo esc_url_raw("https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-store/faq/"); ?>" tabindex="0"> <?php esc_html_e("FAQ","enhanced-e-commerce-for-woocommerce-store"); ?></a>
325
  </div>
326
  <script>
327
  jQuery(".tvc-b-value-slider").slick({
includes/setup/pmax-add.php CHANGED
@@ -61,8 +61,8 @@ class TVC_PMaxAdd {
61
  ?>
62
  <div class="pmax-campaign add-pmax-campaign">
63
  <div class="mt24 whiteroundedbx dshreport-sec">
64
- <h3><?php esc_html_e("Performance Max campaign","conversios"); ?></h3>
65
- <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","conversios"); ?></a>
66
  <div class="tabs">
67
  <?php /*<ul class="tabs-list">
68
  <li class="active"><a href="#tab1">Campaign Details</a></li>
@@ -72,25 +72,25 @@ class TVC_PMaxAdd {
72
  <div class="campaignformwrp">
73
  <form id="add-pmax-campaign-form" method="post">
74
  <div class="form-row campform-row">
75
- <label><?php esc_html_e("Campaign Name *","conversios"); ?></label>
76
- <input type="text" class="fromfiled" name ="campaign_name" id="campaign_name" placeholder="<?php esc_html_e("Enter Campaign Name","conversios"); ?>" required>
77
  </div>
78
  <div class="form-row campform-row">
79
- <label><?php esc_html_e("Daily Budget","conversios"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>) *</label>
80
- <input type="number" class="fromfiled" name="budget" id="budget" placeholder="<?php esc_html_e("Enter your budget","conversios"); ?>" maxlength="120" required>
81
  </div>
82
  <div class="form-row campform-row">
83
- <label><?php esc_html_e("Country *","conversios"); ?></label>
84
  <?php echo $this->country_dropdown();?>
85
  </div>
86
  <div class="form-row-grp campform-row cmp_urls">
87
  <div class="form-col-4 mb1">
88
- <label><?php esc_html_e("Site URL Key","conversios"); ?></label>
89
- <input type="text" class="fromfiled" name="site_key[]" placeholder="<?php esc_html_e("Key","conversios"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
90
  </div>
91
  <div class="form-col-8 mb1">
92
- <label><?php esc_html_e("Site URL Value","conversios"); ?></label>
93
- <input type="text" class="fromfiled" name="site_url[]" placeholder="<?php esc_html_e("Site URL","conversios"); ?>">
94
  </div>
95
  </div>
96
 
@@ -98,43 +98,43 @@ class TVC_PMaxAdd {
98
  <div class="form-row campform-row">
99
  <button type="button" id="add_more_cmp_urls" class="btn-fade-blue">
100
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png');?>" alt="">
101
- <?php esc_html_e("Add Site URLs","conversios"); ?></button>
102
  </div>
103
  <div class="form-row campform-row">
104
- <label><?php esc_html_e("Target ROAS (%)","conversios"); ?></label>
105
  <small>Formula: Conversion value ÷ ad spend x 100% = target ROAS percentage</small>
106
- <input type="number" name="target_roas" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Number","conversios"); ?>">
107
  </div>
108
  <div class="form-row campform-row">
109
- <label><?php esc_html_e("FINAL URL Suffix","conversios"); ?></label>
110
- <input type="text" name="final_url_suffix" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Suffix","conversios"); ?>">
111
  </div>
112
  <div class="form-row campform-row">
113
- <label><?php esc_html_e("Start Date","conversios"); ?></label>
114
  <input type="text" name="start_date" id="start_date" class="fromfiled smtext datepicker">
115
  </div>
116
  <div class="form-row campform-row">
117
- <label><?php esc_html_e("End Date","conversios"); ?></label>
118
  <input type="text" name="end_date" id="end_date" class="fromfiled smtext datepicker">
119
  </div>
120
  <p class="label"><b>Status</b></p>
121
  <div class="form-row form-row-grp campform-row">
122
  <input type="radio" checked="checked" class="radio" value="ENABLED" name="status" id="cmp_active">
123
- <label class="radio-label" for="cmp_active"><?php esc_html_e("Enable","conversios"); ?></label>
124
  <input type="radio" class="radio" value="PAUSED" name="status" id="cmp_inactive">
125
- <label class="radio-label" for="cmp_inactive"><?php esc_html_e("Pause","conversios"); ?></label>
126
  </div>
127
  <div class="campfooterbtn">
128
  <input type="hidden" name="customer_id" value="<?php echo esc_attr($this->google_ads_id); ?>">
129
  <input type="hidden" name="merchant_id" value="<?php echo esc_attr($this->merchant_id); ?>">
130
- <button type="submit" class="ppblubtn cretemrchntbtn"><?php esc_html_e("Save","conversios"); ?></button>
131
  </div>
132
  </form>
133
  <div class="alert-message" id="tvc_pmax_popup_box"></div>
134
  <div id="add_loading"></div>
135
  </div>
136
 
137
- <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","conversios"); ?></a>
138
  </div>
139
  <?php /*<div id="tab2" class="tab">
140
  <h3>Link the Assets</h3>
61
  ?>
62
  <div class="pmax-campaign add-pmax-campaign">
63
  <div class="mt24 whiteroundedbx dshreport-sec">
64
+ <h3><?php esc_html_e("Performance Max campaign","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
65
+ <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","enhanced-e-commerce-for-woocommerce-store"); ?></a>
66
  <div class="tabs">
67
  <?php /*<ul class="tabs-list">
68
  <li class="active"><a href="#tab1">Campaign Details</a></li>
72
  <div class="campaignformwrp">
73
  <form id="add-pmax-campaign-form" method="post">
74
  <div class="form-row campform-row">
75
+ <label><?php esc_html_e("Campaign Name *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
76
+ <input type="text" class="fromfiled" name ="campaign_name" id="campaign_name" placeholder="<?php esc_html_e("Enter Campaign Name","enhanced-e-commerce-for-woocommerce-store"); ?>" required>
77
  </div>
78
  <div class="form-row campform-row">
79
+ <label><?php esc_html_e("Daily Budget","enhanced-e-commerce-for-woocommerce-store"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>) *</label>
80
+ <input type="number" class="fromfiled" name="budget" id="budget" placeholder="<?php esc_html_e("Enter your budget","enhanced-e-commerce-for-woocommerce-store"); ?>" maxlength="120" required>
81
  </div>
82
  <div class="form-row campform-row">
83
+ <label><?php esc_html_e("Country *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
84
  <?php echo $this->country_dropdown();?>
85
  </div>
86
  <div class="form-row-grp campform-row cmp_urls">
87
  <div class="form-col-4 mb1">
88
+ <label><?php esc_html_e("Site URL Key","enhanced-e-commerce-for-woocommerce-store"); ?></label>
89
+ <input type="text" class="fromfiled" name="site_key[]" placeholder="<?php esc_html_e("Key","enhanced-e-commerce-for-woocommerce-store"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
90
  </div>
91
  <div class="form-col-8 mb1">
92
+ <label><?php esc_html_e("Site URL Value","enhanced-e-commerce-for-woocommerce-store"); ?></label>
93
+ <input type="text" class="fromfiled" name="site_url[]" placeholder="<?php esc_html_e("Site URL","enhanced-e-commerce-for-woocommerce-store"); ?>">
94
  </div>
95
  </div>
96
 
98
  <div class="form-row campform-row">
99
  <button type="button" id="add_more_cmp_urls" class="btn-fade-blue">
100
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png');?>" alt="">
101
+ <?php esc_html_e("Add Site URLs","enhanced-e-commerce-for-woocommerce-store"); ?></button>
102
  </div>
103
  <div class="form-row campform-row">
104
+ <label><?php esc_html_e("Target ROAS (%)","enhanced-e-commerce-for-woocommerce-store"); ?></label>
105
  <small>Formula: Conversion value ÷ ad spend x 100% = target ROAS percentage</small>
106
+ <input type="number" name="target_roas" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Number","enhanced-e-commerce-for-woocommerce-store"); ?>">
107
  </div>
108
  <div class="form-row campform-row">
109
+ <label><?php esc_html_e("FINAL URL Suffix","enhanced-e-commerce-for-woocommerce-store"); ?></label>
110
+ <input type="text" name="final_url_suffix" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Suffix","enhanced-e-commerce-for-woocommerce-store"); ?>">
111
  </div>
112
  <div class="form-row campform-row">
113
+ <label><?php esc_html_e("Start Date","enhanced-e-commerce-for-woocommerce-store"); ?></label>
114
  <input type="text" name="start_date" id="start_date" class="fromfiled smtext datepicker">
115
  </div>
116
  <div class="form-row campform-row">
117
+ <label><?php esc_html_e("End Date","enhanced-e-commerce-for-woocommerce-store"); ?></label>
118
  <input type="text" name="end_date" id="end_date" class="fromfiled smtext datepicker">
119
  </div>
120
  <p class="label"><b>Status</b></p>
121
  <div class="form-row form-row-grp campform-row">
122
  <input type="radio" checked="checked" class="radio" value="ENABLED" name="status" id="cmp_active">
123
+ <label class="radio-label" for="cmp_active"><?php esc_html_e("Enable","enhanced-e-commerce-for-woocommerce-store"); ?></label>
124
  <input type="radio" class="radio" value="PAUSED" name="status" id="cmp_inactive">
125
+ <label class="radio-label" for="cmp_inactive"><?php esc_html_e("Pause","enhanced-e-commerce-for-woocommerce-store"); ?></label>
126
  </div>
127
  <div class="campfooterbtn">
128
  <input type="hidden" name="customer_id" value="<?php echo esc_attr($this->google_ads_id); ?>">
129
  <input type="hidden" name="merchant_id" value="<?php echo esc_attr($this->merchant_id); ?>">
130
+ <button type="submit" class="ppblubtn cretemrchntbtn"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
131
  </div>
132
  </form>
133
  <div class="alert-message" id="tvc_pmax_popup_box"></div>
134
  <div id="add_loading"></div>
135
  </div>
136
 
137
+ <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","enhanced-e-commerce-for-woocommerce-store"); ?></a>
138
  </div>
139
  <?php /*<div id="tab2" class="tab">
140
  <h3>Link the Assets</h3>
includes/setup/pmax-edit.php CHANGED
@@ -92,8 +92,8 @@ class TVC_PMaxEdit {
92
  ?>
93
  <div class="pmax-campaign add-pmax-campaign">
94
  <div class="mt24 whiteroundedbx dshreport-sec">
95
- <h3><?php esc_html_e("Edit Performance Max campaign","conversios"); ?></h3>
96
- <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","conversios"); ?></a>
97
  <div class="tabs">
98
  <?php /*<ul class="tabs-list">
99
  <li class="active"><a href="#tab1">Campaign Details</a></li>
@@ -103,15 +103,15 @@ class TVC_PMaxEdit {
103
  <div class="campaignformwrp">
104
  <form id="edit-pmax-campaign-form" method="post">
105
  <div class="form-row campform-row">
106
- <label><?php esc_html_e("Campaign Name *","conversios"); ?></label>
107
- <input type="text" class="fromfiled" name ="campaign_name" id="campaign_name" value="<?php echo esc_attr($this->object_value($this->campaign, "name")); ?>" placeholder="<?php esc_html_e("Enter Campaign Name","conversios"); ?>" required>
108
  </div>
109
  <div class="form-row campform-row">
110
- <label><?php esc_html_e("Daily Budget","conversios"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>) *</label>
111
- <input type="number" class="fromfiled" name="budget" id="budget" value="<?php echo esc_attr($budget); ?>" placeholder="<?php esc_html_e("Enter your budget","conversios"); ?>" maxlength="120" required>
112
  </div>
113
  <div class="form-row campform-row">
114
- <label><?php esc_html_e("Country *","conversios"); ?></label>
115
  <?php echo $this->country_dropdown($sale_country, true);?>
116
  </div>
117
  <?php if(!empty($this->campaign->urlCustomParameters)){
@@ -120,12 +120,12 @@ class TVC_PMaxEdit {
120
  ?>
121
  <div class="form-row-grp campform-row cmp_urls">
122
  <div class="form-col-4 mb1">
123
- <?php if($i ==1){?><label><?php esc_html_e("Site URL Key","conversios"); ?></label><?php } ?>
124
- <input type="text" class="fromfiled" name="site_key[]" value="<?php echo esc_attr($this->object_value($val, "key")); ?>" placeholder="<?php esc_html_e("Key","conversios"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
125
  </div>
126
  <div class="form-col-8 mb1">
127
- <?php if($i ==1){?><label><?php esc_html_e("Site URL Value","conversios"); ?></label><?php } ?>
128
- <input type="text" class="fromfiled" name="site_url[]" value="<?php echo esc_attr($this->object_value($val, "value")); ?>" placeholder="<?php esc_html_e("Site URL","conversios"); ?>">
129
  </div>
130
  <?php if($i !=1){?><span class="form-col-1 remove-row">X</span><?php } ?>
131
  </div>
@@ -135,12 +135,12 @@ class TVC_PMaxEdit {
135
  }else{?>
136
  <div class="form-row-grp campform-row cmp_urls">
137
  <div class="form-col-4 mb1">
138
- <label><?php esc_html_e("Site URL Key","conversios"); ?></label>
139
- <input type="text" class="fromfiled" name="site_key[]" placeholder="<?php esc_html_e("Key","conversios"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
140
  </div>
141
  <div class="form-col-8 mb1">
142
- <label><?php esc_html_e("Site URL Value","conversios"); ?></label>
143
- <input type="text" class="fromfiled" name="site_url[]" placeholder="<?php esc_html_e("Site URL","conversios"); ?>">
144
  </div>
145
  </div>
146
  <?php }?>
@@ -148,36 +148,36 @@ class TVC_PMaxEdit {
148
  <div class="form-row campform-row">
149
  <button type="button" id="add_more_cmp_urls" class="btn-fade-blue">
150
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png');?>" alt="">
151
- <?php esc_html_e("Add Site URLs","conversios"); ?></button>
152
  </div>
153
  <div class="form-row campform-row">
154
  <?php
155
  $maximizeconversionvalue = isset($this->campaign->maximizeConversionValue)?$this->campaign->maximizeConversionValue:"";
156
  $target_roas = $this->object_value($maximizeconversionvalue, "targetRoas")*100; ?>
157
- <label><?php esc_html_e("Target ROAS (%)","conversios"); ?></label>
158
  <small>Formula: Conversion value ÷ ad spend x 100% = target ROAS percentage</small>
159
- <input type="number" name="target_roas" value="<?php echo esc_attr($target_roas); ?>" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Number","conversios"); ?>">
160
  </div>
161
  <div class="form-row campform-row">
162
- <label><?php esc_html_e("FINAL URL Suffix","conversios"); ?></label>
163
- <input type="text" name="final_url_suffix" value="<?php echo esc_attr($this->object_value($this->campaign, "finalUrlSuffix")); ?>" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Suffix","conversios"); ?>">
164
  </div>
165
  <div class="form-row campform-row">
166
- <label><?php esc_html_e("Start Date","conversios"); ?></label>
167
  <input type="text" name="start_date" id="start_date" value="<?php echo esc_attr($this->object_value($this->campaign, "startDate")); ?>" class="fromfiled smtext datepicker">
168
  </div>
169
  <div class="form-row campform-row">
170
- <label><?php esc_html_e("End Date","conversios"); ?></label>
171
  <input type="text" name="end_date" id="end_date" value="<?php echo esc_attr($this->object_value($this->campaign, "endDate")); ?>" class="fromfiled smtext datepicker">
172
  </div>
173
  <p class="label"><b>Status</b></p>
174
  <div class="form-row form-row-grp campform-row">
175
  <input type="radio" <?php echo ($this->campaign->status == "ENABLED")?'checked="checked"':''; ?> class="radio" value="ENABLED" name="status" id="cmp_active">
176
- <label class="radio-label" for="cmp_active"><?php esc_html_e("Enable","conversios"); ?></label>
177
  <input type="radio" <?php echo ($this->campaign->status == "PAUSED")?'checked="checked"':''; ?> class="radio" value="PAUSED" name="status" id="cmp_inactive">
178
- <label class="radio-label" for="cmp_inactive"><?php esc_html_e("Pause","conversios"); ?></label>
179
  <input type="radio" <?php echo ($this->campaign->status == "REMOVED")?'checked="checked"':''; ?> class="radio" value="REMOVED" name="status" id="cmp_removed">
180
- <label class="radio-label" for="cmp_removed"><?php esc_html_e("Remove","conversios"); ?></label>
181
  </div>
182
  <div class="campfooterbtn">
183
  <input type="hidden" name="customer_id" value="<?php echo esc_attr($this->google_ads_id); ?>">
@@ -185,14 +185,14 @@ class TVC_PMaxEdit {
185
  <input type="hidden" name="campaign_id" value="<?php echo esc_attr($this->campaign_id); ?>">
186
  <input type="hidden" name="resource_name" value="<?php echo esc_attr($this->campaign->resourceName); ?>">
187
  <input type="hidden" name="campaign_budget_resource_name" value="<?php echo esc_attr($this->campaign->campaignBudget); ?>">
188
- <button type="submit" class="ppblubtn cretemrchntbtn"><?php esc_html_e("Save","conversios"); ?></button>
189
  </div>
190
  </form>
191
  <div class="alert-message" id="tvc_pmax_popup_box"></div>
192
  <div id="add_loading"></div>
193
  </div>
194
 
195
- <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","conversios"); ?></a>
196
  </div>
197
  <?php /*<div id="tab2" class="tab">
198
  <h3>Link the Assets</h3>
92
  ?>
93
  <div class="pmax-campaign add-pmax-campaign">
94
  <div class="mt24 whiteroundedbx dshreport-sec">
95
+ <h3><?php esc_html_e("Edit Performance Max campaign","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
96
+ <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","enhanced-e-commerce-for-woocommerce-store"); ?></a>
97
  <div class="tabs">
98
  <?php /*<ul class="tabs-list">
99
  <li class="active"><a href="#tab1">Campaign Details</a></li>
103
  <div class="campaignformwrp">
104
  <form id="edit-pmax-campaign-form" method="post">
105
  <div class="form-row campform-row">
106
+ <label><?php esc_html_e("Campaign Name *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
107
+ <input type="text" class="fromfiled" name ="campaign_name" id="campaign_name" value="<?php echo esc_attr($this->object_value($this->campaign, "name")); ?>" placeholder="<?php esc_html_e("Enter Campaign Name","enhanced-e-commerce-for-woocommerce-store"); ?>" required>
108
  </div>
109
  <div class="form-row campform-row">
110
+ <label><?php esc_html_e("Daily Budget","enhanced-e-commerce-for-woocommerce-store"); ?> (<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>) *</label>
111
+ <input type="number" class="fromfiled" name="budget" id="budget" value="<?php echo esc_attr($budget); ?>" placeholder="<?php esc_html_e("Enter your budget","enhanced-e-commerce-for-woocommerce-store"); ?>" maxlength="120" required>
112
  </div>
113
  <div class="form-row campform-row">
114
+ <label><?php esc_html_e("Country *","enhanced-e-commerce-for-woocommerce-store"); ?></label>
115
  <?php echo $this->country_dropdown($sale_country, true);?>
116
  </div>
117
  <?php if(!empty($this->campaign->urlCustomParameters)){
120
  ?>
121
  <div class="form-row-grp campform-row cmp_urls">
122
  <div class="form-col-4 mb1">
123
+ <?php if($i ==1){?><label><?php esc_html_e("Site URL Key","enhanced-e-commerce-for-woocommerce-store"); ?></label><?php } ?>
124
+ <input type="text" class="fromfiled" name="site_key[]" value="<?php echo esc_attr($this->object_value($val, "key")); ?>" placeholder="<?php esc_html_e("Key","enhanced-e-commerce-for-woocommerce-store"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
125
  </div>
126
  <div class="form-col-8 mb1">
127
+ <?php if($i ==1){?><label><?php esc_html_e("Site URL Value","enhanced-e-commerce-for-woocommerce-store"); ?></label><?php } ?>
128
+ <input type="text" class="fromfiled" name="site_url[]" value="<?php echo esc_attr($this->object_value($val, "value")); ?>" placeholder="<?php esc_html_e("Site URL","enhanced-e-commerce-for-woocommerce-store"); ?>">
129
  </div>
130
  <?php if($i !=1){?><span class="form-col-1 remove-row">X</span><?php } ?>
131
  </div>
135
  }else{?>
136
  <div class="form-row-grp campform-row cmp_urls">
137
  <div class="form-col-4 mb1">
138
+ <label><?php esc_html_e("Site URL Key","enhanced-e-commerce-for-woocommerce-store"); ?></label>
139
+ <input type="text" class="fromfiled" name="site_key[]" placeholder="<?php esc_html_e("Key","enhanced-e-commerce-for-woocommerce-store"); ?>" maxlength="100" onblur="this.value=removeSpaces(this.value);">
140
  </div>
141
  <div class="form-col-8 mb1">
142
+ <label><?php esc_html_e("Site URL Value","enhanced-e-commerce-for-woocommerce-store"); ?></label>
143
+ <input type="text" class="fromfiled" name="site_url[]" placeholder="<?php esc_html_e("Site URL","enhanced-e-commerce-for-woocommerce-store"); ?>">
144
  </div>
145
  </div>
146
  <?php }?>
148
  <div class="form-row campform-row">
149
  <button type="button" id="add_more_cmp_urls" class="btn-fade-blue">
150
  <img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/blue-plus.png');?>" alt="">
151
+ <?php esc_html_e("Add Site URLs","enhanced-e-commerce-for-woocommerce-store"); ?></button>
152
  </div>
153
  <div class="form-row campform-row">
154
  <?php
155
  $maximizeconversionvalue = isset($this->campaign->maximizeConversionValue)?$this->campaign->maximizeConversionValue:"";
156
  $target_roas = $this->object_value($maximizeconversionvalue, "targetRoas")*100; ?>
157
+ <label><?php esc_html_e("Target ROAS (%)","enhanced-e-commerce-for-woocommerce-store"); ?></label>
158
  <small>Formula: Conversion value ÷ ad spend x 100% = target ROAS percentage</small>
159
+ <input type="number" name="target_roas" value="<?php echo esc_attr($target_roas); ?>" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Number","enhanced-e-commerce-for-woocommerce-store"); ?>">
160
  </div>
161
  <div class="form-row campform-row">
162
+ <label><?php esc_html_e("FINAL URL Suffix","enhanced-e-commerce-for-woocommerce-store"); ?></label>
163
+ <input type="text" name="final_url_suffix" value="<?php echo esc_attr($this->object_value($this->campaign, "finalUrlSuffix")); ?>" class="fromfiled smtext" placeholder="<?php esc_html_e("Add Suffix","enhanced-e-commerce-for-woocommerce-store"); ?>">
164
  </div>
165
  <div class="form-row campform-row">
166
+ <label><?php esc_html_e("Start Date","enhanced-e-commerce-for-woocommerce-store"); ?></label>
167
  <input type="text" name="start_date" id="start_date" value="<?php echo esc_attr($this->object_value($this->campaign, "startDate")); ?>" class="fromfiled smtext datepicker">
168
  </div>
169
  <div class="form-row campform-row">
170
+ <label><?php esc_html_e("End Date","enhanced-e-commerce-for-woocommerce-store"); ?></label>
171
  <input type="text" name="end_date" id="end_date" value="<?php echo esc_attr($this->object_value($this->campaign, "endDate")); ?>" class="fromfiled smtext datepicker">
172
  </div>
173
  <p class="label"><b>Status</b></p>
174
  <div class="form-row form-row-grp campform-row">
175
  <input type="radio" <?php echo ($this->campaign->status == "ENABLED")?'checked="checked"':''; ?> class="radio" value="ENABLED" name="status" id="cmp_active">
176
+ <label class="radio-label" for="cmp_active"><?php esc_html_e("Enable","enhanced-e-commerce-for-woocommerce-store"); ?></label>
177
  <input type="radio" <?php echo ($this->campaign->status == "PAUSED")?'checked="checked"':''; ?> class="radio" value="PAUSED" name="status" id="cmp_inactive">
178
+ <label class="radio-label" for="cmp_inactive"><?php esc_html_e("Pause","enhanced-e-commerce-for-woocommerce-store"); ?></label>
179
  <input type="radio" <?php echo ($this->campaign->status == "REMOVED")?'checked="checked"':''; ?> class="radio" value="REMOVED" name="status" id="cmp_removed">
180
+ <label class="radio-label" for="cmp_removed"><?php esc_html_e("Remove","enhanced-e-commerce-for-woocommerce-store"); ?></label>
181
  </div>
182
  <div class="campfooterbtn">
183
  <input type="hidden" name="customer_id" value="<?php echo esc_attr($this->google_ads_id); ?>">
185
  <input type="hidden" name="campaign_id" value="<?php echo esc_attr($this->campaign_id); ?>">
186
  <input type="hidden" name="resource_name" value="<?php echo esc_attr($this->campaign->resourceName); ?>">
187
  <input type="hidden" name="campaign_budget_resource_name" value="<?php echo esc_attr($this->campaign->campaignBudget); ?>">
188
+ <button type="submit" class="ppblubtn cretemrchntbtn"><?php esc_html_e("Save","enhanced-e-commerce-for-woocommerce-store"); ?></button>
189
  </div>
190
  </form>
191
  <div class="alert-message" id="tvc_pmax_popup_box"></div>
192
  <div id="add_loading"></div>
193
  </div>
194
 
195
+ <a href="<?php echo esc_url_raw($this->site_url); ?>" class="btn-withborder"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL."/admin/images/icon/left-angle-arrow.svg"); ?>"alt="back"/> <?php esc_html_e("Back to List","enhanced-e-commerce-for-woocommerce-store"); ?></a>
196
  </div>
197
  <?php /*<div id="tab2" class="tab">
198
  <h3>Link the Assets</h3>
includes/setup/pmax.php CHANGED
@@ -55,19 +55,19 @@ class TVC_PMax {
55
  <div class="mt24 whiteroundedbx dshreport-sec" style="box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);">
56
  <div class="row dsh-reprttop">
57
  <div class="dshrprttp-left">
58
- <h3><?php esc_html_e("Performance Max campaigns","conversios"); ?></h3>
59
  <?php /*<h4 style="margin-bottom: 15px;"><strong>Campaign Performance</strong></h4>*/ ?>
60
  </div>
61
  </div>
62
  <div class="google-account-analytics">
63
  <div class="row mb-3">
64
  <div class="col-6 col-md-6 col-lg-6">
65
- <h2 class="ga-title"><?php esc_html_e("Connected Google Ads account:","conversios"); ?></h2>
66
  </div>
67
  <div class="col-6 col-md-6 col-lg-6 text-right">
68
  <div class="acc-num">
69
  <p class="ga-text">
70
- <span><a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>" class="text-underline"><?php echo esc_html__('Get started','conversios'); ?></a></span>
71
  </p>
72
  <p class="ga-text text-right"><a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>" class="text-underline"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/add.svg'); ?>" alt="connect account"/></a></p>
73
  </div>
@@ -88,32 +88,32 @@ class TVC_PMax {
88
  <div class="mt24 whiteroundedbx dshreport-sec" style="box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);">
89
  <div class="row dsh-reprttop">
90
  <div class="dshrprttp-left">
91
- <h3><?php esc_html_e("Performance Max campaigns","conversios"); ?></h3>
92
  <?php /*<h4 style="margin-bottom: 15px;"><strong>Campaign Performance</strong></h4>*/ ?>
93
  </div>
94
  <div class="search-container">
95
- <a class="feedback_btn btn-campaign" href="<?php echo esc_url_raw($this->site_url.'pmax_add'); ?>"><?php esc_html_e("Create a New Campaign","conversios"); ?></a>
96
  </div>
97
  </div>
98
  <div class="dashtablewrp campaign_pmax_list" id="campaign_pmax_list">
99
  <table class="dshreporttble mbl-table campaign-list-tbl">
100
  <thead>
101
  <tr>
102
- <th class="prdnm-cell"><?php esc_html_e("Campaign","conversios"); ?></th>
103
- <th><?php esc_html_e("Daily Budget ","conversios"); ?>(<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>)</th>
104
- <th><?php esc_html_e("Status","conversios"); ?></th>
105
- <th><?php esc_html_e("Clicks","conversios"); ?></th>
106
- <th><?php esc_html_e("Cost ","conversios"); ?>(<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>)</th>
107
- <th><?php esc_html_e("Conversions ","conversios"); ?></th>
108
- <th><?php esc_html_e("Sales","conversios"); ?></th>
109
- <th><?php esc_html_e("Action","conversios"); ?></th>
110
  </tr>
111
  </thead>
112
  <tbody></tbody>
113
  </table>
114
  <div class="syncprofooter">
115
  <div class="properpage">
116
- <?php esc_html_e("Items per page:","conversios"); ?>
117
  <select class="properselect" name="page_size" id="page_size" style="display: inline-table;">
118
  <option value="5">5</option>
119
  <option value="10">10</option>
@@ -124,11 +124,11 @@ class TVC_PMax {
124
 
125
  <div class="syncpropagination">
126
  <div class="page_no_sec">
127
- <?php esc_html_e("Page","conversios"); ?> <span id="page_no">1</span>
128
  </div>
129
  <ul>
130
- <li class="prevli"><button data-token="" class="paginitem pgprevbtn" disabled><?php esc_html_e("Prev","conversios"); ?></button></li>
131
- <li class="nextli"><button data-token="" data-token="" class="paginitem pgnextbtn"><?php esc_html_e("Next","conversios"); ?></button></li>
132
  </ul>
133
  </div>
134
  </div>
55
  <div class="mt24 whiteroundedbx dshreport-sec" style="box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);">
56
  <div class="row dsh-reprttop">
57
  <div class="dshrprttp-left">
58
+ <h3><?php esc_html_e("Performance Max campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
59
  <?php /*<h4 style="margin-bottom: 15px;"><strong>Campaign Performance</strong></h4>*/ ?>
60
  </div>
61
  </div>
62
  <div class="google-account-analytics">
63
  <div class="row mb-3">
64
  <div class="col-6 col-md-6 col-lg-6">
65
+ <h2 class="ga-title"><?php esc_html_e("Connected Google Ads account:","enhanced-e-commerce-for-woocommerce-store"); ?></h2>
66
  </div>
67
  <div class="col-6 col-md-6 col-lg-6 text-right">
68
  <div class="acc-num">
69
  <p class="ga-text">
70
+ <span><a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>" class="text-underline"><?php echo esc_html__('Get started','enhanced-e-commerce-for-woocommerce-store'); ?></a></span>
71
  </p>
72
  <p class="ga-text text-right"><a href="<?php echo esc_url_raw($this->TVC_Admin_Helper->get_onboarding_page_url()); ?>" class="text-underline"><img src="<?php echo esc_url_raw(ENHANCAD_PLUGIN_URL.'/admin/images/icon/add.svg'); ?>" alt="connect account"/></a></p>
73
  </div>
88
  <div class="mt24 whiteroundedbx dshreport-sec" style="box-shadow: 0px 4px 10px rgb(0 0 0 / 25%);">
89
  <div class="row dsh-reprttop">
90
  <div class="dshrprttp-left">
91
+ <h3><?php esc_html_e("Performance Max campaigns","enhanced-e-commerce-for-woocommerce-store"); ?></h3>
92
  <?php /*<h4 style="margin-bottom: 15px;"><strong>Campaign Performance</strong></h4>*/ ?>
93
  </div>
94
  <div class="search-container">
95
+ <a class="feedback_btn btn-campaign" href="<?php echo esc_url_raw($this->site_url.'pmax_add'); ?>"><?php esc_html_e("Create a New Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></a>
96
  </div>
97
  </div>
98
  <div class="dashtablewrp campaign_pmax_list" id="campaign_pmax_list">
99
  <table class="dshreporttble mbl-table campaign-list-tbl">
100
  <thead>
101
  <tr>
102
+ <th class="prdnm-cell"><?php esc_html_e("Campaign","enhanced-e-commerce-for-woocommerce-store"); ?></th>
103
+ <th><?php esc_html_e("Daily Budget ","enhanced-e-commerce-for-woocommerce-store"); ?>(<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>)</th>
104
+ <th><?php esc_html_e("Status","enhanced-e-commerce-for-woocommerce-store"); ?></th>
105
+ <th><?php esc_html_e("Clicks","enhanced-e-commerce-for-woocommerce-store"); ?></th>
106
+ <th><?php esc_html_e("Cost ","enhanced-e-commerce-for-woocommerce-store"); ?>(<spn class="ga_currency_symbols"><?php echo esc_attr($this->currency_symbol); ?></spn>)</th>
107
+ <th><?php esc_html_e("Conversions ","enhanced-e-commerce-for-woocommerce-store"); ?></th>
108
+ <th><?php esc_html_e("Sales","enhanced-e-commerce-for-woocommerce-store"); ?></th>
109
+ <th><?php esc_html_e("Action","enhanced-e-commerce-for-woocommerce-store"); ?></th>
110
  </tr>
111
  </thead>
112
  <tbody></tbody>
113
  </table>
114
  <div class="syncprofooter">
115
  <div class="properpage">
116
+ <?php esc_html_e("Items per page:","enhanced-e-commerce-for-woocommerce-store"); ?>
117
  <select class="properselect" name="page_size" id="page_size" style="display: inline-table;">
118
  <option value="5">5</option>
119
  <option value="10">10</option>
124
 
125
  <div class="syncpropagination">
126
  <div class="page_no_sec">
127
+ <?php esc_html_e("Page","enhanced-e-commerce-for-woocommerce-store"); ?> <span id="page_no">1</span>
128
  </div>
129
  <ul>
130
+ <li class="prevli"><button data-token="" class="paginitem pgprevbtn" disabled><?php esc_html_e("Prev","enhanced-e-commerce-for-woocommerce-store"); ?></button></li>
131
+ <li class="nextli"><button data-token="" data-token="" class="paginitem pgnextbtn"><?php esc_html_e("Next","enhanced-e-commerce-for-woocommerce-store"); ?></button></li>
132
  </ul>
133
  </div>
134
  </div>
includes/setup/tatvic-category-wrapper.php CHANGED
@@ -54,7 +54,7 @@ if ( ! class_exists( 'Tatvic_Category_Wrapper' ) ) :
54
  }
55
  }
56
  } else {
57
- $html_code .= esc_html__( 'No shop categories found.', 'conversios' );
58
  }
59
  return $html_code;
60
  }
54
  }
55
  }
56
  } else {
57
+ $html_code .= esc_html__( 'No shop categories found.', 'enhanced-e-commerce-for-woocommerce-store' );
58
  }
59
  return $html_code;
60
  }
public/class-enhanced-ecommerce-google-analytics-public-pro.php CHANGED
@@ -314,25 +314,25 @@ class Enhanced_Ecommerce_Google_Analytics_Public {
314
  function add_page_type() {
315
 
316
  if (is_home() || is_front_page()) {
317
- $t_page_name = esc_html__("Home Page","conversios");
318
  } else if (is_product_category()) {
319
- $t_page_name = esc_html__("Category Pages","conversios");
320
  } else if (is_product()) {
321
- $t_page_name = esc_html__("Product Pages","conversios");
322
  } else if (is_cart()) {
323
- $t_page_name = esc_html__("Cart Page","conversios");
324
  } else if (is_order_received_page()) {
325
- $t_page_name = esc_html__("Thankyou Page","conversios");
326
  } else if (is_checkout()) {
327
- $t_page_name = esc_html__("Checkout Page","conversios");
328
  } else if (is_search()) {
329
- $t_page_name = esc_html__("Search Page","conversios");
330
  } else if (is_shop()) {
331
- $t_page_name = esc_html__("Shop Page","conversios");
332
  } else if (is_404()) {
333
- $t_page_name = esc_html__("404 Error Pages","conversios");
334
  } else {
335
- $t_page_name = esc_html__("Others","conversios");
336
  }
337
  //set js parameter - page name
338
  //$this->wc_version_compare("tvc_pt=" . json_encode($t_page_name) . ";");
@@ -349,9 +349,9 @@ class Enhanced_Ecommerce_Google_Analytics_Public {
349
  $date = date("Y-m-d");
350
  $day = strtolower(date('l', strtotime($date)));
351
  if (($day == "saturday" ) || ($day == "sunday")) {
352
- $day_type = esc_html__("weekend","conversios");
353
  } else {
354
- $day_type = esc_html__("weekday","conversios");
355
  }
356
  return $day_type;
357
  }
314
  function add_page_type() {
315
 
316
  if (is_home() || is_front_page()) {
317
+ $t_page_name = esc_html__("Home Page","enhanced-e-commerce-for-woocommerce-store");
318
  } else if (is_product_category()) {
319
+ $t_page_name = esc_html__("Category Pages","enhanced-e-commerce-for-woocommerce-store");
320
  } else if (is_product()) {
321
+ $t_page_name = esc_html__("Product Pages","enhanced-e-commerce-for-woocommerce-store");
322
  } else if (is_cart()) {
323
+ $t_page_name = esc_html__("Cart Page","enhanced-e-commerce-for-woocommerce-store");
324
  } else if (is_order_received_page()) {
325
+ $t_page_name = esc_html__("Thankyou Page","enhanced-e-commerce-for-woocommerce-store");
326
  } else if (is_checkout()) {
327
+ $t_page_name = esc_html__("Checkout Page","enhanced-e-commerce-for-woocommerce-store");
328
  } else if (is_search()) {
329
+ $t_page_name = esc_html__("Search Page","enhanced-e-commerce-for-woocommerce-store");
330
  } else if (is_shop()) {
331
+ $t_page_name = esc_html__("Shop Page","enhanced-e-commerce-for-woocommerce-store");
332
  } else if (is_404()) {
333
+ $t_page_name = esc_html__("404 Error Pages","enhanced-e-commerce-for-woocommerce-store");
334
  } else {
335
+ $t_page_name = esc_html__("Others","enhanced-e-commerce-for-woocommerce-store");
336
  }
337
  //set js parameter - page name
338
  //$this->wc_version_compare("tvc_pt=" . json_encode($t_page_name) . ";");
349
  $date = date("Y-m-d");
350
  $day = strtolower(date('l', strtotime($date)));
351
  if (($day == "saturday" ) || ($day == "sunday")) {
352
+ $day_type = esc_html__("weekend","enhanced-e-commerce-for-woocommerce-store");
353
  } else {
354
+ $day_type = esc_html__("weekday","enhanced-e-commerce-for-woocommerce-store");
355
  }
356
  return $day_type;
357
  }
readme.txt CHANGED
@@ -5,11 +5,11 @@ Plugin URI: https://wordpress.org/plugins/enhanced-e-commerce-for-woocommerce-st
5
  Tags: Google Analytics tracking, Dynamic Remarketing, Google Shopping automation,Google Shopping, Universal Analytics tracking,Google Analytics integration,Google Analytics integration for WooCommerce,Ecommerce tracking, google analytics 4 tracking, google shopping feed, Web Analytics, Web Analytics For WooCommerce, WooCommerce Enhanced Ecommerce, WooCommerce Google Analytics, Google Analytics Plugin, Enhanced Ecommerce Plugin
6
  Author URI: https://conversios.io/
7
  Author: Tatvic
8
- Requires at least: 3.5.0
9
  Tested up to: 6.0.2
10
  Requires PHP: 5.6 or Higher
11
- Stable tag: 4.9.2
12
- Version: 4.9.2
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
@@ -416,6 +416,9 @@ In GA3 (Universal Analytics) usually, it takes 0 to 45 mins and in GA4 it can ta
416
 
417
 
418
  == Changelog ==
 
 
 
419
  = 4.9.2 - 16/09/2022 =
420
  * In our latest release we have fixed the issues of product attribute mapping with SKU, GTIN and MPIN for variable products.
421
 
5
  Tags: Google Analytics tracking, Dynamic Remarketing, Google Shopping automation,Google Shopping, Universal Analytics tracking,Google Analytics integration,Google Analytics integration for WooCommerce,Ecommerce tracking, google analytics 4 tracking, google shopping feed, Web Analytics, Web Analytics For WooCommerce, WooCommerce Enhanced Ecommerce, WooCommerce Google Analytics, Google Analytics Plugin, Enhanced Ecommerce Plugin
6
  Author URI: https://conversios.io/
7
  Author: Tatvic
8
+ Requires at least: 4.6
9
  Tested up to: 6.0.2
10
  Requires PHP: 5.6 or Higher
11
+ Stable tag: 4.9.3
12
+ Version: 4.9.3
13
  License: GPLv3
14
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
15
 
416
 
417
 
418
  == Changelog ==
419
+ = 4.9.3 - 27/09/2022 =
420
+ * Changed the text domain for internationalization and making it compatible with other locales
421
+
422
  = 4.9.2 - 16/09/2022 =
423
  * In our latest release we have fixed the issues of product attribute mapping with SKU, GTIN and MPIN for variable products.
424