-
Author
-
October 16, 2016 at 07:59 #139814MichaelPParticipant
Kleo adds its own thumbnails (678px) (in addition to WordPress thumbnails) and a custom image size (1138px). This unnecessarily bloats our upload directory (we work with many screenshots) because Kleo adds additional files for each screenshot. Where are these image sizes actually used?
I disabled these sizes now by adding the below code to functions.php in the child theme which appears to solve the problem. (We use 600px thumbnails). What I would like to know is if this can cause problems.
function kleo_child_setup() {
set_post_thumbnail_size( 600, 9999 );
remove_image_size(‘kleo-full-width’);
}
add_action( ‘after_setup_theme’, ‘kleo_child_setup’, 11 );October 17, 2016 at 08:42 #139866LauraModeratorHello, will assign the ticket to a higher support level who can help and advise you in your query.
Thanks! ?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
October 17, 2016 at 20:39 #139974RaduModeratorHi,
Nope this will not cause any problems to your theme, it just removes that size
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionOctober 18, 2016 at 19:48 #140114RaduModeratorCheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.