coreylee
Forum Replies Created
-
Forum: Plugins
In reply to: [App Store Assistant] PHP API for list, post…. imagesHi sealsystems,
Thanks a lot.
Forum: Plugins
In reply to: [App Store Assistant] Generating thumbnails for post listingIn order to generate some thumbnails that my website can use, I had to add some code to app-store-functions.php
$editor = wp_get_image_editor( $bestFilePath );
$newSize = 180;
$editor->resize( $newSize, $newSize, true );
$filename = $editor->generate_filename( ‘180×180’, CACHE_DIRECTORY .”AppStore/”. $appID . ‘/’, NULL );
$new_image_info = $editor->save($filename);Forum: Plugins
In reply to: [App Store Assistant] Generating thumbnails for post listingIt’s not featured image. It’s the images that are needed for home or category pages. If you look at my website (http://appedreview.org/), you will notice that all images are thumbnails. I have to generate these thumbnail manually, otherwise, it will try to load big Featured images, such as http://appedreview.org/wp-content/uploads/appstoreassistant_cache/AppStore/378352300/artworkUrl512.png. This significantly slows down the loading speed of my website. I am hoping that your plugin will automatically generate these thumbnail automatically so that it will help the loading speed. Thanks.