PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
woocommerce-bookings
/
templates
/
myaccount
<?php /** * My Bookings * * Shows customer bookings on the My Account > Bookings page * * This template can be overridden by copying it to yourtheme/woocommerce-bookings/myaccount/bookings.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://docs.woocommerce.com/document/bookings-templates/ * @author Automattic * @version 1.10.0 * @since 1.9.11 */ if ( ! defined( 'ABSPATH' ) ) { exit; } $count = 0; if ( ! empty( $tables ) ) : ?> <?php foreach ( $tables as $table ) : ?> <h2><?php echo esc_html( $table['header'] ); ?></h2> <table class="shop_table my_account_bookings"> <thead> <tr> <th scope="col" class="booking-id"><?php _e( 'ID', 'woocommerce-bookings' ); ?></th> <th scope="col" class="booked-product"><?php _e( 'Booked', 'woocommerce-bookings' ); ?></th> <th scope="col" class="order-number"><?php _e( 'Order', 'woocommerce-bookings' ); ?></th> <th scope="col" class="booking-start-date"><?php _e( 'Start Date', 'woocommerce-bookings' ); ?></th> <th scope="col" class="booking-end-date"><?php _e( 'End Date', 'woocommerce-bookings' ); ?></th> <th scope="col" class="booking-status"><?php _e( 'Status', 'woocommerce-bookings' ); ?></th> <th scope="col" class="booking-cancel"></th> </tr> </thead> <tbody> <?php foreach ( $table['bookings'] as $booking ) : ?> <?php $count++; ?> <tr> <td class="booking-id"><?php echo esc_html( $booking->get_id() ); ?></td> <td class="booked-product"> <?php if ( $booking->get_product() && $booking->get_product()->is_type( 'booking' ) ) : ?> <a href="<?php echo esc_url( get_permalink( $booking->get_product()->get_id() ) ); ?>"> <?php echo esc_html( $booking->get_product()->get_title() ); ?> </a> <?php endif; ?> </td> <td class="order-number"> <?php if ( $booking->get_order() ) : ?> <a href="<?php echo esc_url( $booking->get_order()->get_view_order_url() ); ?>"> <?php echo esc_html( $booking->get_order()->get_order_number() ); ?> </a> <?php endif; ?> </td> <td class="booking-start-date"><?php echo esc_html( $booking->get_start_date() ); ?></td> <td class="booking-end-date"><?php echo esc_html( $booking->get_end_date() ); ?></td> <td class="booking-status"><?php echo esc_html( wc_bookings_get_status_label( $booking->get_status() ) ); ?></td> <td class="booking-cancel"> <?php if ( 'cancelled' !== $booking->get_status() && 'completed' !== $booking->get_status() && ! $booking->passed_cancel_day() ) : ?> <a href="<?php echo esc_url( $booking->get_cancel_url() ); ?>" class="button cancel"><?php esc_html_e( 'Cancel', 'woocommerce-bookings' ); ?></a> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php do_action( 'woocommerce_before_account_bookings_pagination' ); ?> <div class="woocommerce-pagination woocommerce-pagination--without-numbers woocommerce-Pagination"> <?php if ( 1 !== $page ) : ?> <a class="woocommerce-button woocommerce-button--previous woocommerce-Button woocommerce-Button--previous button" href="<?php echo esc_url( wc_get_endpoint_url( 'bookings', $page - 1 ) ); ?>"><?php _e( 'Previous', 'woocommerce' ); ?></a> <?php endif; ?> <?php if ( $count >= $bookings_per_page ) : ?> <a class="woocommerce-button woocommerce-button--next woocommerce-Button woocommerce-Button--next button" href="<?php echo esc_url( wc_get_endpoint_url( 'bookings', $page + 1 ) ); ?>"><?php _e( 'Next', 'woocommerce' ); ?></a> <?php endif; ?> </div> <?php do_action( 'woocommerce_after_account_bookings_pagination' ); ?> <?php endforeach; ?> <?php else : ?> <div class="woocommerce-Message woocommerce-Message--info woocommerce-info"> <a class="woocommerce-Button button" href="<?php echo esc_url( apply_filters( 'woocommerce_return_to_shop_redirect', wc_get_page_permalink( 'shop' ) ) ); ?>"> <?php esc_html_e( 'Go Shop', 'woocommerce-bookings' ); ?> </a> <?php esc_html_e( 'No bookings available yet.', 'woocommerce-bookings' ); ?> </div> <?php endif; ?>
[+]
..
[-] my-bookings.php
[edit]
[-] .myaccount.php
[edit]
[-] bookings.php
[edit]