This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 "===============================" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
} |