Skip to content

Instantly share code, notes, and snippets.

View almone's full-sized avatar

Sergey Arustamov almone

View GitHub Profile
var gulp = require('gulp');
var bs = require('browser-sync').create();
var reload = bs.reload;
// watch files for changes and reload
gulp.task('watch', function(gulpCallback) {
// bs.init
bs.init({
proxy: "example.dev"
<?php
// Stop TinyMCE cleaning HTML code
function myformatTinyMCE($in) {
$in['verify_html']=false;
return $in;
}
add_filter('tiny_mce_before_init', 'myformatTinyMCE' );
?>
@almone
almone / scopes.txt
Created February 24, 2016 10:08 — forked from iambibhas/scopes.txt
Sublime Text 2: Snippet scopes
Here is a list of scopes to use in Sublime Text 2 snippets -
ActionScript: source.actionscript.2
AppleScript: source.applescript
ASP: source.asp
Batch FIle: source.dosbatch
C#: source.cs
C++: source.c++
Clojure: source.clojure
CoffeeScript: source.coffee
@almone
almone / gist:e815251cb342f70b7daf
Created February 18, 2016 13:58
Remove Sendmail from Ubuntu

Remove Sendmail from Ubuntu

This should help you completely uninstall Sendmail and all that comes with it.

First, stop the service (assuming it's running).

sudo /etc/init.d/sendmail stop

Uninstall sendmail and sendmail-bin

@almone
almone / functions.php
Created February 11, 2016 20:25 — forked from paulcollett/functions.php
Remove Yoast HTML Comments “This site is optimized with the Yoast WordPress SEO plugin”
// Add to your Wordpress Theme's functions.php
// Remove All Yoast HTML Comments
// https://gist.github.com/paulcollett/4c81c4f6eb85334ba076
if (defined('WPSEO_VERSION')){
add_action('get_header',function (){ ob_start(function ($o){
return preg_replace('/\n?<.*?yoast.*?>/mi','',$o); }); });
add_action('wp_head',function (){ ob_end_flush(); }, 999);
}
@almone
almone / gist:5c7da2870a720df52247
Last active October 20, 2018 06:27
Clean wp_head from junk
// Clean wp_head from junk
add_action('after_setup_theme', 'start_cleanup');
function start_cleanup() {
// Initialize the cleanup
add_action('init', 'cleanup_head');
}
// WordPress cleanup function
function cleanup_head() {
remove_action('wp_head', 'rsd_link'); // EditURI link
@almone
almone / plugin_extends.php
Created December 11, 2015 06:31 — forked from jonathanbardo/plugin_extends.php
Override/Extends a plugin
<?php
/**
* Plugin Name: Extend a plugin
* Version: 0.0.1
* Author: Jonathan Bardo
* License: GPLv2+
* Author URI: http://jonathanbardo.com
*/
class Test extends Date_Range_Filter {
@almone
almone / gist:2cecbe50538f567ad4de
Created December 8, 2015 09:00
WooCommerce Minimum Order Amount
// Minimum Order Amount - from 3000
add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' );
add_action( 'woocommerce_before_cart' , 'wc_minimum_order_amount' );
function wc_minimum_order_amount() {
// Set this variable to specify a minimum order value
$minimum = 3000;
if ( WC()->cart->total < $minimum ) {
@almone
almone / gist:0b7129c5dee3757aee26
Created December 3, 2015 03:28 — forked from mikejolley/gist:3012597
WooCommerce - Manipulate the states
/**
* Code goes in functions.php or a custom plugin. Replace XX with the country code your changing.
*/
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['XX'] = array(
'XX1' => 'State 1',
'XX2' => 'State 2'
@almone
almone / css_resources.md
Last active August 29, 2015 14:20 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides