analytics.php
1 year ago
design-preview.php
1 year ago
design-settings.php
1 year ago
display-settings.php
1 year ago
floating-widget-settings.php
1 year ago
meta-accounts.php
1 year ago
meta-button-style.php
1 year ago
selected-accounts.php
1 year ago
settings.php
1 year ago
url-settings.php
1 year ago
woocommerce-button.php
1 year ago
analytics.php
36 lines
| 1 | <p><?php echo __( 'Enable WhatsApp trackers to monitor your WhatsApp widget, button and other guest activities.', 'wp-whatsapp' ); ?></p> |
| 2 | <table class="form-table"> |
| 3 | <tbody> |
| 4 | <tr> |
| 5 | <th scope="row"><label for="enabledGoogle"><?php echo __( 'Google Analytics (PRO)', 'wp-whatsapp' ); ?></label></th> |
| 6 | <td> |
| 7 | <div class="nta-wa-switch-control"> |
| 8 | <input type="checkbox" id="enabledGoogle" name="enabledGoogle" <?php checked( $option['enabledGoogle'], 'ON' ); ?>> |
| 9 | <label for="enabledGoogle" class="green njt-wa-pro-tooltip"></label> |
| 10 | </div> |
| 11 | <p class="description"><?php echo __( 'Gain insights of WhatsApp tracking in Google Analytics > Behavior > Events', 'wp-whatsapp' ); ?></p> |
| 12 | </td> |
| 13 | </tr> |
| 14 | <tr class="<?php echo ( $option['enabledGoogle'] === 'ON' ) ? '' : 'hidden'; ?>"> |
| 15 | <th></th> |
| 16 | <td> |
| 17 | <div class="nta-wa-switch-control"> |
| 18 | <input type="checkbox" id="enabledGoogleGA4" name="enabledGoogleGA4" <?php checked( $option['enabledGoogleGA4'], 'ON' ); ?>> |
| 19 | <label for="enabledGoogleGA4" class="green"></label> |
| 20 | </div> |
| 21 | <p class="description"><?php echo __( 'Please enable this feature if your website is using Google Analytics 4', 'wp-whatsapp' ); ?></p> |
| 22 | </td> |
| 23 | </tr> |
| 24 | <tr> |
| 25 | <th scope="row"><label for="enabledFacebook"><?php echo __( 'Facebook Pixel (PRO)', 'wp-whatsapp' ); ?></label></th> |
| 26 | <td> |
| 27 | <div class="nta-wa-switch-control"> |
| 28 | <input type="checkbox" id="enabledFacebook" name="enabledFacebook" <?php checked( $option['enabledFacebook'], 'ON' ); ?>> |
| 29 | <label for="enabledFacebook" class="green njt-wa-pro-tooltip"></label> |
| 30 | </div> |
| 31 | <p class="description"><?php echo __( 'Access Facebook for Business and view recorded events in Event Manager', 'wp-whatsapp' ); ?></p> |
| 32 | </td> |
| 33 | </tr> |
| 34 | </tbody> |
| 35 | </table> |
| 36 | <button class="button button-large button-primary wa-save"><?php echo __( 'Save Changes', 'wp-whatsapp' ); ?><span></span></button> |