belly.89
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Car Manager] Changing image thumbnail?@artiman Thanks for your reply,
<s>changing the thumbnail size in the css file has worked. the problem is that the “source” file of the thumbnail still is 100px. So the image is enlarged from 100x100px tot 200x200px so it’s not sharp. I tried changing some settings in the back-end of the site, like resizing the thumbnail, rebuilding the thumbnail, but without success.
I believe the name of the thumbnail is: wpcm_vehicle_thumbnail or wpcm_vehicle_listings_item but i cannot find how to change the size.
Do you happen to know how to fix this?</s>
Thanks!
edit 2:
found the solution, you can change this by following the steps:
<s>1. go to plugins
2. edit the wp car manager
3. open the file “wp-car-manager/src/Plugin.php” on the right side
4. search for wpcm_vehicle_thumbnail and change it to:
add_image_size( ‘wpcm_vehicle_thumbnail’, 200, 200, true );
5. search for wpcm_vehicle_listings_item and change it to:
add_image_size( ‘wpcm_vehicle_listings_item’, 200, 200, true );
6. save the changes.
7. rebuild the existing thumbnails (with the plugin “AJAX Thumbnail Rebuild”).
8. also change the css file as artiman explained.</s>This worked for my.
Edit3:
Now i see the car page itself doesn’t work anymore. need some more testing before i can make sure this worksedit: typo
edit2: solutionForum: Plugins
In reply to: [WP Car Manager] Changing image thumbnail?I’m also trying to change the size of the Thumbnails.
I managed to change the size from 100x100px to 200x200px by editing the CSS file. but the source is still 100x100px so the imaged is not stretched and not sharp. So i need a way to change the source of the thumbnail to 200x200px. But i cannot find were to change this
Hopefully someone can help us with this
- This reply was modified 8 years, 10 months ago by belly.89.