Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created December 3, 2020 15:45
Show Gist options
  • Save yousufansa/fe139ebb1fd2afe5ec51335bc0386420 to your computer and use it in GitHub Desktop.
Save yousufansa/fe139ebb1fd2afe5ec51335bc0386420 to your computer and use it in GitHub Desktop.
Electro - WC Marketplace - Display Vendor Info On Products Card View
if ( ! function_exists( 'ec_child_display_sold_by_product_product_card_view' ) ) {
function ec_child_display_sold_by_product_product_card_view() {
if( class_exists( 'WCFMmp' ) ) {
global $WCFMmp;
add_action('electro_product_card_view_body', array( $WCFMmp->frontend, 'wcfmmp_sold_by_product' ), 45 );
}
}
}
add_action( 'init', 'ec_child_display_sold_by_product_product_card_view' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment