Ok I found the solution.
<?php
$x = 1;
?>
<li class="columns class<?php echo esc_attr($x++); ?>">
this code only works within one file of php so I needed to keep everything in one php file,
exactly in archive-product.php
Instead of keeping this reference to another php file
<?php wc_get_template_part( 'content', 'product' ); ?>
I took all the content from the content product and added it in archive-product.php
so $x code could work.
That's how the code of archive-product.php looks like and it works perfectly:
defined( 'ABSPATH' ) || exit;
get_header( 'shop' );
do_action( 'woocommerce_before_main_content' );
?>
<header class="woocommerce-products-header">
<?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
<h1 class="woocommerce-products-header__title page-title"><?php
woocommerce_page_title(); ?></h1>
<?php endif; ?>
<?php
do_action( 'woocommerce_archive_description' );
?>
</header>
<?php
if ( woocommerce_product_loop() ) {
do_action( 'woocommerce_before_shop_loop' );
}
?>
<div class="products">
<?php
$one = 1;
$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();
?>
<div class="columns product<?php echo esc_attr($one++); ?>">
<div class="column is-one-third">
<?php
defined( 'ABSPATH' ) || exit;
global $product;
if ( empty( $product ) || ! $product->is_visible() ) {
return;
}
do_action( 'woocommerce_before_shop_loop_item' );
do_action( 'woocommerce_before_shop_loop_item_title' );
do_action( 'woocommerce_shop_loop_close_link' );
?>
</div>
<div class="column">
<?php
do_action( 'woocommerce_before_shop_loop_item' );
do_action( 'woocommerce_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item_title' );
do_action( 'woocommerce_after_shop_loop_item' );
do_action( 'woocommerce_shop_loop_close_link' );
?>
</div>
</div>
<?php
endwhile;
} else {
echo __( 'Nie znaleziono produktów' );
}
wp_reset_postdata();
?>
</div>
<?php
do_action( 'woocommerce_after_shop_loop' );
get_footer( 'shop' );
$x = 1;
need to be outside the product loop just after the<ul>
tag and before the product loop… – LoicTheAztec