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 '"; } 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