Advertisement
deadhead1971

Force full width woocommerce pages, in GENESIS

Apr 17th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //Full Width Pages on WooCommerce
  2. function themeprefix_cpt_layout() {
  3. if( is_page ( array( 'cart', 'checkout' )) || is_shop() || 'product' == get_post_type() ) {
  4. return 'full-width-content';
  5. }
  6. }
  7. add_filter( 'genesis_site_layout', 'themeprefix_cpt_layout' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement