- Posts: 2
- Thank you received: 0
OS Property support center
Category Images
- zer0g
- Topic Author
- Offline
- New Member
-
Less
More
11 years 11 months ago - 11 years 11 months ago #30922
by zer0g
Category Images was created by zer0g
Hi,
where can i change the size of the category images? I've been looking through the code but i cannot find the right file.
Could you give me a hint?
Moreover, is it possible to add a hint für empty categories?
Thank you
Kind regards,
where can i change the size of the category images? I've been looking through the code but i cannot find the right file.
Could you give me a hint?
Moreover, is it possible to add a hint für empty categories?
Thank you
Kind regards,
Last edit: 11 years 11 months ago by zer0g.
Please Log in or Create an account to join the conversation.
- Mr. Dam
-
- Offline
- Administrator
-
Less
More
- Posts: 13023
- Thank you received: 1688
11 years 11 months ago #30939
by Mr. Dam
Replied by Mr. Dam on topic Re: Category Images
Hi,
You can change the category image in file
components > com_osproperty > classes > category.html.php
In list categories function (listCategories)
This code
<?php
if($row->category_image == ""){
?>
<img src="<?php echo JURI::root()?>components/com_osproperty/images/assets/noimage.png" style="height:80px;" class="img-rounded"/>
<?php
}else{
?>
<img src="<?php echo JURI::root()?>images/osproperty/category/thumbnail/<?php echo $row->category_image?>" style="height:80px;" class="img-rounded" />
<?php
}
?>
Good luck
Dam
You can change the category image in file
components > com_osproperty > classes > category.html.php
In list categories function (listCategories)
This code
<?php
if($row->category_image == ""){
?>
<img src="<?php echo JURI::root()?>components/com_osproperty/images/assets/noimage.png" style="height:80px;" class="img-rounded"/>
<?php
}else{
?>
<img src="<?php echo JURI::root()?>images/osproperty/category/thumbnail/<?php echo $row->category_image?>" style="height:80px;" class="img-rounded" />
<?php
}
?>
Good luck
Dam
Please Log in or Create an account to join the conversation.
Moderators: Mr. Dam, Nguyen Phu Quan
Support
Documentation
Information
Copyright © 2025 Joomla Extensions by Joomdonation. All Rights Reserved.
joomdonation.com is not affiliated with or endorsed by the Joomla! Project or Open Source Matters.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.
The Joomla! name and logo is used under a limited license granted by Open Source Matters the trademark holder in the United States and other countries.