Guest User

Untitled

a guest
Nov 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. function edit_et_divi_output_content_wrapper_end() {
  2. $default_sidebar_class = is_rtl() ? 'et_left_sidebar' : 'et_right_sidebar';
  3.  
  4. echo '</div> <!-- #left-area -->';
  5.  
  6. if (
  7. ( is_product() && 'et_full_width_page' !== get_post_meta( get_the_ID(), '_et_pb_page_layout', true ) )
  8. ||
  9. ( ( is_shop() || is_product_category() || is_product_tag() ) && 'et_full_width_page' !== et_get_option( 'divi_shop_page_sidebar', $default_sidebar_class ) )
  10. ) {
  11. woocommerce_get_sidebar();
  12. }
  13.  
  14. echo '
  15. </div> <!-- #content-area -->
  16. </div> <!-- .container -->
  17. </div> <!-- #main-content -->';
  18. }
  19. add_action( 'woocommerce_after_main_content', 'edit_et_divi_output_content_wrapper_end', 15 );
Add Comment
Please, Sign In to add comment