Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: order-received.php
<?php /** * Template for displaying order detail. * * This template can be overridden by copying it to yourtheme/learnpress/checkout/order-received.php. * * @author ThimPress * @package Learnpress/Templates * @version 4.0.3 */ defined( 'ABSPATH' ) || exit(); ?> <div class="lp-content-area"> <?php /** * @var LP_Order $order_received */ if ( ! isset( $order_received ) ) { echo wp_sprintf( '<p>%s</p>', esc_html( apply_filters( 'learn-press/order/received-invalid-order-message', __( 'Invalid order.', 'learnpress' ) ) ) ); return; } echo wp_sprintf( '<p>%s</p>', esc_html( apply_filters( 'learn-press/order/received-order-message', __( 'Thank you. Your order has been received.', 'learnpress' ) ) ) ); do_action( 'learn-press/order/after-received-order-message', $order_received->get_id() ); ?> <table class="order_details"> <?php if ( isset( $_GET['key'] ) && ! is_user_logged_in() ) : ?> <tr class="order-key"> <th><?php esc_html_e( 'Order Key', 'learnpress' ); ?></th> <td> <?php echo esc_html( $_GET['key'] ); ?> </td> </tr> <?php endif; ?> <tr class="order"> <th><?php esc_html_e( 'Order Number', 'learnpress' ); ?></th> <td> <?php echo esc_html( $order_received->get_order_number() ); ?> </td> </tr> <tr class="status"> <th><?php esc_html_e( 'Status', 'learnpress' ); ?></th> <td> <?php $status = $order_received->get_status(); echo ucfirst( $order_received::get_status_label( $status ) ); ?> </td> </tr> <tr class="item"> <th><?php esc_html_e( 'Item', 'learnpress' ); ?></th> <td> <?php $links = array(); $items = $order_received->get_items(); $count = count( $items ); foreach ( $items as $item ) { if ( empty( $item['course_id'] ) || get_post_type( $item['course_id'] ) !== LP_COURSE_CPT ) { $links[] = apply_filters( 'learn-press/order-item-not-course-id', __( 'The course does not exist', 'learnpress' ), $item ); } else { $link = '<a href="' . get_the_permalink( $item['course_id'] ) . '">' . get_the_title( $item['course_id'] ) . ' (#' . $item['course_id'] . ')' . '</a>'; if ( $count > 1 ) { $link = sprintf( '<li>%s</li>', $link ); } $links[] = apply_filters( 'learn-press/order-received-item-link', $link, $item ); } } if ( $count > 1 ) { echo sprintf( '<ol>%s</ol>', join( '', $links ) ); } elseif ( 1 == $count ) { echo wp_kses_post( implode( '', $links ) ); } else { echo esc_html__( '(No item)', 'learnpress' ); } ?> </td> </tr> <tr class="date"> <th><?php esc_html_e( 'Date', 'learnpress' ); ?></th> <td> <?php echo wp_kses_post( date_i18n( get_option( 'date_format' ), strtotime( $order_received->get_order_date() ) ) ); ?> </td> </tr> <tr class="total"> <th><?php esc_html_e( 'Total', 'learnpress' ); ?></th> <td> <?php echo wp_kses_post( $order_received->get_formatted_order_total() ); ?> </td> </tr> <?php $method_title = $order_received->get_payment_method_title(); if ( $method_title ) : ?> <tr class="method"> <th><?php esc_html_e( 'Payment Method', 'learnpress' ); ?></th> <td> <?php echo esc_html( $method_title ); ?> </td> </tr> <?php endif; ?> <?php do_action( 'learn-press/order/received/items-table', $order_received ); ?> </table> <?php //do_action( 'learn-press/order/received/' . $order_received->get_data( 'payment_method' ), $order_received->get_id() ); ?> <?php do_action( 'learn-press/order/received', $order_received ); ?> </div>