LLMS_Notification_View_Purchase_Receipt::set_merge_codes()
Setup merge codes that can be used with the notification
Contents
Return Return
(array)
Source Source
File: includes/notifications/views/class.llms.notification.view.purchase.receipt.php
protected function set_merge_codes() { return array( '{{CUSTOMER_ADDRESS}}' => __( 'Customer Address', 'lifterlms' ), '{{CUSTOMER_NAME}}' => __( 'Customer Name', 'lifterlms' ), '{{CUSTOMER_PHONE}}' => __( 'Customer Phone', 'lifterlms' ), '{{ORDER_ID}}' => __( 'Order ID', 'lifterlms' ), '{{ORDER_URL}}' => __( 'Order URL', 'lifterlms' ), '{{PLAN_TITLE}}' => __( 'Plan Title', 'lifterlms' ), '{{PRODUCT_TITLE}}' => __( 'Product Title', 'lifterlms' ), '{{PRODUCT_TYPE}}' => __( 'Product Type', 'lifterlms' ), '{{PRODUCT_TITLE_LINK}}' => __( 'Product Title (Link)', 'lifterlms' ), '{{TRANSACTION_AMOUNT}}' => __( 'Transaction Amount', 'lifterlms' ), '{{TRANSACTION_DATE}}' => __( 'Transaction Date', 'lifterlms' ), '{{TRANSACTION_ID}}' => __( 'Transaction ID', 'lifterlms' ), '{{TRANSACTION_SOURCE}}' => __( 'Transaction Source', 'lifterlms' ), ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |