Home Forums WoodMart support forum How can we make Video appear Full-Width or Screen. Default 404 page and custom Reply To: How can we make Video appear Full-Width or Screen. Default 404 page and custom

#360001

Bogdan Donovan
Keymaster

The issue with widgets will be fixed in the next theme hotfix update which will be released soon. For now to use widgets you can install the classic widgets plugin (https://wordpress.org/plugins/classic-widgets/).

18. a) Try to use the following custom code to move product swatches to the bottom on Quick Shop hover.

.wd-hover-quick.product-grid-item {
	display: flex;
	flex-direction: column;
}

.wd-hover-quick.product-grid-item .swatches-on-grid {
	order: 1;
	margin-bottom: 0;
	margin-top: 3px;
}

18 b). If this option is enabled product attribute name will be shown if a swatch is selected.

Disabled – https://gyazo.com/108e37459cb979b0a5a6d69b48e9cce0
Enabled – https://gyazo.com/be918855a08e13b75a72beae660e1570

18 c). Arrows are set vertically relative to the entire height of the carousel, including carousel pagination (screenshot https://prnt.sc/CKOqNWMMelwB). You can adjust the position of carousel arrows by following custom code, but in that case product carousel arrows can be misaligned if carousel pagination is disabled.

.slider-type-product .owl-carousel .wd-btn-arrow {
	margin-top: -37px;
}

Kind Regards