• Resolved Siman-Tov Yechiel

    (@mastersgate)


    hi

    in the store.php file there is a function that displaying the product of the vendor in the store page:

    <?php wc_get_template_part( ‘content’, ‘product’ ); ?>

    i want to modify the content of the product. which file is dealing with that ?

    thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @mastersgate,

    Actually in store page, the content of product same as archive product template or shop page product template in woocommerce. If you need to change whole product template styling, then just override content-product.php file under woocommerce folder in your child theme.

    If you need to modify only store page product template then just remove the code
    <?php wc_get_template_part( ‘content’, ‘product’ ); ?> and apply custom WP_Query with product post type.

    Thank you

    Thread Starter Siman-Tov Yechiel

    (@mastersgate)

    thank you !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘modifing the content of the vendor product display’ is closed to new replies.