Skip to content

Instantly share code, notes, and snippets.

View AlphaBlossom's full-sized avatar

Tony Eppright AlphaBlossom

View GitHub Profile
@AlphaBlossom
AlphaBlossom / idx-broker-single-listing-header.html
Last active August 29, 2015 14:22
IDX Broker Single Listing Sub Header Variables Example
<!-- Example displaying Address and MLS# in H1 tag and property type and county in H2
This should be added using the HTML view in the IDX admin editor.
The class="entry-title" should be changed to match the class used in your theme. This
example is for a Genesis child theme. -->
<h1 class="entry-title">{{address}}, {{cityName}}, {{state}} {{zipcode}} (MLS# {{listingID}})</h1>
<h2>{{propType}} listing in {{countyName}} County</h2>
@AlphaBlossom
AlphaBlossom / 0_reuse_code.js
Last active August 29, 2015 14:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@AlphaBlossom
AlphaBlossom / cpt-nav-add-current-menu-item.php
Last active August 29, 2015 14:06
Change Nav Menu on CPT to Highlight CPT instead of Blog
<?php
//* Do NOT include the opening php tag
/**********************************
*
* Adds "current-menu-item" to CPT Nav
*
* @author AlphaBlossom / Tony Eppright
* @link http://www.alphablossom.com
*
@AlphaBlossom
AlphaBlossom / logo-centered-navigation-menu.css
Last active March 4, 2022 16:32
Logo Centered on Navigation Menu
/**********************************
*
* Add a centered logo to the Genesis Navigation Menu
* using CSS only
*
* @author AlphaBlossom / Tony Eppright
* @link http://www.alphablossom.com
*
************************************/
/*
@AlphaBlossom
AlphaBlossom / remove-email-url-fields-comments.php
Last active August 29, 2015 14:06
Remove Email and URL Fields from WordPress comments form
<?php
//* Do NOT include the opening php tag
/**********************************
*
* Filter Comments Form
* Remove Email and URL Fields
*
* @author AlphaBlossom / Tony Eppright
* @link http://www.alphablossom.com
@AlphaBlossom
AlphaBlossom / modify-comment-labels.php
Last active August 29, 2015 14:06
Modify WordPress/Genesis Comment Form Labels
<?php
//* Do NOT include the opening php tag
/**********************************
*
* Filter Comments Form Labels
* Modify the Labels Text
* Add Font-Awesome Icons to Labels
*
* Only for Genesis HTML5 themes
@AlphaBlossom
AlphaBlossom / genesis-basic-header.html
Last active June 22, 2019 10:02
Genesis HTML Structure
<header class="site-header">
<div class="wrap">
<div class="title-area">
<!-- title-area content -->
</div>
<aside class="widget-area header-widget-area">
<!-- aside content -->
</aside>
</div>
</header>
@AlphaBlossom
AlphaBlossom / genesis-page-links-styles.css
Last active August 29, 2015 14:05
Genesis Style Page-Links
@AlphaBlossom
AlphaBlossom / genesis-inline-header-logo.php
Last active June 5, 2017 01:29
Genesis Inline Header Logo
/**********************************
*
* Replace Header Site Title with Inline Logo
* Fix Genesis bug - when using static front page and blog page (admin reading settings) Home page is <p> tag and Blog page is <h1> tag
* Replace "is_home" with "is_front_page" to correctly display Home page wit <h1> tag and Blog page with <p> tag
*
* @author AlphaBlossom / Tony Eppright
* @link http://www.alphablossom.com
*
************************************/
@AlphaBlossom
AlphaBlossom / woocommerce-move-price.php
Last active May 6, 2020 15:30
Move WooCommerce Pricing on Single Product Page
/**********************************
*
* Move WooCommerce Price on Single Product Page
*
* @author AlphaBlossom / Tony Eppright
* @link http://www.alphablossom.com
*
* Reference hook locations using woocommerce_single_product_summary hook
*
* @hooked woocommerce_template_single_title – 5