Notice

The forum is in read only mode.

Support Forum

Welcome! Support Forums have been reactivated
Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.

Number of thumbnails setting?

8 years 10 months ago
  • Gavin's Avatar
    Topic Author
  • Gavin
  • Offline
  • Junior Boarder
  • Posts: 119
  • Thank you received: 9
Licenses:
JomSocial Active Socialize Expired

Can't find the setting to change the number of thumbnails shown in a group or personal album... I have a couple of gaps with room for 2 more images, it looks untidy and can fool users into thinking there are no images in the album.. thanks!

8 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

Hi Gavin,

Which sections? can you provide me the screenshoot please?

thank you!

8 years 10 months ago
  • Gavin's Avatar
    Topic Author
  • Gavin
  • Offline
  • Junior Boarder
  • Posts: 119
  • Thank you received: 9
Licenses:
JomSocial Active Socialize Expired

I cant provide screenshots as I am guessing it wont be allowed here :)
But I can tell you where:
When click group. Then click an album in group...there is thumbnails
When clicking a members photo>album, there is also thumbnails...
Need to change both of these amounts displayed by adding 3 more thumbnails

8 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

Do you mean the thumbs on detail album right? you can change the limit from Jomsocial configuration->layouts->and change "Default pagination", but this configuration will effected to all global pagination list :)

8 years 10 months ago
  • Gavin's Avatar
    Topic Author
  • Gavin
  • Offline
  • Junior Boarder
  • Posts: 119
  • Thank you received: 9
Licenses:
JomSocial Active Socialize Expired

Ahh that fixed it! Thanks! I was assuming it to be under photos settings =)
I notice though, not all number combinations are possible some like 15 is not in an option, perhaps this can be made to be typed instead of a pulldown box?

8 years 10 months ago
  • Dimas's Avatar
  • Dimas
  • Visitor
  • Thank you received: 0
Licenses:

you can add new value there from this file administrator/components/com_community/views/configuration/tmpl/display.php, add new parameter on this code :

<select name="pagination">
                                <?php
                                $selected2	= ( $this->config->get('pagination') == '2' ) ? 'selected="true"' : '';
                                $selected4	= ( $this->config->get('pagination') == '4' ) ? 'selected="true"' : '';
                                $selected6	= ( $this->config->get('pagination') == '6' ) ? 'selected="true"' : '';
                                $selected8	= ( $this->config->get('pagination') == '8' ) ? 'selected="true"' : '';
                                $selected10	= ( $this->config->get('pagination') == '10' ) ? 'selected="true"' : '';
                                $selected12	= ( $this->config->get('pagination') == '12' ) ? 'selected="true"' : '';
                                $selected14	= ( $this->config->get('pagination') == '14' ) ? 'selected="true"' : '';
                                $selected16	= ( $this->config->get('pagination') == '16' ) ? 'selected="true"' : '';
                                $selected18	= ( $this->config->get('pagination') == '18' ) ? 'selected="true"' : '';
                                $selected20	= ( $this->config->get('pagination') == '20' ) ? 'selected="true"' : '';
                                ?>
                                <option <?php echo $selected2; ?> value="2">2</option>
                                <option <?php echo $selected4; ?> value="4">4</option>
                                <option <?php echo $selected6; ?> value="6">6</option>
                                <option <?php echo $selected8; ?> value="8">8</option>
                                <option <?php echo $selected10; ?> value="10">10</option>
                                <option <?php echo $selected12; ?> value="12">12</option>
                                <option <?php echo $selected14; ?> value="14">14</option>
                                <option <?php echo $selected16; ?> value="16">16</option>
                                <option <?php echo $selected18; ?> value="18">18</option>
                                <option <?php echo $selected20; ?> value="20">20</option>

                            </select>

I hope it will help :)

Moderators: Piotr Garasiński
Powered by Kunena Forum

Join 180,000 websites creating Amazing communities

JomSocial is the most complete, easy-to-use addon that turns Joomla CMS into a
full -fledged, social networking site

TRY NOW BUY NOW