change_add_to_cart_button_text( $add_to_cart_text, 'single' ); } /** * change_add_to_cart_button_text_archive. * * @version 1.0.0 * @since 1.0.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.1.0 * @since 1.0.0 */ function change_add_to_cart_button_text( $add_to_cart_text, $single_or_archive ) { global $product; if ( ! $product ) { return $add_to_cart_text; } return ( '' != ( $the_label = get_post_meta( alg_wc_atcbl_get_product_or_variation_parent_id( $product ), '_' . 'alg_wc_add_to_cart_button_labels_' . $single_or_archive, true ) ) ) ? $the_label : $add_to_cart_text; } } endif; return new Alg_WC_Add_To_Cart_Button_Labels_Per_Product();