Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #279672
    cindy
    Participant

    I’m still waiting for information on how to turn off the custom image sizes (thumbnails) created by Catch Responsive Pro. It’s been more than a month now since I last gave you the info you requested.

    I’m also still getting a lot of jquery errors.

    Cindy
    https://explorationvacation.net/

    #279735
    Skandha
    Participant

    @thetravelgal: Hello Cindy,
    Can you please
    Go to => Child Theme Folder => functions.php and add the following Code.

    function remove_extra_image_sizes() {
    	remove_image_size( 'catchresponsive-slider', 1200, 514, true ); // used for Featured slider Ratio 21:9
    
    	remove_image_size( 'catchresponsive-featured-content', 350, 197, true ); // used in Featured Content and Portfolio Ratio 16:9
    
    	remove_image_size( 'catchresponsive-hero', 528, 297, true ); // used in Hero Content
    
    	//Archive Images
    	remove_image_size( 'catchresponsive-featured', 860, 484, true); // used in Archive Top Ratio 16:9
    	remove_image_size( 'catchresponsive-square', 200, 200, true ); // used in Archive Left/Right Ratio 1:1
    
    	remove_image_size( 'catchresponsive-sm-square', 100, 100, true ); // used in Testimonials and Services Ratio 1:1
    
    	remove_image_size( 'catchresponsive-stats', 40, 40, true ); // used in Stats Ratio 1:1
    }
    add_action('init', 'remove_extra_image_sizes');

    And then regenerate the thumbnails.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘turn off custom image sizes for thumbnails’ is closed to new replies.