problem with GK Image Show

eCommerce WordPress theme with various e-store features and WooCommerce support.
GK User
Mon Aug 10, 2015 1:33 pm
Hello,
I have storebox template installed. I've loaded few slides to GKIS and now I can see only two of them (why only 2?) and they are not centered (there is white strip on left side and top). Could you help me to fix it?

Second problem - Is it possible to make price in circle "from xxx,xx" instead of "xxx,xx-yyy,yy". Now second price yyy,yy is displayed in next line and it's hardly visible.

Third problem - on main page there are few widgets. One of them - GK Products Gallery is slightly moving up and down.

Thanks for help,
Regards,
Monika
User avatar
Fresh Boarder

GK User
Mon Aug 10, 2015 9:19 pm
Hello,

I'll try to help, please send me a private message with your website backend access.
User avatar
Moderator

GK User
Tue Aug 11, 2015 1:44 pm
Hi,

Please check this article:: https://demo.gavick.com/wordpress/store ... ge_id=2459
You have only 2 slides in your GK Image Show widget: slide3,slide4

Regarding the prices, try to add this filter into gavern/user.functions.php file:
Code: Select all
add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2);

function custom_variation_price( $price, $product ) {

   $price = '';

   if ( !$product->min_variation_price || $product->min_variation_price !== $product->max_variation_price ) {
      $price .= '<span class="from">' . _x('From', 'min_price', 'woocommerce') . ' </span>';
      $price .= woocommerce_price($product->get_price());
   }

   return $price;
}
User avatar
Moderator


cron