ライセンスの有効期限が切れると、プラグイン設定内にリマインダー通知が表示され、WordPressダッシュボードに解除可能な通知が表示されます。管理者のみにこの通知を表示するには、テーマの functions.php ファイル:
インスタグラムの更新通知は管理者のみに表示されます:
add_action('admin_head', 'hide_instagram_renewal');
function hide_instagram_renewal() {
if( !is_admin() ) echo '<style>.sbi-license-expired, .sbi-license-countdown{ display: none; }</style>';
}
プラグイン更新のお知らせはすべて管理者にのみ表示されます:
add_action('admin_head', 'hide_smash_balloon_renewals');
function hide_smash_balloon_renewals() {
if( !is_admin() ) echo '<style>.sbi-license-expired, .sbi-license-countdown, .cff-license-expired, .cff-license-countdown, .ctf-license-expired, .ctf-license-countdown{ display: none; }</style>';
}