Handgemaakte kerstkaart – Kind en moeder met cadeautjes

Mooie kerstkaart getekend door een van onze medewerkers.

 1,50

5 op voorraad

remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); add_action( 'woocommerce_after_single_product_summary', 'custom_cross_sells_on_product_page', 20 ); function custom_cross_sells_on_product_page() { global $product; $cross_sells = $product->get_cross_sell_ids(); if ( ! empty( $cross_sells ) ) { $args = array( 'post_type' => 'product', 'ignore_sticky_posts' => 1, 'no_found_rows' => 1, 'posts_per_page' => 4, 'post__in' => $cross_sells, 'orderby' => 'post__in' ); $products = new WP_Query( $args ); if ( $products->have_posts() ) { echo '
'; echo '

Ook interessant voor jou

'; woocommerce_product_loop_start(); while ( $products->have_posts() ) { $products->the_post(); wc_get_template_part( 'content', 'product' ); } woocommerce_product_loop_end(); echo '
'; } wp_reset_postdata(); } }