Skip to content

Instantly share code, notes, and snippets.

View jeffreyvr's full-sized avatar
🎸
Freelancing and building my own stuff.

Jeffrey van Rossum jeffreyvr

🎸
Freelancing and building my own stuff.
View GitHub Profile
@jeffreyvr
jeffreyvr / Oembed.php
Last active June 22, 2020 18:27
OEmbed body parser for oscarotero/Embed.
<?php
use Exception;
use Embed\Embed;
class Oembed
{
/**
* Accepted Urls
*
@jeffreyvr
jeffreyvr / coupon-switch-based-on-logged-in.php
Created June 9, 2020 12:30
Simply switching a WooCommerce coupon-code if a user is logged in.
<?php
add_action( 'woocommerce_before_calculate_totals', function () {
if ( is_user_logged_in() ) {
if ( in_array( 'highdiscount', WC()->cart->get_applied_coupons() ) ) {
WC()->cart->remove_coupon( 'highdiscount' );
WC()->cart->add_discount( 'lowdiscount' );
}
}
});
@jeffreyvr
jeffreyvr / .phpcs.xml.dist
Last active May 11, 2020 11:12
WordPress Theme or Plugin setup VSCode
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards based custom ruleset for your plugin">
<description>Generally-applicable sniffs for WordPress plugins.</description>
<!-- What to scan -->
<file>.</file>
<exclude-pattern>/vendor/</exclude-pattern>
<exclude-pattern>/node_modules/</exclude-pattern>
<!-- How to scan -->
@jeffreyvr
jeffreyvr / settings.json
Created February 1, 2020 15:35
VSC settings
{
"workbench.startupEditor": "none",
"markdown.preview.fontSize": 12,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontSize": 16,
"editor.lineHeight": 42,
"workbench.colorCustomizations": {
"[Inspired Github]": {
"editorLineNumber.foreground": "#999",
@jeffreyvr
jeffreyvr / settings.json
Created November 9, 2019 20:58
VSC settings
{
"workbench.startupEditor": "none",
"markdown.preview.fontSize": 12,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.fontSize": 16,
"editor.lineHeight": 42,
"workbench.colorCustomizations": {
"[Inspired Github]": {
"editorLineNumber.foreground": "#999",
@jeffreyvr
jeffreyvr / wp-recount-comments.php
Created April 1, 2015 10:51
WordPress recount comments
<?php
/**
* Put this file in the root of your WordPress installation.
* When done remove it!
*/
include 'wp-blog-header.php';
global $wpdb;
@jeffreyvr
jeffreyvr / whitelist.php
Created December 3, 2018 15:50
Generate commands to whitelist Cloudflare IP's (iptables)
<?php
$ips = file_get_contents( 'https://www.cloudflare.com/ips-v4' );
$ips = explode( PHP_EOL, $ips );
$result = '';
foreach ( $ips as $ip ){
@jeffreyvr
jeffreyvr / functions.php
Created October 23, 2018 10:25
Adding oEmbed filter in custom WordPress function
<?php
function prefix_get_custom_sidebar() {
global $post, $wp_embed;
$custom_sidebar = get_post_meta( $post->ID, 'custom_sidebar', true );
$custom_sidebar = $wp_embed->autoembed( $custom_sidebar ); // Apply oEmbed filter
return $custom_sidebar;
@jeffreyvr
jeffreyvr / MjmlHelper.php
Created March 6, 2018 14:49
Simple helper class for Mjml.
<?php
namespace App\Helpers;
use Config;
class MjmlHelper
{
public static function auth() {
if ( empty( env('MJML_APPID') ) || empty( env('MJML_APPSECRET') ) ) return;
return base64_encode(env('MJML_APPID').':'.env('MJML_APPSECRET'));
@jeffreyvr
jeffreyvr / color-brightness.php
Last active February 15, 2018 14:00
Color brightness rgb
<?php
function color_brightness($hex) {
$hex = str_replace('#', '', $hex);
$strl = strlen($hex)/3;
$c_r = hexdec(substr($hex, 0, $strl));
$c_g = hexdec(substr($hex, $strl, $strl));
$c_b = hexdec(substr($hex, $strl*2, $strl));
$brightness = (($c_r * 299) + ($c_g * 587) + ($c_b * 114)) / 1000;