candyd18
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] 404 error on event pagesthanks
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] 404 error on event pagesIt worked! thanks for the help!
Forum: Themes and Templates
In reply to: [Canard] How to remove sidebar on posts?figured it out!! it was a css thing, i had to create a new class with the modifications i wanted in style.css, and then call it through the single.php file replacing the “site-main” class so it didn´t change anything else but the space of the post only on post pages.
Forum: Themes and Templates
In reply to: [Canard] How to remove sidebar on posts?also i already tried removing the
<?php get_sidebar();?>on the single.php file but the sidebar is still showingForum: Themes and Templates
In reply to: [Canard] How to remove sidebar on posts?i already did that, if you check on any of my posts you can see that there’s no widgets but the sidebar is still showing 🙁
Thanks to lacenaire
He did this modification of woocommerce.php code and it works!!
<?php /** * The template for displaying woocommerce archive pages. * * @package WordPress * @subpackage stainedglass * @since Stained Glass 1.0.0 */ get_header(); ?> <div class="main-wrapper woo-shop <?php echo esc_attr(stainedglass_get_theme_mod('layout_page') ); ?> "> <div class="site-content"> <?php if ( have_posts() ) : ?> <div class="content"> <?php if ( is_singular() ) : ?> <div class="content-container"> <?php endif; ?> <?php woocommerce_breadcrumb(); ?> <?php woocommerce_content(); ?> <?php do_action( 'stainedglass_after_content' ); ?> <?php if ( is_singular() ) : ?> </div><!-- .content-container --> <?php endif; ?> </div><!-- .content --> <div class="clear"></div> <?php stainedglass_paging_nav(); else : ?> <div class="content"> <?php get_template_part( 'content', 'none' ); ?> </div><!-- .content --> <?php endif; ?> </div><!-- .site-content --> <?php stainedglass_get_sidebar( stainedglass_get_theme_mod('layout_page') ); ?> </div> <!-- .woo-shop.main-wrapper --> <?php get_footer();Forum: Themes and Templates
In reply to: [Stained Glass] problem of sidebar with woocommerce pagesHey laceinare THAAAAAAAAAAAAAAANK YOUUUUUU!!!!!!!!! you saved my life!!! you are the best!! thanks for sharing the solution to this problem!!!