Home › Forums › WoodMart support forum › Brand position on single product page › Reply To: Brand position on single product page
November 26, 2021 at 10:51 pm
#335005
Elise Noromit
Member
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