Woocommerce images resizing not showing in products tab

I am running X theme 5.2.5 with child theme 1.0.0 I want to resize the images in my store and on the product pages however I am unable to find the resizing tool within the products tab of woocommerce.

Example 1 : https://biketoursforthewounded.co.uk/shop
Example 2 : https://biketoursforthewounded.co.uk/product/hoodie-with-tour-itinerary

I have tried to add code as suggested in to the child theme functions.php but to no avail the current child theme has the following in:

<?php // ============================================================================= // FUNCTIONS.PHP // ----------------------------------------------------------------------------- // Overwrite or add your own custom functions to X in this file. // ============================================================================= // ============================================================================= // TABLE OF CONTENTS // ----------------------------------------------------------------------------- // 01. Enqueue Parent Stylesheet // 02. Additional Functions // ============================================================================= // Enqueue Parent Stylesheet // ============================================================================= add_filter( 'x_enqueue_parent_stylesheet', '__return_true' ); // Additional Functions // ============================================================================= // Do Not Remove Woocommerce Plugin Settings // ============================================================================= function x_woocommerce_donot_remove_plugin_setting(){ if ( ! is_admin() ) { return; } remove_filter( 'woocommerce_product_settings', 'x_woocommerce_remove_plugin_settings', 10 ); } add_action('init', 'x_woocommerce_donot_remove_plugin_setting'); // ============================================================================= // WooCommerce Short Thumbnail size change // ============================================================================= function x_woocommerce_shop_thumbnail2() { GLOBAL $product; $stack = x_get_stack(); $stack_thumb = 'shop_catalog'; $stack_shop_thumb = $stack_thumb; $id = get_the_ID(); $rating = $product->get_rating_html(); woocommerce_show_product_sale_flash(); echo '
'; echo ''; echo get_the_post_thumbnail( $id , $stack_shop_thumb ); if ( ! empty( $rating ) ) { echo '
' . $rating . '
'; } echo '
'; echo "
"; } add_filter('init', function() { remove_action( 'woocommerce_before_shop_loop_item_title', 'x_woocommerce_shop_thumbnail', 10 ); }); add_action( 'woocommerce_before_shop_loop_item_title', 'x_woocommerce_shop_thumbnail2', 10 ); // Woocommerce Product Images = Show all thumbnails sizes under its settings // ============================================================================= function remove_product_settings_filter() { remove_filter( 'woocommerce_product_settings', 'x_woocommerce_remove_plugin_settings' ); } add_filter('init', 'remove_product_settings_filter'); Your support in this matter would be most grateful

Hi,

It’s under Products > Display tab

See screenshot

With the latest version, you don’t need to ad any code for that settings to show up.

Thanks

See screen shot of what I am seeing I am not getting product images

No way to adjust product images

Any ideas please

Hey @cisnorwich,

Please remove your additional functions related to WooCommerce then check again.

Thanks.

I have deactivated the two plugins which and the additional functions related to wooCommerce

Hey There,

I seems that you have updated to the latest version of WooCommerce. Looking for the product display options? They can now be found in the Customizer.

Please check out this changelog:

Hope this helps.

I’m also having issues with the product image sizes for the woocommerce product images since the update.

I have had no real improvements any other suggestions

@jonopoon

Kindly create a New Topic and provide us more details about the issue and your site url.

@cisnorwich

Would you mind providing us with login credentials so we can take a closer look? Please provide following information:

Set it as Secure Note

  • Link to your site
  • WordPress Admin username / password
  • FTP credentials

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.