tools.php 922 B

1234567891011121314151617
  1. <?php
  2. // Exit if accessed directly
  3. if ( ! defined( 'ABSPATH' ) ) {
  4. exit;
  5. }
  6. function monsterinsights_tools_url_builder() {
  7. ob_start();?>
  8. <div class="monsterinsights-upsell-under-box">
  9. <h2><?php esc_html_e( "Want even more fine tuned control over your website analytics?", 'google-analytics-for-wordpress' ); ?></h2>
  10. <p class="monsterinsights-upsell-lite-text"><?php esc_html_e( "By upgrading to MonsterInsights Pro, you can unlock the MonsterInsights URL builder that helps you better track your advertising and email marketing campaigns.", 'google-analytics-for-wordpress' ); ?></p>
  11. <p><a href="<?php echo monsterinsights_get_upgrade_link(); ?>" class="button button-primary"><?php esc_html_e( "Click here to Upgrade", 'google-analytics-for-wordpress' ); ?></a></p>
  12. </div>
  13. <?php
  14. echo ob_get_clean();
  15. }
  16. add_action( 'monsterinsights_tools_url_builder_tab', 'monsterinsights_tools_url_builder' );