Skip to content

Instantly share code, notes, and snippets.

@Luminus
Last active July 26, 2019 22:40
Show Gist options
  • Save Luminus/df3c23b8427debd29c2b6ae49806d8b5 to your computer and use it in GitHub Desktop.
Save Luminus/df3c23b8427debd29c2b6ae49806d8b5 to your computer and use it in GitHub Desktop.
Display the "Sold By: Vendor Name" of Product Vendors under the product name on single product page & Hide the original one
<?php
if ( class_exists( 'WC_Product_Vendors_Vendor_Frontend' ) ) {
add_action( 'woocommerce_single_product_summary', array( WC_Product_Vendors_Vendor_Frontend, 'add_sold_by_single' ), 5 );
}
em.wcpv-sold-by-single:nth-of-type(2) {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment