Viewing 1 replies (of 1 total)
  • Hi,

    You have to add the following code to my-account.php (dont’forget to copy the whole my-account.php in your child theme in folder ‘myaccount’ because you dont want to lose your changes after an update of WC):

    <h2> Bought Products </h2>
    <ul class=”products”>
    <?php
    $user_id = get_current_user_id();
    $current_user= wp_get_current_user();
    $customer_email = $current_user->email;
    $args = array(
    ‘post_type’ => ‘product’,
    ‘posts_per_page’ => 12
    );
    $loop = new WP_Query( $args );
    if ( $loop->have_posts() ) {
    while ( $loop->have_posts() ) : $loop->the_post(); $_product = get_product( $loop->post->ID );
    if (wc_customer_bought_product($customer_email, $user_id,$_product->id)){
    woocommerce_get_template_part( ‘content’, ‘product’ );
    }
    endwhile;
    } else {
    echo __( ‘Все още нямате закупени продукти.’ );
    }
    wp_reset_postdata();
    ?>
    <!–/.products–>

Viewing 1 replies (of 1 total)
  • The topic ‘Will bought video appear in My Account?’ is closed to new replies.