Forum Replies Created
-
Author
-
VinzentParticipant
Hi. @sharmstr
Because people kept asking what was going to be in 4.0
Release 4.0 will not be updated.
I understood.But I wonder.
The date I purchased the theme 12.15.2015Look at the update log
COPY CODEVersion 3.9.1 - 17.02.2016 - Fixed Javascript error on Buddypress profile page related to cover image script Version 3.9 - 15.02.2016 - NEW FEATURE: SideKick interactive WordPress tutorials integrations. You get a FREE premium SIDEKICK annual license (a $ 60 value) and 10 Kleo specific tutorials plus other 200 WordPress Basics Walkthroughs.
I’ve never even once the theme is updated automatically suspended.
Moreover, I have no sidekick plugins.I do not want to manually update (afraid …)
My theme is Kleo wonder that auto-update feature work?
VinzentParticipantI found the solution.
I found two things failed.The first solution.
kleo / page-parts / post-content-masonry.php copy the files to kleo-child / page-parts / post-content-masonry.php.Before change:
$ image = aq_resize ($ slide, $ kleo_config [ 'post_gallery_img_width'], $ kleo_config [ 'post_gallery_img_height'], true, true, true);
After the change:
$ image = aq_resize ($ slide, 480, 480, true, true, true);
Before change:
$ image = aq_resize ($ img_url, $ kleo_config [ 'post_gallery_img_width'], null, true, true, true);
After the change:
$ image = aq_resize ($ img_url, 480, 480, true, true, true);
No change.
The second solution.
kleo-child / functions.phpCOPY CODEfunction KleoCustomImagesSizes () { global $ kleo_config; // Post image sizes for carousels and galleries $ Kleo_config [ 'post_gallery_img_width'] = 555; $ Kleo_config [ 'post_gallery_img_height'] = 333; } add_action ('after_setup_theme', 'KleoCustomImagesSizes');
There is also no change.
I would like to help.
-
AuthorPosts