Help! My site disappeared completely and I can't log in
-
My site is set up with the woocommerce storefront theme. Everything was working perfectly until I tried a new piece of code. I am working on trying to remove breadcrumbs, so I put this code in functions.php just to see if it would work. (I know I’m supposed to use a child theme).
add_action( 'init', 'jk_remove_woo_wc_breadcrumbs' ); function jk_remove_woo_wc_breadcrumbs() { if ( is_woocommerce() || is_cart() || is_checkout() ) remove_action( 'woo_main_before', 'woo_display_breadcrumbs', 10 ); } }
Now the entire site has completely disappeared. When I go to the website it is completely blank, and so is the log in page so I can’t even log in. How do I fix this??
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Help! My site disappeared completely and I can't log in’ is closed to new replies.