Title: veebid's Replies | WordPress.org

---

# veebid

  [  ](https://wordpress.org/support/users/veebid/)

 *   [Profile](https://wordpress.org/support/users/veebid/)
 *   [Topics Started](https://wordpress.org/support/users/veebid/topics/)
 *   [Replies Created](https://wordpress.org/support/users/veebid/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/veebid/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/veebid/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/veebid/engagements/)
 *   [Favorites](https://wordpress.org/support/users/veebid/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] A variable mismatch has been detected.](https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected/)
 *  Thread Starter [veebid](https://wordpress.org/support/users/veebid/)
 * (@veebid)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected/page/2/#post-11001360)
 * Thanks, now everything works! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] A variable mismatch has been detected.](https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected/)
 *  Thread Starter [veebid](https://wordpress.org/support/users/veebid/)
 * (@veebid)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/a-variable-mismatch-has-been-detected/#post-10982818)
 * Info:
    Wordpress ver 5.0.1 PHP ver 7.2 NextGen Gallery ver 3.1.1
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Word after transport text in PDF](https://wordpress.org/support/topic/word-after-transport-text-in-pdf/)
 *  Thread Starter [veebid](https://wordpress.org/support/users/veebid/)
 * (@veebid)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/word-after-transport-text-in-pdf/#post-10505002)
 * Hi, Thank you for your help I finally found where this came from.
 * This is string from WooCommerse and WPML automatially translated it:
 * Screenshot:
 * [https://ibb.co/jdTJJd](https://ibb.co/jdTJJd)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Invoices & Packing Slips for WooCommerce] Word after transport text in PDF](https://wordpress.org/support/topic/word-after-transport-text-in-pdf/)
 *  Thread Starter [veebid](https://wordpress.org/support/users/veebid/)
 * (@veebid)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/word-after-transport-text-in-pdf/#post-10504103)
 * Hi
    I’m useing default woocommerce e-mails for this website.
 * I have custom code only for single-product files.
 *     ```
       <?php
       /**
        * Order details
        *
        * This template can be overridden by copying it to yourtheme/woocommerce/order/order-details.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/template-structure/
        * @author  WooThemes
        * @package WooCommerce/Templates
        * @version 3.3.0
        */
   
       if ( ! defined( 'ABSPATH' ) ) {
       	exit;
       }
       if ( ! $order = wc_get_order( $order_id ) ) {
       	return;
       }
   
       $order_items           = $order->get_items( apply_filters( 'woocommerce_purchase_order_item_types', 'line_item' ) );
       $show_purchase_note    = $order->has_status( apply_filters( 'woocommerce_purchase_note_order_statuses', array( 'completed', 'processing' ) ) );
       $show_customer_details = is_user_logged_in() && $order->get_user_id() === get_current_user_id();
       $downloads             = $order->get_downloadable_items();
       $show_downloads        = $order->has_downloadable_item() && $order->is_download_permitted();
   
       if ( $show_downloads ) {
       	wc_get_template( 'order/order-downloads.php', array( 'downloads' => $downloads, 'show_title' => true ) );
       }
       ?>
       <section class="woocommerce-order-details">
       	<?php do_action( 'woocommerce_order_details_before_order_table', $order ); ?>
   
       	<h2 class="woocommerce-order-details__title"><?php _e( 'Order details', 'woocommerce' ); ?></h2>
   
       	<table class="woocommerce-table woocommerce-table--order-details shop_table order_details">
   
       		<thead>
       			<tr>
       				<th class="woocommerce-table__product-name product-name"><?php _e( 'Product', 'woocommerce' ); ?></th>
       				<th class="woocommerce-table__product-table product-total"><?php _e( 'Total', 'woocommerce' ); ?></th>
       			</tr>
       		</thead>
   
       		<tbody>
       			<?php
       			do_action( 'woocommerce_order_details_before_order_table_items', $order );
   
       			foreach ( $order_items as $item_id => $item ) {
       				$product = $item->get_product();
   
       				wc_get_template( 'order/order-details-item.php', array(
       					'order'			     => $order,
       					'item_id'		     => $item_id,
       					'item'			     => $item,
       					'show_purchase_note' => $show_purchase_note,
       					'purchase_note'	     => $product ? $product->get_purchase_note() : '',
       					'product'	         => $product,
       				) );
       			}
   
       			do_action( 'woocommerce_order_details_after_order_table_items', $order );
       			?>
       		</tbody>
   
       		<tfoot>
       			<?php
       				foreach ( $order->get_order_item_totals() as $key => $total ) {
       					?>
       					<tr>
       						<th scope="row"><?php echo $total['label']; ?></th>
       						<td><?php echo $total['value']; ?></td>
       					</tr>
       					<?php
       				}
       			?>
       			<?php if ( $order->get_customer_note() ) : ?>
       				<tr>
       					<th><?php _e( 'Note:', 'woocommerce' ); ?></th>
       					<td><?php echo wptexturize( $order->get_customer_note() ); ?></td>
       				</tr>
       			<?php endif; ?>
       		</tfoot>
       	</table>
   
       	<?php do_action( 'woocommerce_order_details_after_order_table', $order ); ?>
       </section>
   
       <?php
       if ( $show_customer_details ) {
       	wc_get_template( 'order/order-details-customer.php', array( 'order' => $order ) );
       }
       ```
   

Viewing 4 replies - 1 through 4 (of 4 total)