No longer kept up to date.
Please see Sridhar's fork.
| <?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 |
| <?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. | |
| * |
| { | |
| "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", |
No longer kept up to date.
Please see Sridhar's fork.
| <?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 ); |