Greg Taylor grtaylor2
-
Marketing Press
- Tempe, AZ
- Sign in to view email
- http://marketingpress.com
View functions.php
<?php // add everything except for this opening line to your functions file | |
add_filter( 'wp_nav_menu_items', 'sp_add_loginout_link', 10, 2 ); | |
function sp_add_loginout_link( $items, $args ) { | |
// Change 'primary' to 'secondary' to put the login link in your secondary nav bar | |
if ( $args->theme_location != 'primary' ) | |
return $items; | |
if ( is_user_logged_in() ) { | |
$items .= '<li class="menu-item"><a href="'. wp_logout_url() .'">Log Out</a></li>'; | |
} else { | |
$items .= '<li class="menu-item"><a href="'. site_url('wp-login.php') .'">Log In</a></li>'; |
View gist:7895603
/*Add This Code To Site's Head*/ | |
<scripttype="text/javascript"]]> var _gaq = _gaq ||[]; _gaq.push(['_setAccount','UA-XXXXX-X']); _gaq.push(['_trackPageview']); (function(){ var ga = document.createElement('script'); ga.type ='text/javascript'; ga.async =true; ga.src =('https:'== document.location.protocol ?'https://ssl':'http://www')+'.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();</script> | |
Replace UA-XXXXX-X with site's Google Analytics Code | |
Go To Google Analytics > Conversions > Goal URLS > Create Event | |
Select Custom | |
Set Goal Detail's Category, Action & Label |
View woocommerce.css
/*Stylesheet cleaned up and organized by Marketing Press*/ | |
.clear { | |
clear:both | |
} | |
.nobr { | |
white-space:nowrap; | |
} |
View gist:6313917
Add to the page or it will detect any ph# on page and make it clickable for iPhone. | |
<meta name="format-detection" content="telephone=no"> | |
Then wrap specified phone number: | |
<a href="tel:1-800-555-5555">Anchor to any words or combo of numbers and/or letters</a> |
View gist:6072596
/* Change default comment Speak Your Mind */ | |
function change_default_comment_text($args) { | |
$args['title_reply'] = 'Leave a Comment'; | |
return $args; | |
} | |
add_filter( 'genesis_comment_form_args', 'change_default_comment_text' ); |
View gist:5960970
add_action( 'genesis_loop', 'minimum_grid_loop_helper' ); | |
function minimum_grid_loop_helper() { | |
if ( function_exists( 'genesis_grid_loop' ) ) { | |
genesis_grid_loop( array( | |
'features' => 0, | |
'feature_image_size' => 'featured', | |
'feature_image_class' => 'post-image', | |
'feature_content_limit' => 0, | |
'grid_image_size' => 0, |
View Removing Blog Post From Home Page in Genesis
/** Removing Blog Post From Home Page */ | |
remove_action( 'genesis_loop', 'genesis_do_loop' );add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); | |
genesis(); | |
View Change Read More Text Genesis WordPress
/** Customize Read More Text */ | |
add_filter( 'excerpt_more', 'child_read_more_link' ); | |
add_filter( 'get_the_content_more_link', 'child_read_more_link' ); | |
add_filter( 'the_content_more_link', 'child_read_more_link' ); | |
function child_read_more_link() { | |
return '<a href="' . get_permalink() . '" rel="nofollow">CUSTOMIZE YOUR TEXT HERE</a>'; | |
} |
View GenesisPostMeta
/** Customize the post meta function */ | |
add_filter( 'genesis_post_meta', 'post_meta_filter' ); | |
function post_meta_filter($post_meta) { | |
if ( !is_page() ) { | |
$post_meta = '[post_categories before="CUSTOM CATEGORY NAME"] [post_tags before="CUSTOM TAG NAME"]'; | |
return $post_meta; |
NewerOlder