Skip to content

Instantly share code, notes, and snippets.

View raftaar1191's full-sized avatar
🏠
Working from home

Deepak Gupta raftaar1191

🏠
Working from home
View GitHub Profile
@raftaar1191
raftaar1191 / shell.bash
Created March 7, 2018 21:58
Display xbedug in Local By Flyweel
1> Login into the sites shell of Local By Flyweel sites
2> Then past the following command into the login shell `php -i | grep "php.ini"`
OUTPUT
root@05438eed18c9:/# php -i | grep "php.ini"
Configuration File (php.ini) Path => /conf/php/7.0.3
Loaded Configuration File => /conf/php/7.0.3/php.ini
@raftaar1191
raftaar1191 / funtions.php
Created May 16, 2018 23:08
var_dump in new file
error_log( print_r( $is_active, true ) . "\n", 3, WP_CONTENT_DIR . '/debug_new.log' );
@raftaar1191
raftaar1191 / mysql command
Last active September 7, 2020 06:40
MYSQL
mysql -u UN -h HOSTNAME -p DATABASENAME < FILENAME.sql
mysql -u root -h localhost -p local < mysql.sql
@raftaar1191
raftaar1191 / wp-config.php
Created September 25, 2019 09:07
Change the URL from Wp-confi file directly
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' );
@sabrina-zeidan
sabrina-zeidan / stop_loading_unused_blocks _crap.php
Created July 13, 2022 16:00
Stop loading unused Gutenberg blocks assets [WordPress]
//In a better world block's author makes sure the block's assests are loaded only if block is actually in use (via enqueue_block_assets). For other cases:
add_filter( 'script_loader_tag', 'sz_stop_loading_unused_block_crap', 10, 3 );
function sz_stop_loading_unused_block_crap( $tag, $handle, $src ) {
// Check if block's assets are loaded
if (str_contains($src, 'plugins/wp-swiper')) { //plugin directory here
if (is_singular()) {// works only on Singular
//TODO: //Will work for content only. if block is elsewhere or post it's archive use this https://wordpress.stackexchange.com/questions/392493/find-if-widget-block-is-active
$id = get_the_ID();
if (has_block('da/wp-swiper-slide', $id) !== true) { //block name here