PATH:
home
/
hunkmedicalstaff
/
public_html
/
wp-content
/
plugins
/
gravityforms
/
includes
/
orders
/
summaries
/
views
<?php echo "--------------------------------\n"; echo esc_html( $order_summary['labels']['order_label'] ) . "\n\n"; foreach ( rgars( $order_summary, 'rows/body', array() ) as $row ) { if ( ! empty( $row['options'] ) ) { $row['name'] .= ' (' . implode( ', ', array_map( function( $option ) { return rgar( $option, 'option_name', '' ); }, rgar( $row, 'options', array() ) ) ) . ')'; } echo rgar( $row, 'quantity' ) . ' ' . rgar( $row, 'name' ) . ': ' . rgar( $row, 'sub_total_money', 0 ) . "\n\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } foreach ( rgars( $order_summary, 'rows/footer', array() ) as $row ) { echo rgar( $row, 'name' ) . ': ' . rgar( $row, 'sub_total_money', 0 ) . "\n\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } echo esc_html__( 'Sub Total', 'gravityforms' ) . ': ' . $order_summary['totals']['sub_total_money'] . "\n\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo esc_html__( 'Total', 'gravityforms' ) . ': ' . $order_summary['totals']['total_money'] . "\n\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
[-] view-pricing-fields-html.php
[edit]
[-] view-pricing-fields-text.php
[edit]
[-] view-order-summary.php
[edit]
[+]
..