This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Note: Add only code below to your functions.php | |
add_action( 'wp_enqueue_scripts', 'amethyst_enqueue_scripts' ); | |
function amethyst_enqueue_scripts() { | |
//Add mobile button script to Header Right widget navigation menu | |
wp_enqueue_script( 'header_nav_for_mobile', get_bloginfo( 'stylesheet_directory' ) . '/scripts/header-mobile-nav.js', array('jquery'), '1.0.0' ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Editor Stylesheet for Genesis Sample 2.0.1 | |
--------------------------------------------- */ | |
/* Import Google Fonts */ | |
@import url('//fonts.googleapis.com/css?family=Lato:300,700'); | |
.content { | |
color: #666; | |
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
font-size: 16px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Added Taxonomy page identical to store */ | |
.tax-it_exchange_category .it-exchange-products {margin: 0;padding: 0;} | |
.tax-it_exchange_category .it-exchange-products li {list-style: none;display: block;float:left;width: 45%;margin: 0 0 5em 0;vertical-align: top;} | |
.tax-it_exchange_category .it-exchange-products li:nth-child(2n+1) {margin-right: 5%;clear:both;} | |
.tax-it_exchange_category .it-exchange-product-details {padding: 1em;overflow:hidden;} | |
.tax-it_exchange_category .it-exchange-product-title {font-size: 1.5em;margin: .5em 0;padding: 0;} | |
.tax-it_exchange_category .it-exchange-product-title a {text-decoration: none;} | |
.tax-it_exchange_category .it-exchange-base-price {font-size: 1.25em;float:left;} | |
.tax-it_exchange_category .it-exchange-product-permalink {float:right;line-height: 2;} | |
.tax-it_exchange_category .featured-image-wrapper img {max-width: 100%; height: auto;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Remove the line above when copying to your functions.php | |
add_filter( 'genesis_comment_list_args', 'custom_comment_list_args' ); | |
//* Filter the genesis_comment_list_args to add a custom callback function | |
function custom_comment_list_args( $args ) { | |
$args['callback'] = 'custom_comment_callback_no_date'; | |
return $args; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Remove the line above when copying to your functions.php | |
add_filter( 'genesis_comment_list_args', 'custom_comment_list_args' ); | |
//* Filter the genesis_comment_list_args to add a custom callback function | |
function custom_comment_list_args( $args ) { | |
$args['callback'] = 'custom_comment_callback_no_date'; | |
return $args; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Remove line above | |
//* Customize the entry meta in the entry footer | |
//* First install plugin Post Tags and Categories for Pages | |
add_action('genesis_entry_footer', 'custom_page_post_meta'); | |
function custom_page_post_meta() { | |
if ( 'page' === get_post_type() ) { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Remove page title on select pages; leaves entry_header_markup | |
// Instead of page slugs, you could substitute page IDs | |
add_action( 'genesis_entry_header', 'mb_remove_page_title', 5 ); | |
function mb_remove_page_title() { | |
if ( is_page( array('home', 'real-estate', 'contact-me' ) ) ) { | |
remove_action('genesis_entry_header', 'genesis_do_post_title'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* iThemes Exchange | |
---------------------------------------------------- */ | |
/** ---------:[ categories and tags store]:---------- */ | |
.awd-it-exchange-tax-store .entry { | |
padding: 0; | |
margin: 0; | |
} | |
.awd-it-exchange-tax-store { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Remove this line before adding to your functions.php or /exchange/functions.php | |
//Remove Genesis pagination from Exchange Store page | |
function my_remove_nav_in_store() { | |
remove_action( 'genesis_after_endwhile', 'genesis_posts_nav' ); | |
} | |
add_action( 'it_exchange_content_store_after_wrap', 'my_remove_nav_in_store' ); |
OlderNewer