Skip to content

Instantly share code, notes, and snippets.

View mzykin's full-sized avatar
🎯
Focusing

Mary-Ann Zykin mzykin

🎯
Focusing
View GitHub Profile
@mzykin
mzykin / wcm-memberships-shortcodes.php
Last active August 14, 2020 19:10
WooCommerce Memberships shortcodes and other tweaks
<?php
/* ---------------------------------------------------
/** WooCommerce Memberships
--------------------------------------------------- */
/**
* Creates a shortcode to output the "My Memberships" table anywhere on the site
* Outputs this section only if the current user has 1 or more memberships
*
* Use the shortcode: [wcm_my_memberships]
@mzykin
mzykin / ul-checks.scss
Created April 16, 2019 20:17
Unordered list with custom checkmarks
ul.checks {
margin-left: 0;
li {
list-style-type: none;
margin-bottom: 20px;
&::before {
content: '';
<?php
/**
* *whitelabel* Beaver Builder
* Please support Beaver Builder by buying the product at wpbeaverbuilder.com
*/
class FLBuilderWhiteLabel {
public static function is_white_labeled() {
return true;
}
@mzykin
mzykin / functions.php
Created March 28, 2019 20:39 — forked from geckoseo/functions.php
Optimize BB for loading
<?php
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'font-awesome' );
wp_dequeue_script( 'jquery-magnificpopup' );
wp_dequeue_style( 'jquery-magnificpopup' );
wp_dequeue_script( 'jquery-waypoints' );
wp_dequeue_script( 'imagesloaded' );
wp_dequeue_script( 'jquery-throttle' );
@mzykin
mzykin / install-php-7-2.sh
Last active November 16, 2018 17:50 — forked from mavieth/install-php-7.sh
Upgrade from PHP X.X.X to PHP 7.2 on an AWS EC2 Linux Server
#!/bin/bash
echo "==============================="
echo "Installing PHP 7.2"
echo "==============================="
sudo yum install php72
echo "==============================="
echo "Installing PHP 7.2 additional commonly used php packages"
echo "==============================="
@mzykin
mzykin / remove-edit-link.php
Last active November 10, 2017 22:24
Remove "Edit" link at bottom of Wordpress pages