jaw@jawtemplates.com

Code

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 Logo Background Row Color to Gradient via Custom CSS

Please in theme options->custom code->custom css add this code .row-fullwidth .fullwidth-block.header-small-content { background: none repeat scroll 0 0 #ffffff; background: none repeat scroll 0 0 #ffffff; background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgb ...

How to change font size of main menu items

Please go to Appearance->Theme Options->Custom Code->Custom CSS and add this custom code: #header .small-menu ul.top-nav li.jaw-menu-item-depth-0>a { font-size: 30px; } You can change the value of the font-size by your own.

How to Show all Product Categories in Breadcrumbs

If you have structure of categories like this: Main Category Category 1 Category 1-1 Category 2 Category 2-1 And if you want show in breadcrumbs bar all categories like this: Home | Main Category | Category 1 | Category 2 | Category 1-1 | Category 2-1 | Product name So ...

Show all categories in breadcrumbs

If you have structure of categories like this: Category 1 Category 1-1 Category 2 Category 2-1 And if you want show in breadcrumbs bar all categories like this: Home | Category 1 | Category 2 | Category 1-1 | Category 2-1 | Post name So just try find code in /goodstore ...

How to change size of images on product preview

If you have product whose presentation has to be in a wider image than the default 274×293px, please follow this tutorial: 1 – We recommend that you create a child theme. Please first follow this tutorial. 2 – Put this code into the functions.php in your child ...