jaw@jawtemplates.com

Code

How to turn the responsive off?

Open ../goodstore/header.php and this code <meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0″ /> replace by this: <meta name=”viewport” content=”width=1366″ /> ...

How to set only minimal price for variable products

Open functions.php in your child theme and add this code there add_filter(‘woocommerce_variable_price_html’,’jaw_woocommerce_variable_price_html’,10,1); function jaw_woocommerce_variable_price_html($price) { $parse_price = explode(‘ndash;’ ...

How to Make Default Product Image

If you don’t have an image for every product in your shop. And you want to show for products without image some default image. Please follow these instructions: Open files /goodstore/templates/woocommerce/content-product-X.php And change on line 45 this: jwUtils::the ...

Essential grid – custom styles

Here are our custom styles for essential grid. Which we are using on our demo sites. /* JAW */ .jaw-eg-title{font-size: 24px; font-weight: 600;line-height:1;margin-bottom:5px;} .jaw-eg-content{font-size:18px;} .eg-jaw-01-wrapper .esg-entry-media-wrapper{transition: 500ms;tra ...

How to Revert Description and Title in Archive Product

Go to ../themes/goodstore/ and open file loop-products.php. Add this code on line 6 $cat = array(); if (is_product_category()) { $cat = get_term_by(‘slug’, get_query_var(‘term’), ‘product_cat’); }else if(is_product_tag()) { $cat = get_term ...

How to change text Shopping Cart to your own

1) Please go to ..\goodstore\templates\header\top_bar\ and open file woo_cart.php at line 5 and change the line from _e(‘Shopping cart’, ‘jawtemplates’); to _e(‘YOUR_TEXT’, ‘jawtemplates’);