Skip to content

Instantly share code, notes, and snippets.

.fl-builder-content .fill .fl-button-wrap a.fl-button,
.fl-builder-content .fill-outline .fl-button-group-button:nth-child(1) .fl-button-wrap a.fl-button,
.fl-builder-content .outline-fill .fl-button-group-button:nth-child(2) .fl-button-wrap a.fl-button {
font-family: var(--buttonFontFamily,var(--fontFamily));
font-size: var(--buttonFontSize);
font-weight: var(--buttonFontWeight);
font-style: var(--buttonFontStyle);
letter-spacing: var(--buttonLetterSpacing);
text-transform: var(--buttonTextTransform);
-webkit-text-decoration: var(--buttonTextDecoration);
@seothemes
seothemes / page-builder.php
Created May 22, 2017 04:20
Genesis page template for Beaver Builder.
<?php
/**
* Template Name: Page Builder
*
* This file adds the page builder template to the Genesis Starter theme.
* It removes everything in between the header and footer leaving
* a blank template that is compatibale with page builder plugins.
*
* @package GenesisStarter
* @link https://seothemes.net/genesis-starter
@srikat
srikat / class-custom-featured-post.php
Last active April 3, 2022 16:29 — forked from GaryJones/readme.md
Custom Featured Posts Widget plugin: Skeleton for amending the output of the Genesis Featured Posts widget. https://sridharkatakam.com/custom-featured-post-widget-plugin/
<?php
/**
* Plugin Name
*
* @package Custom_Featured_Post_Widget
* @author Gary Jones
* @license GPL-2.0+
* @link http://gamajo.com/
* @copyright 2013 Gary Jones, Gamajo Tech
*/
/**
* This Google Sheets script keeps data in the specified column sorted any time
* the data changes.
*
* After much research, there wasn't an easy way to automatically keep a column
* sorted in Google Sheets, and creating a second sheet to act as a "view" to
* my primary one in order to achieve that was not an option. Instead, I
* created a script that watches for when a cell is edited and triggers
* an auto sort.
*
@christophherr
christophherr / gist:f529c348b6087a291ae6
Created April 1, 2015 06:42
Sublime test preferences
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"color_scheme": "Packages/User/Monokai (SL).tmTheme",
"default_line_ending": "unix",
"enable_telemetry": false,
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".git",
@GaryJones
GaryJones / readme.md
Last active July 14, 2019 20:46
Custom Featured Post Widget plugin: Skeleton for amending the output of the Genesis Featured Post widget.
@JiveDig
JiveDig / remove_genesis_widgets.php
Created May 10, 2013 19:29
Remove default/stock/standard Genesis widgets
<?php
// Remove eNews and Updates widget
add_action( 'widgets_init', 'remove_enews_updates_widget', 20 );
function remove_enews_updates_widget() {
unregister_widget( 'Genesis_eNews_Updates' );
}
// Remove Featured Page widget
add_action( 'widgets_init', 'remove_featured_page_widget', 20 );