Is it possible to change the number of images for a listing to 6 instead of 3?
If so, where would I find the code to change it?
Adding more images in Listings
Moderator: alexandrleonenko
-
- Site Admin
- Posts: 6175
- Joined: Jan 7th, '09, 23:18
- Contact:
Re: Adding more images in Listings
Yes, you may change it - all changes may be done in include/classes/Listings.class.php
Re: Adding more images in Listings
Please for more details.
In include/classes/Listings.class.php I discovered how to make changes
What I found is how to change the number of opportunities (photos) when choosing an advertising plan in AdvertisePlans.class.php
line 129 example:
In include/classes/Listings.class.php I discovered how to make changes
What I found is how to change the number of opportunities (photos) when choosing an advertising plan in AdvertisePlans.class.php
line 129 example:
Code: Select all
$arr_images = array('0'=>'0', '1'=>'1', '2'=>'2', '9'=>'9', '20'=>'20');
Re: Adding more images in Listings
where will you do this in UBusiness Directory ver 2.6?
-
- Site Admin
- Posts: 6175
- Joined: Jan 7th, '09, 23:18
- Contact:
Re: Adding more images in Listings
In uBusinessDirectory you have option to add upto 4 images
Re: Adding more images in Listings
O, but if I need more? where & how is that setup?
-
- Site Admin
- Posts: 6175
- Joined: Jan 7th, '09, 23:18
- Contact:
Re: Adding more images in Listings
If you have knowledge in PHP you may do it with easy.
Simply look how it's done in the script and add in the same way additional image fields.
The script has MVC structure.
Simply look how it's done in the script and add in the same way additional image fields.
The script has MVC structure.