woocommerce_order_item_name

woocommerce_order_item_name

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_order_item_name') is found 5 times:

  • /includes/class-wc-structured-data.php line 516
    					),
    				),
    				'itemOffered'        => array(
    					'@type' => 'Product',
    					'name'  => wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, $is_visible ) ),
    					'sku'   => $product_exists ? $product->get_sku() : '',
    					'image' => $product_exists ? wp_get_attachment_image_url( $product->get_image_id() ) : '',
    					'url'   => $is_visible ? get_permalink( $product->get_id() ) : get_home_url(),
    				),
    				'seller'             => array(
    					'@type' => 'Organization',
    
  • /templates/checkout/form-pay.php line 43
    					?>
    					<tr class="<?php echo esc_attr( apply_filters( 'woocommerce_order_item_class', 'order_item', $item, $order ) ); ?>">
    						<td class="product-name">
    							<?php
    								echo wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) );
    
    								do_action( 'woocommerce_order_item_meta_start', $item_id, $item, $order, false );
    
    								wc_display_item_meta( $item );
    
    								do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, false );
    
  • /templates/emails/email-order-items.php line 50
    			echo wp_kses_post( apply_filters( 'woocommerce_order_item_thumbnail', $image, $item ) );
    		}
    
    		// Product name.
    		echo wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) );
    
    		// SKU.
    		if ( $show_sku && $sku ) {
    			echo wp_kses_post( ' (#' . $sku . ')' );
    		}
    
    
  • /templates/emails/plain/email-order-items.php line 34
    			$purchase_note = $product->get_purchase_note();
    		}
    
    		// phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
    		echo wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) );
    		if ( $show_sku && $sku ) {
    			echo ' (#' . $sku . ')';
    		}
    		echo ' X ' . apply_filters( 'woocommerce_email_order_item_quantity', $item->get_quantity(), $item );
    		echo ' = ' . $order->get_formatted_line_subtotal( $item ) . "\n";
    		// phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped
    
  • /templates/order/order-details-item.php line 33
    		<?php
    		$is_visible        = $product && $product->is_visible();
    		$product_permalink = apply_filters( 'woocommerce_order_item_permalink', $is_visible ? $product->get_permalink( $item ) : '', $item, $order );
    
    		echo wp_kses_post( apply_filters( 'woocommerce_order_item_name', $product_permalink ? sprintf( '<a href="%s">%s</a>', $product_permalink, $item->get_name() ) : $item->get_name(), $item, $is_visible ) );
    
    		$qty          = $item->get_quantity();
    		$refunded_qty = $order->get_qty_refunded_for_item( $item_id );
    
    		if ( $refunded_qty ) {
    			$qty_display = '<del>' . esc_html( $qty ) . '</del> <ins>' . esc_html( $qty - ( $refunded_qty * -1 ) ) . '</ins>';