Written in response to something cmwwebfx wrote.
Would love to know as well. PayPal has been down for weeks now and I have not seen any updates as of yet
Written in response to something cmwwebfx wrote.
Written in response to index showing a-z instead of previous + 3 columns underneath:
Written in response to Different Blog Title per User Group using Genesis Child Theme:
add_action( 'genesis_seo_title', 'child_seo_title' );
function child_seo_title( $title ) {
if( /*put condition here*/ )
$title = 'Insert Title Here';
elseif( /*put condition here*/ )
$title = 'Insert Title 2 Here';
return $title;
}
Written in response to Different Blog Title per User Group using Genesis Child Theme: