Home Forums WoodMart support forum About Shop and Category Images Reply To: About Shop and Category Images

#306740

abdo_nahas
Participant

To people who wnat to make some changes

In image sizes in category and in shop pages just add this codes in function.php in your child theme:

add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
	return array(
		'width'  => 294,
		'height' => 435,
		'crop'   => 1,
	);
} );

To people Who want to add more additional tabs in theme:

You have 2 files to edit them

To add new tab in admin panel:
inc/admin/settings/product.php
lines start with 999 this is the start of tabs seciton.

To show them in single product page:
woocommerce/single-product/tabs/tabs.php
lines start with 1193 this is the start of tabs seciton to show them in single page.

WARNING: THIS IS JUST TO SHOW YOU HOW CAN BE EDIT. ALL RESPONSIBlTY IS ON YOU. NOT ON XTEMOS or ME 🙂