Why my products boxes aren’t aligned in grid
This is caused by mansory (isotope) effect. This effect try fill the bank space from top (like pinterest). Now it’s not possible to have products in lines. But it is in plan in future updates. version. Many thanks for your feedback. Here is example: Without mansory (is ...
How to change product image in category overview from 274×293 to 566×611
Please change in files: goodstore/templates/woocommerce/content-product-0.php lines 35 and 45 goodstore/templates/woocommerce/content-product-1.php lines 35 and 43 goodstore/templates/woocommerce/content-product-2.php lines 33 and 42 “woo-size” to “shop_sin ...
How to make the shopping cart option in the top bar unclickable when empty
Please chenge whole content of /goodstore/templates/header/top_bar/woo_cart.php by this code: <?php global $woocommerce; if (sizeof(WC()->cart->get_cart()) > 0) { $cart_link = ‘#’; } else { $cart_link = $woocommerce->cart->get_cart_url(); } ?> ...
Showing “NEW” badge also in product detail page
For showing “New” badge also in single product detail, you should add into function.php this add_action( ‘woocommerce_before_single_product_summary’, array( ‘WC_nb’, ‘woocommerce_show_product_loop_new_badge’ ), 30 ); I recommen ...