advanced-tab.php
1 month ago
analytics-settings-tab.php
1 month ago
asset-preload.php
1 month ago
cached-file-log.php
1 month ago
cached-file.php
1 month ago
capo-js.php
1 month ago
css-settings-tab.php
1 month ago
font-settings-tab.php
1 month ago
html-settings-tab.php
1 month ago
js-settings-tab.php
1 month ago
preload-tab.php
1 month ago
settings-tab.php
1 month ago
status-tab.php
1 month ago
capo-js.php
25 lines
| 1 | <?php if (!defined('ABSPATH')) die('No direct access allowed'); ?> |
| 2 | |
| 3 | <h3><?php esc_html_e('Optimize <head> with Capo.js rules', 'wp-optimize'); ?></h3> |
| 4 | <div class="wpo-fieldgroup"> |
| 5 | <fieldset> |
| 6 | <?php esc_html_e('An unoptimized <head> can slow down your site.', 'wp-optimize'); ?> <?php esc_html_e('Apply Capo.js rules to quickly fix these issues and boost performance.', 'wp-optimize'); ?> |
| 7 | <div class="wpo-fieldgroup__subgroup"> |
| 8 | <h4><label> |
| 9 | <input |
| 10 | name="enable_capo_js" |
| 11 | type="checkbox" |
| 12 | value="true" |
| 13 | disabled |
| 14 | > |
| 15 | <?php |
| 16 | // translators: %s is a link to Capo.js website |
| 17 | printf(esc_html__('Apply %s rules', 'wp-optimize'), '<a href="https://rviscomi.github.io/capo.js/" target="_blank">Capo.js</a>'); |
| 18 | ?> |
| 19 | </label> |
| 20 | </h4> |
| 21 | <a class="" href="https://teamupdraft.com/wp-optimize/pricing/?utm_source=wpo-plugin&utm_medium=referral&utm_campaign=paac&utm_creative_format=overlay&utm_content=capo-js" target="_blank"><?php esc_html_e('Upgrade to WP-Optimize Premium to unlock Capo JS feature.', 'wp-optimize'); ?></a> |
| 22 | </div> |
| 23 | </fieldset> |
| 24 | </div> |
| 25 |