Skip to content

Instantly share code, notes, and snippets.

@barrd
barrd / wp-hide-jquery-migration-notice.php
Created February 18, 2021 07:31
WordPress hide jQuery migration notice and disable admin email
<?php
/**
 * Hide jQuery Migration notice
 *
 * Temp fix until plugin can be removed
 *
 * @return void
 */
function removes_migrate_warning() {
@jaircuevajunior
jaircuevajunior / php5.6_plesk_obsidian_ubuntu18.04.md
Last active August 10, 2023 23:12
Instalando PHP 5.6 FPM no Plesk Obisidian utilizando Ubuntu 18.04

Instalando PHP 5.6 FPM no Plesk Obisidian utilizando Ubuntu 18.04

add-apt-repository ppa:ondrej/php &&\
apt-get update &&\
apt-get install php5.6-fpm php5.6-curl php5.6-gd php5.6-mbstring php5.6-mysql php5.6-xml php5.6-zip -y

mkdir -p /opt/plesk/php/5.6/{bin,etc,sbin} &&\
\
ln -s /etc/php/5.6/fpm/pool.d /opt/plesk/php/5.6/etc/php-fpm.d &amp;&amp;\
@BFTrick
BFTrick / woocommerce-remove-virtual-billing-fields.php
Last active October 16, 2025 05:29
Remove the billing address fields for free virtual orders in WooCommerce
<?php
/**
* Plugin Name: WooCommerce Remove Billing Fields for Free Virtual Products
* Plugin URI: https://gist.github.com/BFTrick/7873168
* Description: Remove the billing address fields for free virtual orders
* Author: Patrick Rauland
* Author URI: http://patrickrauland.com/
* Version: 2.0
*
* This program is free software: you can redistribute it and/or modify