Skip to content

Instantly share code, notes, and snippets.

@ajithrn
ajithrn / wp_api_cors_headers.php
Created March 15, 2019 13:38
CORS for the WordPress REST API
/**
* CORS for the WordPress REST API
*/
function kms_wp_rest_api_cors() {
remove_filter('rest_pre_serve_request', 'rest_send_cors_headers');
add_filter('rest_pre_serve_request', function ($value) {
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET');
header('Access-Control-Allow-Credentials: true');
@ajithrn
ajithrn / wc-percentage-based-surcharge.php
Created March 8, 2019 17:03 — forked from woogists/wc-percentage-based-surcharge.php
[Frontend Snippets][Add a surcharge to cart and checkout] Add a percentage based surcharge to all transactions
/**
* Add a 1% surcharge to your cart / checkout
* change the $percentage to set the surcharge to a value to suit
*/
add_action( 'woocommerce_cart_calculate_fees','woocommerce_custom_surcharge' );
function woocommerce_custom_surcharge() {
global $woocommerce;
if ( is_admin() && ! defined( 'DOING_AJAX' ) )
return;
@ajithrn
ajithrn / css-centre-crop-image.css
Created September 21, 2018 00:39 — forked from rotassator/css-centre-crop-image.css
CSS: centre and crop an image with a fixed height
/* Centre and crop an image with a fixed height */
.crop {
position: relative; /* provide a positioning context */
overflow: hidden;
height: 200px; /* make space */
}
.crop img {
position: absolute;
left: -100%; /* anchor the image corners outside the viewable area (increase for large images) */
right: -100%;
@ajithrn
ajithrn / hosts
Last active June 20, 2017 16:34 — forked from avtaniket/localhost to custom domain in ubuntu.txt
Ubuntu / localhost to custom domain
Step 1: Add domain entry in hosts file (sudo nano /etc/hosts)
127.0.0.1 local-server.dev
Step 2: Add redirection policy in IP-Tables
sudo iptables -t nat -A OUTPUT -o lo -p tcp --dport 80 -j REDIRECT --to-port 8888
@ajithrn
ajithrn / extras.php
Last active February 27, 2017 21:18 — forked from yoren/functions.php
WP : next / prev post link
<?php
/**
* Return the right previous_post_link / next_post_link when change posts order
* ref: https://1fix.io/blog/2014/09/09/get-right-previous_post_link-when-order-posts-by-menu_order/
* more reading : http://wordpress.stackexchange.com/questions/73190/can-the-next-prev-post-links-be-ordered-by-menu-order-or-by-a-meta-key
*/
function kms_previous_post_where() {
global $post, $wpdb;
return $wpdb->prepare( "WHERE p.menu_order < %s AND p.post_type = %s AND p.post_status = 'publish'", $post->menu_order, $post->post_type);
// Alerts
@include alert-variant($background, $border, $text-color);
// Background Variant
@include bg-variant($parent, $color);
// Border Radius
@include border-top-radius($radius);
@include border-right-radius($radius);
@include border-bottom-radius($radius);

Keybase proofI hereby claim: * I am ajithrn on github. * I am ajithrn (https://keybase.io/ajithrn) on keybase. * I have a public key whose fingerprint is 5F27 72B1 14D4 A3DF B546 B887 3885 85FE A8FE A168To claim this, I am signing this object:```json{ "body": { "key": { "eldest_kid": "010156aa08d1a6a35f6d82389a82f243d748c65b5c6df93bf68f1fc2678969b6f6800a", "fingerprint": "5f2772b114d4a3dfb546b887388585fea8fea168", "host": "keybase.io", "key_id": "388585fea8fea168", "kid": "010156aa08d1a6a35f6d82389a82f243d748c65b5c6df93bf68f1fc2678969b6f6800a", "uid": "d7159c83cb4a68e2224f3e7d64296019", "username": "ajithrn" }, "service": { "name": "github", "username": "ajithrn" }, "type": "web_service_binding", "version": 1 }, "ctime": 1480881277, "expire_in": 157680000, "prev": "3e06523e876e9b04cc93054c457a9d8eaec95faef638dc72f7b491416fa25054", "seqno": 7,

@ajithrn
ajithrn / export.sql
Created December 2, 2016 20:23 — forked from jonahcoyote/export.sql
Sabai Directory Export SQL
/*
Intro:
Here are some export examples you can use to export Sabai directory data. I'm no MySQL expert and there's probably better ways to run these queries but this worked for my purposes. I hope this helps!
Note, this is going to export all columns and you'll need to manually go in and remove columns you don't need in Excel or Numbers or whatever spreadsheet program you have.
Usage:
This is meant to be run in phpMyAdmin. Look at your own table structure and modify as necessary for any custom fields, table prefix, and custom bundle. Custom fields are storedin their own tables and cross linked via entity_id which is the id of a listing.
*/
@ajithrn
ajithrn / remove-rev-slider-meta.php
Created August 27, 2016 21:42
WP: Remove Rev Slider metabox
/**
* Helper for removing the Revslider Metabox from being on every CPT edit screen
* Modified for sagetheme (roots.io), place in the lib/extras.php
* Ref: https://gist.github.com/DevinWalker/ee9d4e53883460c6bbb8
*
* @param $post_type
*/
function remove_revslider_metabox($post_type)
{
add_action('do_meta_boxes', function () use ($post_type) {
@ajithrn
ajithrn / wp-include-jquery.php
Created October 5, 2015 17:13
WordPress: Inclide Jquery
/**
* Add jQuery from google cdn
*/
function add_jquery_script() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', '', false);