change_add_to_cart_button_text( $add_to_cart_text, 'single' ); } /** * change_add_to_cart_button_text_archive. * * @version 1.2.0 * @since 1.2.0 */ function change_add_to_cart_button_text_archive( $add_to_cart_text ) { return $this->change_add_to_cart_button_text( $add_to_cart_text, 'archive' ); } /** * change_add_to_cart_button_text. * * @version 1.2.0 * @since 1.2.0 */ function change_add_to_cart_button_text( $add_to_cart_text, $single_or_archive ) { return ( '' != ( $label = get_option( 'alg_wc_add_to_cart_button_labels_all_products_' . $single_or_archive, '' ) ) ? $label : $add_to_cart_text ); } } endif; return new Alg_WC_Add_To_Cart_Button_Labels_All_Products();