Home Forums WoodMart support forum Brand position on single product page Reply To: Brand position on single product page

#335005

Hello,

Please replace the PHP code with this one:

add_action( 'init', function() {
	remove_action( 'woocommerce_single_product_summary', 'woodmart_product_brand', 3 );
	remove_action( 'woodmart_before_sidebar_area', 'woodmart_product_brand', 10 );
	add_action( 'woocommerce_single_product_summary', 'woodmart_product_brand', 39 );
}, 1100);

In addition, please add this code to the Theme Settings > Custom CSS > General:

.product-design-default .wd-product-brands {
    float: none;
    margin-left: 0;
}

.product-design-default .wd-product-brands a {
    display: inline-block;
    padding: 0;
    min-height: 0;
    background-color: transparent !important;
    box-shadow: none;
}

.product-image-summary .wd-product-brands a:hover {
    box-shadow: none;
}

Best Regards