Spacing between lines, product preview

eCommerce WordPress theme with various e-store features and WooCommerce support.
GK User
Thu Aug 21, 2014 9:41 am
Hello guys,

What and where I need to change to do this:

Image

Widget on the left: WooCommerce Layered Nav
Im using StoreBox 1.3.3 on WP 3.9.1

Thank you in advance!
User avatar
Fresh Boarder

GK User
Thu Aug 21, 2014 10:34 am
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.

Regarding the numbers of products per row, you have to edit StoreBox/gavern/wc-functions.php file and change this filter:
Code: Select all
add_filter('loop_shop_columns', 'loop_columns');
   if (!function_exists('loop_columns')) {
      function loop_columns() {
      return 3; // 3 products per row
      }
   }

use your own value instead of: return 3;
User avatar
Moderator

GK User
Thu Aug 21, 2014 12:52 pm
To reduce spaces and change fotn size of the marked elements, please add this code into css/override.css file (first enable this override option from Template Options -> Advanced tab)

Code: Select all
.woocommerce .widget_layered_nav ul li,
.woocommerce-page .widget_layered_nav ul li {
   font-size: 15px;
   line-height: 1.4;
}
User avatar
Moderator

GK User
Fri Aug 29, 2014 7:31 am
Thank you very much!
Piotr Kunicki wrote:Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.

Regarding the numbers of products per row, you have to edit StoreBox/gavern/wc-functions.php file and change this filter:
Code: Select all
add_filter('loop_shop_columns', 'loop_columns');
   if (!function_exists('loop_columns')) {
      function loop_columns() {
      return 3; // 3 products per row
      }
   }

use your own value instead of: return 3;
User avatar
Fresh Boarder


cron