Hello!
I've got Joomla 4.4.6 and Cart 4.0.10
I tried different sizes of thumbs, but whatever I change cart makes 320 x 480 px. Something doesn't work or I do something wrong?
Yere is the screenshot ↓
https://i.postimg.cc/zDb6KvNd/2024-07-18-141835.jpg
This setting I've got right now. I load pictures 600 x 900px
Question of the same subject. Is it possible to turn of completely thumbnails creation and use original image instead?
As for me it much easierе to process pictures with css.
Very small thumbs are created
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Very small thumbs are created
Hi, did you recreate the thumbnails after chaning the size?
There is no option to completely remove thumbnails. This feature has many many different tasks and reasons.
Jan
There is no option to completely remove thumbnails. This feature has many many different tasks and reasons.
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 9
- Joined: 20 Mar 2023, 14:16
Re: Very small thumbs are created
Thanks! the problem was sorted! I've recreated thumbs but didn`t clean browser cache
-
- Phoca Newbie
- Posts: 9
- Joined: 20 Mar 2023, 14:16
Re: Very small thumbs are created
Second question about backend images. In products images popup window "Choose Photo" displays photos with 16 x 16 px only, they are too small to pick the right photo. Is it possible to increase size in settings? Only the way I could found so far - this file media/com_phocacart/css/administrator/phocacart.css and as I understand it works before the first update.
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Very small thumbs are created
You can do it per CSS, e.g. in administration template custom.css:
(add !important if this will have no effect)
Jan
Code: Select all
#phocacartmanager td a img {
width: 5em;
height: auto;
}
Jan
If you find Phoca extensions useful, please support the project