Skip to content

Instantly share code, notes, and snippets.

View mzykin's full-sized avatar
🎯
Focusing

Mary-Ann Zykin mzykin

🎯
Focusing
View GitHub Profile
@mzykin
mzykin / install-php-7-2.sh
Last active November 16, 2018 17:50 — forked from mavieth/install-php-7.sh
Upgrade from PHP X.X.X to PHP 7.2 on an AWS EC2 Linux Server
#!/bin/bash
echo "==============================="
echo "Installing PHP 7.2"
echo "==============================="
sudo yum install php72
echo "==============================="
echo "Installing PHP 7.2 additional commonly used php packages"
echo "==============================="
@mzykin
mzykin / functions.php
Created March 28, 2019 20:39 — forked from geckoseo/functions.php
Optimize BB for loading
<?php
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'font-awesome' );
wp_dequeue_script( 'jquery-magnificpopup' );
wp_dequeue_style( 'jquery-magnificpopup' );
wp_dequeue_script( 'jquery-waypoints' );
wp_dequeue_script( 'imagesloaded' );
wp_dequeue_script( 'jquery-throttle' );
<?php
/**
* *whitelabel* Beaver Builder
* Please support Beaver Builder by buying the product at wpbeaverbuilder.com
*/
class FLBuilderWhiteLabel {
public static function is_white_labeled() {
return true;
}