wpdwc_view_details_button_text

/** Function to change the ‘view details’ button text with WooConnect */ function acme_view_details_button( $viewbtntext ) { $viewbtntext = ‘Item Details’; return $viewbtntext; } add_filter( ‘wpdwc_view_details_button_text’, ‘acme_view_details_button’ );

 

wpdwc_buy_now_button_text

/** Function to change the Connect for WooCommerce ‘buy now’ button text */ function acme_buy_now_button() { echo ‘New Button Text’; } add_filter( ‘wpdwc_buy_now_button_text’, ‘acme_buy_now_button’ );