Hi @damians20171,
Please mention which version of the plugin are you currently installed.
The current version is 2.7.2. Plugin is now in free edition.
The second option is just to remove all the images from the product col.
-
This reply was modified 1 year, 7 months ago by
damians20171.
-
This reply was modified 1 year, 7 months ago by
damians20171.
Hi @damians20171,
Please try adding below code in your active theme’s functions.php
add_filter('wf_pklist_add_custom_css','wt_pklist_product_image_col',10,2);
function wt_pklist_product_image_col($custom_css,$template_type)
{
if($template_type=='packinglist')
{
$custom_css.='.wfte_product_image_thumb{max-width:30px !important; max-height:30px !important; width:30px !important; height:30px !important;}';
}
return $custom_css;
}
Hello, unfortunatelly it does not work.
There is something like wt_pklist_product_image_col in code you wrote.
My problem is not about product image col but problem is about images in product col.
I deleted the image col at all so it is not about that col.
PDF is generated with images of additional fields for woocommerce so it is not Product image and it is not about image col.
Thank you for your try and i hope for next try of help.
Hi @damians20171,
You can use the updated code snippet below to hide the meta image.
add_filter('wf_pklist_add_custom_css','wt_pklist_product_image_col',10,2);
function wt_pklist_product_image_col($custom_css,$template_type)
{
if($template_type=='invoice' || $template_type=='packinglist')
{
$custom_css.='.img-material{display:none !important;}';
}
return $custom_css;
}