@@ -1,11 +1,11 @@ |
||
| 1 | 1 | <?php //echo '<h1>' . __FILE__ . '</h1>'; ?> |
| 2 | 2 | <?php global $post; |
| 3 | -$wrap_class = has_excerpt( $post->ID ) ? ' has-excerpt' : ''; |
|
| 3 | +$wrap_class = has_excerpt($post->ID) ? ' has-excerpt' : ''; |
|
| 4 | 4 | ?> |
| 5 | -<header class="venue-header<?php echo $wrap_class;?>"> |
|
| 5 | +<header class="venue-header<?php echo $wrap_class; ?>"> |
|
| 6 | 6 | <h1 id="venue-details-h1" class="entry-title"> |
| 7 | 7 | <a class="" href="<?php the_permalink(); ?>"><?php the_title(); ?></a> |
| 8 | 8 | </h1> |
| 9 | - <?php if ( has_excerpt( $post->ID )) { the_excerpt(); } ?> |
|
| 9 | + <?php if (has_excerpt($post->ID)) { the_excerpt(); } ?> |
|
| 10 | 10 | </header> |
| 11 | 11 | <!-- .venue-content --> |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php //echo '<h1>' . __FILE__ . '</h1>'; |
| 2 | 2 | global $post; |
| 3 | -if ( espresso_venue_has_address( $post->ID )) : |
|
| 3 | +if (espresso_venue_has_address($post->ID)) : |
|
| 4 | 4 | ?> |
| 5 | 5 | <div class="venue-location"> |
| 6 | 6 | |
| 7 | 7 | <h3 class="venue-address-h3 ee-venue-h3"> |
| 8 | - <span class="dashicons dashicons-location-alt"></span><?php _e( 'Location', 'event_espresso' ); ?> |
|
| 8 | + <span class="dashicons dashicons-location-alt"></span><?php _e('Location', 'event_espresso'); ?> |
|
| 9 | 9 | </h3> |
| 10 | - <span class="small-text"><strong><?php _e( 'Address:', 'event_espresso' ); ?></strong></span><?php espresso_venue_address( 'inline', $post->ID ); ?> |
|
| 10 | + <span class="small-text"><strong><?php _e('Address:', 'event_espresso'); ?></strong></span><?php espresso_venue_address('inline', $post->ID); ?> |
|
| 11 | 11 | <div class="clear"></div> |
| 12 | 12 | |
| 13 | - <div class="venue-gmap"><?php espresso_venue_gmap( $post->ID ); ?></div> |
|
| 13 | + <div class="venue-gmap"><?php espresso_venue_gmap($post->ID); ?></div> |
|
| 14 | 14 | <div class="clear"></div> |
| 15 | 15 | |
| 16 | 16 | </div> |
@@ -1,11 +1,11 @@ discard block |
||
| 1 | 1 | <?php //echo '<h1>' . __FILE__ . '</h1>'; ?> |
| 2 | 2 | <?php global $post; ?> |
| 3 | -<?php do_action( 'AHEE__content_espresso_venues_template__before_featured_img', $post ); ?> |
|
| 3 | +<?php do_action('AHEE__content_espresso_venues_template__before_featured_img', $post); ?> |
|
| 4 | 4 | <?php |
| 5 | -if ( has_post_thumbnail( $post->ID )) : |
|
| 6 | - if ( $img_ID = get_post_thumbnail_id( $post->ID )) : |
|
| 7 | - if ( $featured_img = wp_get_attachment_image_src( $img_ID, 'large' )) : |
|
| 8 | - $caption = esc_attr( get_post( get_post( $img_ID ))->post_excerpt ); |
|
| 5 | +if (has_post_thumbnail($post->ID)) : |
|
| 6 | + if ($img_ID = get_post_thumbnail_id($post->ID)) : |
|
| 7 | + if ($featured_img = wp_get_attachment_image_src($img_ID, 'large')) : |
|
| 8 | + $caption = esc_attr(get_post(get_post($img_ID))->post_excerpt); |
|
| 9 | 9 | $wrap_class .= ' has-img'; |
| 10 | 10 | ?> |
| 11 | 11 | <div id="ee-venue-img-dv-<?php echo $post->ID; ?>" class="ee-venue-img-dv"> |
@@ -18,5 +18,5 @@ discard block |
||
| 18 | 18 | endif; |
| 19 | 19 | endif; |
| 20 | 20 | ?> |
| 21 | -<?php do_action( 'AHEE__content_espresso_venues_template__after_featured_img', $post );?> |
|
| 21 | +<?php do_action('AHEE__content_espresso_venues_template__after_featured_img', $post); ?> |
|
| 22 | 22 | <!-- .venue-content --> |
@@ -11,41 +11,41 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | global $post; |
| 14 | -$wrap_class = has_excerpt( $post->ID ) ? ' has-excerpt' : ''; |
|
| 14 | +$wrap_class = has_excerpt($post->ID) ? ' has-excerpt' : ''; |
|
| 15 | 15 | ?> |
| 16 | -<?php do_action( 'AHEE__content_espresso_venues_template__before_post', $post ); ?> |
|
| 17 | -<article id="post-<?php the_ID(); ?>" <?php post_class( 'espresso-venue-details entry-content ' . $wrap_class ); ?>> |
|
| 16 | +<?php do_action('AHEE__content_espresso_venues_template__before_post', $post); ?> |
|
| 17 | +<article id="post-<?php the_ID(); ?>" <?php post_class('espresso-venue-details entry-content '.$wrap_class); ?>> |
|
| 18 | 18 | |
| 19 | -<?php if ( is_single() ) : ?> |
|
| 19 | +<?php if (is_single()) : ?> |
|
| 20 | 20 | |
| 21 | - <div id="espresso-venue-header-dv-<?php echo $post->ID;?>" class="espresso-venue-header-dv"> |
|
| 22 | - <?php espresso_get_template_part( 'content', 'espresso_venues-thumbnail' ); ?> |
|
| 23 | - <?php espresso_get_template_part( 'content', 'espresso_venues-header' ); ?> |
|
| 21 | + <div id="espresso-venue-header-dv-<?php echo $post->ID; ?>" class="espresso-venue-header-dv"> |
|
| 22 | + <?php espresso_get_template_part('content', 'espresso_venues-thumbnail'); ?> |
|
| 23 | + <?php espresso_get_template_part('content', 'espresso_venues-header'); ?> |
|
| 24 | 24 | </div> |
| 25 | 25 | |
| 26 | 26 | <div class="espresso-venue-wrapper-dv"> |
| 27 | - <?php espresso_get_template_part( 'content', 'espresso_venues-details' ); ?> |
|
| 28 | - <?php espresso_get_template_part( 'content', 'espresso_venues-location' ); ?> |
|
| 27 | + <?php espresso_get_template_part('content', 'espresso_venues-details'); ?> |
|
| 28 | + <?php espresso_get_template_part('content', 'espresso_venues-location'); ?> |
|
| 29 | 29 | <footer class="venue-meta"> |
| 30 | - <?php do_action( 'AHEE__content_espresso_venues_template__footer_top', $post ); ?> |
|
| 31 | - <?php do_action( 'AHEE__content_espresso_venues_template__footer_bottom', $post ); ?> |
|
| 30 | + <?php do_action('AHEE__content_espresso_venues_template__footer_top', $post); ?> |
|
| 31 | + <?php do_action('AHEE__content_espresso_venues_template__footer_bottom', $post); ?> |
|
| 32 | 32 | </footer> |
| 33 | 33 | </div> |
| 34 | 34 | |
| 35 | -<?php elseif ( is_archive() ) : ?> |
|
| 35 | +<?php elseif (is_archive()) : ?> |
|
| 36 | 36 | |
| 37 | - <div id="espresso-venue-header-dv-<?php echo $post->ID;?>" class="espresso-venue-header-dv"> |
|
| 38 | - <?php espresso_get_template_part( 'content', 'espresso_venues-thumbnail' ); ?> |
|
| 39 | - <?php espresso_get_template_part( 'content', 'espresso_venues-header' ); ?> |
|
| 37 | + <div id="espresso-venue-header-dv-<?php echo $post->ID; ?>" class="espresso-venue-header-dv"> |
|
| 38 | + <?php espresso_get_template_part('content', 'espresso_venues-thumbnail'); ?> |
|
| 39 | + <?php espresso_get_template_part('content', 'espresso_venues-header'); ?> |
|
| 40 | 40 | </div> |
| 41 | 41 | |
| 42 | 42 | <div class="espresso-venue-wrapper-dv"> |
| 43 | - <?php espresso_get_template_part( 'content', 'espresso_venues-details' ); ?> |
|
| 43 | + <?php espresso_get_template_part('content', 'espresso_venues-details'); ?> |
|
| 44 | 44 | </div> |
| 45 | 45 | |
| 46 | 46 | <?php endif; ?> |
| 47 | 47 | |
| 48 | 48 | </article> |
| 49 | 49 | <!-- #post --> |
| 50 | -<?php do_action( 'AHEE__content_espresso_venues_template__after_post', $post ); |
|
| 50 | +<?php do_action('AHEE__content_espresso_venues_template__after_post', $post); |
|
| 51 | 51 | |
@@ -10,30 +10,30 @@ |
||
| 10 | 10 | * @ version 4+ |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -if ( have_posts() ) : ?> |
|
| 13 | +if (have_posts()) : ?> |
|
| 14 | 14 | |
| 15 | 15 | <header class="page-header"> |
| 16 | 16 | <h1 class="page-title"> |
| 17 | - <?php echo __( 'Event Venues', 'event_espresso' ); ?> |
|
| 17 | + <?php echo __('Event Venues', 'event_espresso'); ?> |
|
| 18 | 18 | </h1> |
| 19 | 19 | </header><!-- .page-header --> |
| 20 | 20 | |
| 21 | 21 | <?php |
| 22 | 22 | // allow other stuff |
| 23 | - do_action( 'AHEE__archive_espresso_venues_template__before_loop' ); |
|
| 23 | + do_action('AHEE__archive_espresso_venues_template__before_loop'); |
|
| 24 | 24 | // Start the Loop. |
| 25 | - while ( have_posts() ) : the_post(); |
|
| 25 | + while (have_posts()) : the_post(); |
|
| 26 | 26 | // Include the post TYPE-specific template for the content. |
| 27 | - espresso_get_template_part( 'content', 'espresso_venues' ); |
|
| 27 | + espresso_get_template_part('content', 'espresso_venues'); |
|
| 28 | 28 | endwhile; |
| 29 | 29 | // Previous/next page navigation. |
| 30 | 30 | espresso_pagination(); |
| 31 | 31 | // allow moar other stuff |
| 32 | - do_action( 'AHEE__archive_espresso_venues_template__after_loop' ); |
|
| 32 | + do_action('AHEE__archive_espresso_venues_template__after_loop'); |
|
| 33 | 33 | |
| 34 | 34 | |
| 35 | 35 | else : |
| 36 | 36 | // If no content, include the "No posts found" template. |
| 37 | - espresso_get_template_part( 'content', 'none' ); |
|
| 37 | + espresso_get_template_part('content', 'none'); |
|
| 38 | 38 | |
| 39 | 39 | endif; |
@@ -32,8 +32,10 @@ |
||
| 32 | 32 | do_action( 'AHEE__archive_espresso_venues_template__after_loop' ); |
| 33 | 33 | |
| 34 | 34 | |
| 35 | -else : |
|
| 35 | +else { |
|
| 36 | + : |
|
| 36 | 37 | // If no content, include the "No posts found" template. |
| 37 | 38 | espresso_get_template_part( 'content', 'none' ); |
| 39 | +} |
|
| 38 | 40 | |
| 39 | 41 | endif; |
@@ -18,11 +18,11 @@ discard block |
||
| 18 | 18 | <div id="espresso-venue-details-dv" class="" > |
| 19 | 19 | <?php |
| 20 | 20 | // Start the Loop. |
| 21 | - while ( have_posts() ) : the_post(); |
|
| 21 | + while (have_posts()) : the_post(); |
|
| 22 | 22 | // Include the post TYPE-specific template for the content. |
| 23 | - espresso_get_template_part( 'content', 'espresso_venues' ); |
|
| 23 | + espresso_get_template_part('content', 'espresso_venues'); |
|
| 24 | 24 | // If comments are open or we have at least one comment, load up the comment template. |
| 25 | - if ( comments_open() || get_comments_number() ) { |
|
| 25 | + if (comments_open() || get_comments_number()) { |
|
| 26 | 26 | comments_template(); |
| 27 | 27 | } |
| 28 | 28 | endwhile; |
@@ -34,6 +34,6 @@ discard block |
||
| 34 | 34 | </div><!-- #primary --> |
| 35 | 35 | |
| 36 | 36 | <?php |
| 37 | -get_sidebar( 'content' ); |
|
| 37 | +get_sidebar('content'); |
|
| 38 | 38 | get_sidebar(); |
| 39 | 39 | get_footer(); |
| 40 | 40 | \ No newline at end of file |
@@ -1,4 +1,6 @@ |
||
| 1 | -<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
| 1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
| 2 | + exit('No direct script access allowed'); |
|
| 3 | +} |
|
| 2 | 4 | /** |
| 3 | 5 | * Event Attendees shortcode class |
| 4 | 6 | * |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | * @param WP $WP |
| 19 | 19 | * @return void |
| 20 | 20 | */ |
| 21 | - public function run( WP $WP ) {} |
|
| 21 | + public function run(WP $WP) {} |
|
| 22 | 22 | |
| 23 | 23 | |
| 24 | 24 | /** |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * @return string |
| 48 | 48 | * @throws \EE_Error |
| 49 | 49 | */ |
| 50 | - public function process_shortcode( $attributes = array() ) { |
|
| 50 | + public function process_shortcode($attributes = array()) { |
|
| 51 | 51 | \EE_Error::doing_it_wrong( |
| 52 | 52 | __METHOD__, |
| 53 | 53 | __( |
@@ -41,22 +41,22 @@ |
||
| 41 | 41 | |
| 42 | 42 | |
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * @deprecated 4.9.27 |
|
| 46 | - * @param array $attributes |
|
| 47 | - * @return string |
|
| 48 | - * @throws \EE_Error |
|
| 49 | - */ |
|
| 44 | + /** |
|
| 45 | + * @deprecated 4.9.27 |
|
| 46 | + * @param array $attributes |
|
| 47 | + * @return string |
|
| 48 | + * @throws \EE_Error |
|
| 49 | + */ |
|
| 50 | 50 | public function process_shortcode( $attributes = array() ) { |
| 51 | - \EE_Error::doing_it_wrong( |
|
| 52 | - __METHOD__, |
|
| 53 | - __( |
|
| 54 | - 'Usage is deprecated. Please use \EventEspresso\core\domain\entities\shortcodes\EspressoEventAttendeesShortcode instead.', |
|
| 55 | - 'event_espresso' |
|
| 56 | - ), |
|
| 57 | - '4.9.27' |
|
| 58 | - ); |
|
| 59 | - return ''; |
|
| 51 | + \EE_Error::doing_it_wrong( |
|
| 52 | + __METHOD__, |
|
| 53 | + __( |
|
| 54 | + 'Usage is deprecated. Please use \EventEspresso\core\domain\entities\shortcodes\EspressoEventAttendeesShortcode instead.', |
|
| 55 | + 'event_espresso' |
|
| 56 | + ), |
|
| 57 | + '4.9.27' |
|
| 58 | + ); |
|
| 59 | + return ''; |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | |
@@ -1,30 +1,30 @@ discard block |
||
| 1 | 1 | <h2 class="section-heading display-box-heading"> |
| 2 | 2 | <?php _e('Payment Overview', 'event_espresso'); ?> |
| 3 | 3 | </h2> |
| 4 | -<?php do_action( 'AHEE__thank_you_page_payment_details_template__after_heading' ); ?> |
|
| 4 | +<?php do_action('AHEE__thank_you_page_payment_details_template__after_heading'); ?> |
|
| 5 | 5 | |
| 6 | 6 | <div id="espresso-thank-you-page-payment-details-dv"> |
| 7 | -<?php if ( ! empty( $payments )){ ?> |
|
| 7 | +<?php if ( ! empty($payments)) { ?> |
|
| 8 | 8 | <table class="ee-table"> |
| 9 | 9 | <thead> |
| 10 | 10 | <tr> |
| 11 | 11 | <th width="35%" class="jst-left"> |
| 12 | - <?php _e('Payment Date','event_espresso')?> |
|
| 12 | + <?php _e('Payment Date', 'event_espresso')?> |
|
| 13 | 13 | </th> |
| 14 | 14 | <th width="17.5%" class="jst-left"> |
| 15 | - <?php _e('Type','event_espresso');?> |
|
| 15 | + <?php _e('Type', 'event_espresso'); ?> |
|
| 16 | 16 | </th> |
| 17 | 17 | <th width="17.5%" class="jst-rght"> |
| 18 | - <?php _e('Amount','event_espresso');?> |
|
| 18 | + <?php _e('Amount', 'event_espresso'); ?> |
|
| 19 | 19 | </th> |
| 20 | 20 | <th width="30%" class="jst-rght"> |
| 21 | - <?php _e('Status','event_espresso');?> |
|
| 21 | + <?php _e('Status', 'event_espresso'); ?> |
|
| 22 | 22 | </th> |
| 23 | 23 | </tr> |
| 24 | 24 | </thead> |
| 25 | 25 | <tbody> |
| 26 | 26 | <?php |
| 27 | - foreach ( $payments as $payment ) { |
|
| 27 | + foreach ($payments as $payment) { |
|
| 28 | 28 | echo $payment; |
| 29 | 29 | } |
| 30 | 30 | ?> |
@@ -33,38 +33,38 @@ discard block |
||
| 33 | 33 | <?php |
| 34 | 34 | } else { |
| 35 | 35 | |
| 36 | - if ( $transaction->total() ){ |
|
| 36 | + if ($transaction->total()) { |
|
| 37 | 37 | |
| 38 | 38 | echo apply_filters( |
| 39 | 39 | 'FHEE__payment_overview_template__no_payments_made', |
| 40 | - sprintf ( |
|
| 41 | - __('%sNo payments towards this transaction have been received.%s', 'event_espresso' ), |
|
| 40 | + sprintf( |
|
| 41 | + __('%sNo payments towards this transaction have been received.%s', 'event_espresso'), |
|
| 42 | 42 | '<p class="important-notice">', |
| 43 | 43 | '</p>' |
| 44 | 44 | ) |
| 45 | 45 | ); |
| 46 | - do_action( 'AHEE__thank_you_page_payment_details_template__no_payments_made', $transaction ); |
|
| 46 | + do_action('AHEE__thank_you_page_payment_details_template__no_payments_made', $transaction); |
|
| 47 | 47 | |
| 48 | 48 | } else { |
| 49 | 49 | |
| 50 | 50 | echo apply_filters( |
| 51 | 51 | 'FHEE__payment_overview_template__no_payment_required', |
| 52 | - sprintf ( |
|
| 53 | - __('%sNo payment is required for this transaction.%s', 'event_espresso' ), |
|
| 52 | + sprintf( |
|
| 53 | + __('%sNo payment is required for this transaction.%s', 'event_espresso'), |
|
| 54 | 54 | '<p>', |
| 55 | 55 | '</p>' |
| 56 | 56 | ) |
| 57 | 57 | ); |
| 58 | - do_action( 'AHEE__thank_you_page_payment_details_template__no_payment_required' ); |
|
| 58 | + do_action('AHEE__thank_you_page_payment_details_template__no_payment_required'); |
|
| 59 | 59 | |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | } |
| 63 | 63 | echo $gateway_content; |
| 64 | - do_action( 'AHEE__thank_you_page_payment_details_template__after_gateway_content', $gateway_content ); |
|
| 64 | + do_action('AHEE__thank_you_page_payment_details_template__after_gateway_content', $gateway_content); |
|
| 65 | 65 | |
| 66 | 66 | ?> |
| 67 | 67 | |
| 68 | 68 | <br/> |
| 69 | - <?php do_action( 'AHEE__thank_you_page_payment_details_template__after_payment_details' ); ?> |
|
| 69 | + <?php do_action('AHEE__thank_you_page_payment_details_template__after_payment_details'); ?> |
|
| 70 | 70 | |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <h3><?php _e('Transaction Details', 'event_espresso'); ?></h3> |
| 2 | -<?php do_action( 'AHEE__thank_you_page_transaction_details_template__after_heading' ); ?> |
|
| 2 | +<?php do_action('AHEE__thank_you_page_transaction_details_template__after_heading'); ?> |
|
| 3 | 3 | |
| 4 | 4 | <div id="espresso-thank-you-page-transaction-details-dv"> |
| 5 | 5 | <table class='ee-table'> |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | <label><?php _e('Total Cost: ', 'event_espresso'); ?></label> |
| 10 | 10 | </td> |
| 11 | 11 | <td> |
| 12 | - <?php echo EEH_Template::format_currency( $transaction->total() ); ?> |
|
| 12 | + <?php echo EEH_Template::format_currency($transaction->total()); ?> |
|
| 13 | 13 | </td> |
| 14 | 14 | </tr> |
| 15 | 15 | <tr> |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | <label><?php _e('Amount Owing: ', 'event_espresso'); ?></label> |
| 18 | 18 | </td> |
| 19 | 19 | <td class="<?php echo ($transaction->paid() == $transaction->total()) ? 'ee-transaction-paid' : 'ee-transaction-unpaid' ?>"> |
| 20 | - <?php echo EEH_Template::format_currency( $transaction->remaining() ); ?> |
|
| 20 | + <?php echo EEH_Template::format_currency($transaction->remaining()); ?> |
|
| 21 | 21 | </td> |
| 22 | 22 | </tr> |
| 23 | 23 | <tr> |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | <label><?php _e('Transaction Status: ', 'event_espresso'); ?></label> |
| 26 | 26 | </td> |
| 27 | 27 | <td> |
| 28 | - <?php $transaction->e_pretty_status( TRUE ); |
|
| 29 | - if ( $show_try_pay_again_link && ! $transaction->is_completed() ) { ?> |
|
| 28 | + <?php $transaction->e_pretty_status(TRUE); |
|
| 29 | + if ($show_try_pay_again_link && ! $transaction->is_completed()) { ?> |
|
| 30 | 30 | <span class="small-text"><a href='<?php echo $SPCO_payment_options_url?>'><?php _e('View Payment Options', 'event_espresso'); ?></a></span> |
| 31 | 31 | <?php } ?> |
| 32 | 32 | </td> |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | <?php echo $primary_registrant_name; ?> |
| 40 | 40 | </td> |
| 41 | 41 | </tr> |
| 42 | - <?php do_action( 'AHEE__thank_you_page_transaction_details_template__after_transaction_table_row', $transaction ); ?> |
|
| 42 | + <?php do_action('AHEE__thank_you_page_transaction_details_template__after_transaction_table_row', $transaction); ?> |
|
| 43 | 43 | </tbody> |
| 44 | 44 | </table> |
| 45 | 45 | |
| 46 | -<?php if ( $show_try_pay_again_link && ! $transaction->is_completed() ) { ?> |
|
| 46 | +<?php if ($show_try_pay_again_link && ! $transaction->is_completed()) { ?> |
|
| 47 | 47 | <p class="small-text jst-rght"> |
| 48 | 48 | <a href='<?php echo $SPCO_payment_options_url?>'><?php _e("Click here to view Payment Options", 'event_espresso'); ?></a> |
| 49 | 49 | </p> |
@@ -52,6 +52,6 @@ discard block |
||
| 52 | 52 | |
| 53 | 53 | <?php }?> |
| 54 | 54 | |
| 55 | - <?php do_action( 'AHEE__thank_you_page_transaction_details_template__after_transaction_details' ); ?> |
|
| 55 | + <?php do_action('AHEE__thank_you_page_transaction_details_template__after_transaction_details'); ?> |
|
| 56 | 56 | |
| 57 | 57 | </div> |