• Hello,

    I’m trying to overwrite the landing shop template: myChildTheme/woocommerce/archive-product.php but nothing changes…

    I saw others posts like this, the solution was to replace woocommerce_content() from the woocommerce.php file in woocommerce directory by

    if ( is_singular( 'product' ) ) {
         woocommerce_content();
      }else{
       //For ANY product archive.
       //Product taxonomy, product search or /shop landing
        woocommerce_get_template( 'archive-product.php' );
      }

    But for me this line doesn’t appear…

    Thank you for helping !

    Mel

  • The topic ‘unable to customize archive-product.php woocommerce’ is closed to new replies.