I am having the same problem, I tried to cut down the product list to simple products only but I still get an empty CSV file.
Few config details on my site:
.htaccess
php_value memory_limit 256M
php_value max_execution_time 300
php_value max_input_time 300
php.ini
memory_limit = 256M
file_uploads = On
max_execution_time = 300
wp-config
define(‘WP_MEMORY_LIMIT’, ‘256M’);
I managed to put the tabs where I want it to using woocommerce hooks, thanks! this one helped me:
https://businessbloomer.com/woocommerce-move-product-tabs-short-description/
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
add_action( 'woocommerce_single_product_summary', woocommerce_output_product_data_tabs', 60 );
-
This reply was modified 8 years, 5 months ago by jirodearmas.