PluginProbe ʕ •ᴥ•ʔ
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) / 3.5.0
CookieYes – Cookie Banner for Cookie Consent (Easy to setup GDPR/CCPA Compliant Cookie Notice) v3.5.0
3.5.1 3.5.0 3.4.2 trunk 1.0.1 1.0.3 1.2 1.2.1 1.2.2 1.3 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.5 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.10 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.2.0 3.2.1 3.2.10 3.2.2 3.2.3 3.2.4 3.2.5 3.2.6 3.2.7 3.2.8 3.2.9 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.3.9.1 3.4.0 3.4.1
cookie-law-info / legacy / admin / views / admin-settings-advanced.php
cookie-law-info / legacy / admin / views Last commit date
admin-settings-advanced.php 2 weeks ago admin-settings-buttons.php 2 weeks ago admin-settings-general.php 2 weeks ago admin-settings-help.php 2 weeks ago admin-settings-messagebar.php 2 weeks ago admin-settings-save-button.php 2 weeks ago
admin-settings-advanced.php
25 lines
1 <?php
2 // If this file is called directly, abort.
3 if ( ! defined( 'WPINC' ) ) {
4 die;
5 }
6 ?>
7 <div class="cookie-law-info-tab-content" data-id="<?php echo esc_attr( $target_id ); ?>">
8 <h3><?php echo esc_html__( 'Advanced', 'cookie-law-info' ); ?></h3>
9 <p><?php echo esc_html__( 'Sometimes themes apply settings that clash with plugins. If that happens, try adjusting these settings.', 'cookie-law-info' ); ?></p>
10
11 <table class="form-table">
12 <tr valign="top">
13 <th scope="row"><?php echo esc_html__( 'Reset settings', 'cookie-law-info' ); ?></th>
14 <td>
15 <input type="submit" name="delete_all_settings" value="<?php echo esc_html__( 'Delete settings and reset', 'cookie-law-info' ); ?>" class="button-secondary" onclick="cli_store_settings_btn_click(this.name); if(confirm('<?php echo esc_html__( 'Are you sure you want to delete all your settings and switch to the new interface?', 'cookie-law-info' ); ?>')){ }else{ return false;};" />
16 <span class="cli_form_help"><?php echo esc_html__( 'Warning: Resets all your current settings to default. This action will switch you to the new and improved user interface and this action is not reversible.', 'cookie-law-info' ); ?></span>
17 </td>
18 </tr>
19 </table>
20 <?php do_action( 'wt_cli_after_advanced_settings' ); ?>
21 <?php
22 require 'admin-settings-save-button.php';
23 ?>
24 </div>
25