jaw@jawtemplates.com

Code

How to Change JAW Slider Height

Please go to ../goodstore/css/ and open file template.min.css and find size 455px and change it to your maximal height, e.g. 800px. Then you will have to change this size in ../goodstore/functions.php on line 322. You should see add_image_size(‘slider-size’, 488, ...

Add pagination to WooCommerce shortcodes

1 – We recommend you do these changes by child theme. Please first follow this tutorial. 2 – Please install these two plugins: Prime Strategy Page Navi WP-PageNavi 3 – Add into function.php this code: /** * This code shows pagination for WooCommerce shor ...

How to add Menu into Top bar

First you have to register menu position. Open /goodstore/function.php file and lines 335 – 339 register_nav_menus(array( ‘primary_navigation’ => __(‘Primary Navigation’, ‘jawtemplates’), ‘foo ...

How to add more Widget areas to menu.

You’ll have to change code of a JaW Menu plugin. Please open /jaw-menu/menu/JawMenu.class.php and lines 99 – 104 $widgets_area = array( ‘widget-menu-area-1’ => ‘Widget menu area 1’, ‘widget-menu-area-2̵ ...

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 ...