Viewing 1 replies (of 1 total)
  • Plugin Author Ben Ritner – Kadence WP

    (@britner)

    We haven’t added size options yet, but could be a good setting currently you would need to filter that through woocommerce:

    add_filter( 'woocommerce_email_order_items_args', 'custom_add_wc_order_email_args_images', 20 );
    function custom_add_wc_order_email_args_images( $args ) {
    $args['image_size'] = array( 50, 50 );
    return $args;
    }

    Ben

Viewing 1 replies (of 1 total)
  • The topic ‘Product image cropped’ is closed to new replies.