Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_filter( 'body_class', 'product_categories' );
  2. function product_categories( $classes ) {
  3. if (is_product_category('sanitaryware') && is_product_category('Faucet')) {
  4. $classes[] = 'product-category';
  5. }
  6. // return the $classes array
  7. return $classes;
  8. }
  9.  
  10. .ifproduct-category #content {
  11. width: 100%;
  12. float: none;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement