Created
December 3, 2020 15:45
-
-
Save yousufansa/fe139ebb1fd2afe5ec51335bc0386420 to your computer and use it in GitHub Desktop.
Electro - WC Marketplace - Display Vendor Info On Products Card View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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