Skip to content

Instantly share code, notes, and snippets.

View paaljoachim's full-sized avatar

Paal Joachim Romdahl paaljoachim

View GitHub Profile
@jodzeee
jodzeee / gist:ab06b148100727852115850c77d81815
Created July 8, 2024 21:24
Remove the plugin notifications from all the pages except the main WP Admin dashboard
<?php
add_action( 'current_screen', function() {
$screen = get_current_screen();
if ( $screen->id !== "dashboard" ) {
add_action( 'admin_enqueue_scripts', function() {
echo '<style>
@damiencarbery
damiencarbery / delete-flamingo-data-shortcode.php
Last active October 13, 2024 15:44
Delete Contact Form 7 Flamingo submissions - Easily delete a large number of Flamingo (Contact Form 7) messages. https://www.damiencarbery.com/2020/03/delete-contact-form-7-flamingo-submissions/
<?php
/*
Plugin Name: Delete Flamingo data shortcode
Plugin URI: https://www.damiencarbery.com/2020/03/delete-contact-form-7-flamingo-submissions/
Description: Shortcode version of standalone script that deletes Flamingo data.
Author: Damien Carbery
Author URI: https://www.damiencarbery.com
Version: 0.1.20241013
License: GPLv2
License URI: https://www.gnu.org/licenses/gpl-2.0.html