AdminOptions.php
1 month ago
editor.php
1 month ago
manager.php
1 month ago
metabox.php
1 month ago
settings.php
1 month ago
whatsnew.php
1 month ago
whatsnew.php
61 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) exit; |
| 3 | define( 'TCMP_WHATSNEW_VERSION', 8 ); |
| 4 | function tcmp_ui_whats_new() { |
| 5 | global $tcmp; |
| 6 | $tcmp->options->setShowWhatsNew( false ); |
| 7 | $tcmp->options->setShowWhatsNewSeenVersion( TCMP_WHATSNEW_VERSION ); |
| 8 | ?> |
| 9 | |
| 10 | <p class="tcmp-headline">What's new in Tracking Code Manager?</p> |
| 11 | <table border="0" class="tcmp-grid"> |
| 12 | <tr valign="top"> |
| 13 | <td valign="top" width="50%"> |
| 14 | Now the Tracking Code Manager let you: |
| 15 | <ul> |
| 16 | <li>Use tracking codes by device types</li> |
| 17 | <li>Sort tracking codes using drag & drop</li> |
| 18 | <li>Shortcode support</li> |
| 19 | <li>Fixed 6 small issues</li> |
| 20 | <li>Quick support links added</li> |
| 21 | </ul> |
| 22 | <br> |
| 23 | |
| 24 | <p class="tcmp-subheadline">Dynamic Conversion Values</p> |
| 25 | <p>Finally, Dynamic Conversion Values are now available for WooCommerce and Easy Digital Download. Now you can track the values of your conversions on <b>Google Adwords</b> and <b>Facebook Ads</b> (with the <b>New Pixel</b> and relative events like "Purchase" and others), and many other channels.</p> |
| 26 | <img src="<?php echo TCMP_PLUGIN_ASSETS_URI; ?>landing/tcmp-fb.png" /> |
| 27 | <br> |
| 28 | <br> |
| 29 | <div style="float: right;"> |
| 30 | <a class="button button-secondary" href="<?php echo TCMP_TAB_MANAGER_URI; ?>&hwb=1">CONTINUE USING FREE VERSION</a> |
| 31 | <a class="button button-primary" href="<?php echo TCMP_TAB_DOCS_DCV_URI; ?>?utm_campaign=whatsnew" target="_blank">SEE MORE ››</a> |
| 32 | </div> |
| 33 | </td> |
| 34 | <td valign="top" width="50%" style="border-left: 1px solid #44444E;"> |
| 35 | <p class="tcmp-subheadline" style="margin-top: 0px!important;">Introducing the Tracking Code Manager brother!</p> |
| 36 | <p>We are proud to introduce Posts' Footer Manager, a free plugin that let you clean and organize the stuff you have in the footer of your blogpost.</p> |
| 37 | <p>If you are tired of the MESSY stuff that appears after the content of your pages and articles, you should give it a go.</p> |
| 38 | <div style="float: right;"> |
| 39 | <a class="button button-secondary" href="http://wordpress.org/plugins/intelly-posts-footer-manager" target="_blank"> |
| 40 | Download Posts' Footer Manager from Wordpress.org ›› |
| 41 | </a> |
| 42 | </div> |
| 43 | <br> |
| 44 | <br> |
| 45 | <br> |
| 46 | |
| 47 | <p class="tcmp-subheadline">Our new awesome Plugins:</p> |
| 48 | <p>Built by Marketers, for Marketers.</p> |
| 49 | <ul> |
| 50 | <li><a href="https://intellywp.com/custom-audiences-enhancer/?utm_campaign=whatsnew" target="_blank">Custom Audiences Enhancer</a></li> |
| 51 | <li><a href="https://wordpress.org/plugins/intelly-welcome-bar/" target="_blank">Welcome Bar</a></li> |
| 52 | <li><a href="https://wordpress.org/plugins/intelly-related-posts/" target="_blank">Inline Related Posts</a></li> |
| 53 | <li><a href="https://wordpress.org/plugins/intelly-countdown/" target="_blank">Evergreen Countdown Timer</a></li> |
| 54 | <li><a href="https://wordpress.org/plugins/intelly-posts-footer-manager/" target="_blank">Posts' Footer Manager</a></li> |
| 55 | </ul> |
| 56 | </td> |
| 57 | </tr> |
| 58 | </table> |
| 59 | <?php |
| 60 | } |
| 61 |