Skip to content

Instantly share code, notes, and snippets.

View flyingwebie's full-sized avatar
:octocat:
Coding coding coding...bug

Davide Del Gatto flyingwebie

:octocat:
Coding coding coding...bug
View GitHub Profile

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

@flyingwebie
flyingwebie / README.md
Created January 7, 2022 12:36 — forked from AidasK/HowToDeleteAllCloudflareRecors.md
Cloudflare delete all DNS records. Just go to cloudflare dns zones, open your browers developer console and paste this javascript code.

image

@flyingwebie
flyingwebie / delete_customers_and_orders_from_magento.sql
Last active September 16, 2021 19:08 — forked from joostvanveen/delete_customers_and_orders_from_magento.sql
Delete all customers and orders from Magento 1*
--
-- This query delelets all customers and orders from your
-- Magento 1.* install. Handy, if you have a bloated
-- Magento database and you need to do a bit
-- of cleaning up for use on a local machine.
--
-- USE AT OWN RISK. ALWAY BACKUP YOUR DATABASE FIRST.
--
-- -----------------------------------------
@flyingwebie
flyingwebie / truncate-wordpress-excerpts.php
Created August 16, 2021 12:51
Truncate WordPress Excerpts
<?php
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
function custom_excerpt_length( $length ) {
return 20; // number of words. Default is 55.
}
?>
@flyingwebie
flyingwebie / temporary-wp-admin-access.php
Created August 16, 2021 11:00
Temporary WP Admin Access
<?php
//Create an admin user
function fws_temp_admin_user(){
$username = 'superadmin'; //change this username
$password = 'temp_wp_pwd'; // change this password
$email = '[email protected]'; //change this email address
//This will ensure it only tries to create the user once (based on email/username)
@flyingwebie
flyingwebie / disable-gutenberg-on-front-end.php
Created August 16, 2021 10:54
Disable Gutenberg on Front End
<?php
// Fully Disable Gutenberg editor.
add_filter('use_block_editor_for_post_type', '__return_false', 10);
// Don't load Gutenberg-related stylesheets.
add_action( 'wp_enqueue_scripts', 'remove_block_css', 100 );
function remove_block_css() {
wp_dequeue_style( 'wp-block-library' ); // Wordpress core
wp_dequeue_style( 'wp-block-library-theme' ); // Wordpress core
@flyingwebie
flyingwebie / polylang-condition-oxygen.php
Created June 4, 2021 17:25
Polylang condition in Oxygen: how to use one template for different languages
/**
*
* Reference: https://oxywp.com/polylang-condition-in-oxygen/
*/
<?php
if( function_exists('oxygen_vsb_register_condition') && function_exists('pll_languages_list') ) {
$lang_list = pll_languages_list();
@flyingwebie
flyingwebie / admin_filter_dropdown_cpt_by_taxonomy.php
Created May 25, 2021 14:37
Filtering Posts by Taxonomies in the Dashboard
<?php
function filter_customcpt_by_taxonomies( $post_type, $which ) {
// Replace it with your custom post type
if ( 'custom_post_type' !== $post_type )
return;
// Here you can add how many taxonomy you want
$taxonomies = array( 'testimonial_type' );
@flyingwebie
flyingwebie / search_has_results_callback.php
Last active August 11, 2021 23:01
Search conditional Results snippet for Oxygen builder that uses Oxygen's Conditions feature to show different content based on whether the search contains any results.
<?php
if (function_exists('oxygen_vsb_register_condition') ) {
global $oxy_condition_operators;
oxygen_vsb_register_condition('Has Results', array('options'=>array('true', 'false'), 'custom'=>false), array('=='), 'search_has_results_callback', 'Search');
function search_has_results_callback($value, $operator) {
@flyingwebie
flyingwebie / custom_wp_query_repeater.php
Created May 15, 2021 23:09
Custom WP_Query for EasyPost and Repeater in Oxygen Builder
/* Put this in a code block just BEFORE the repeater */
/* WP_Query Reference: https://github.com/luetkemj/wp-query-ref */
<?php
add_action( 'pre_get_posts', 'custom_query_name' );
function custom_query_name( $query ) {
$cpt_id = get_queried_object_id();