1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php /* * No direct access to this file */ if (! isset($data)) { exit; }
include_once '_top-area.php'; ?> <div class="wpacu-wrap">
<p><?php echo sprintf( __('You\'re using the lite version of %s (v%s), so no license key is needed. You\'ll receive automatic notifications whenever a new version is available for download.', 'wp-asset-clean-up'), WPACU_PLUGIN_TITLE, WPACU_PLUGIN_VERSION ); ?></p> <p><em><?php echo sprintf( __('To unlock all features and get premium support, you can %supgrade to the Pro version%s.', 'wp-asset-clean-up'), '<a href="'.WPACU_PLUGIN_GO_PRO_URL.'?utm_source=plugin_license">', '</a>' ); ?></em></p>
<div class="wrap-upgrade-info"> <p><span class="dashicons dashicons-info"></span> <?php echo sprintf( __('If you already purchased the Pro version and you don\'t know how to activate it, %sfollow the steps from the "Help" section%s.', 'wp-asset-clean-up'), '<a href="'.admin_url('admin.php?page=wpassetcleanup_get_help').'">', '</a>' ); ?></p> <div class="wpacu-clearfix"></div> </div> </div>
|