• Resolved paspier

    (@paspier)


    Hello,

    I would like to supress all images created by HT Mega with these custom sizes : 585×295 px, 1170×536 px, 396×360 px.

    Can you help me please ?

    Thanks a lot, sincerely yours,

    Pascal

Viewing 1 replies (of 1 total)
  • Plugin Contributor Tarek Aziz

    (@tarekht)

    Hello Pascal,

    Thank you very much for getting in touch with us.

    I greatly appreciate you for choosing our HT Mega plugin ??

    After reviewing your message, I understand your requirements. Well, you can certainly suppress the image sizes pre-defined by the plugin.

    To suppress the pre-defined image sizes, you can simply add the following code snippet to the functions.php file of your theme.

    function remove_htmega_custom_image_sizes() {
       // Remove the custom image size
       remove_image_size('htmega_size_585x295');
       remove_image_size('htmega_size_1170x536');
       remove_image_size('htmega_size_396x360');
    }
    add_action('init', 'remove_htmega_custom_image_sizes');

    Please be informed that removing these image sizes will affect some of the pre-built layouts where these sizes are applied.

    I hope this helps! If you have any questions or need more assistance, our dedicated support team is always here to help.

    Wishing you a wonderful day ahead!

    Kindest regards,
    Tarek Aziz

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove HT mega custom thumb images ?’ is closed to new replies.