wpd_ecommerce_checkout_email_subject_patient

/** * Change checkout email subject for patients */ function acme_checkout_email_subject_patient() { $email_subject_text = ‘Thank you for your order.’; // Change this text. return $email_subject_text; } add_filter( ‘wpd_ecommerce_checkout_email_subject_patient’, ‘acme_checkout_email_subject_patient’ );

 

wpd_ecommerce_single_item_price

<?php /** * Hide single item price display for non-logged in users * * @param string $display_price */ function acme_single_item_price_display( $display_price ) { // Get WPD settings from General tab. $wpdas_general = get_option( ‘wpdas_general’ ); // Check if user is required to be logged in to shop. if ( isset( $wpdas_general[‘wpd_ecommerce_cart_require_login_to_shop’] ) ) { $login_to_shop […]

 

wpd_ecommerce_account_admin_patients_text

<?php /** * Change "Patients" text on admin Account page. */ function acme_vendors_text() { $vendors_text = ‘Vendors’; // Change this text. return $vendors_text; } add_filter( ‘wpd_ecommerce_account_admin_patients_text’, ‘acme_vendors_text’ );