-
Author
-
October 8, 2013 at 01:49 #3966TenshiParticipant
Greetings~
How does one increase the text limit for the group excerpt on the group listing? I tried searching online but they either break the design or don’t add the […] at the end. Thank you!
October 8, 2013 at 17:32 #4007SQadminKeymasterHi,
This code added to sweetdate-child/functions.php modifies the length of the excerpt:COPY CODE// group custom excerpt add_filter( 'bp_excerpt_length', 'kleo_my_custom_group_excerpt'); function kleo_my_custom_group_excerpt($length) { return 225; }
Modify the 225 length to whatever you want
Also you need to add this css to Sweetdate – Styling options – Quick css to disable the limited height:
COPY CODE#groups-list .search-body {height:auto;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 8, 2013 at 18:25 #6274hughmParticipantI am trying to add length to the group excerpts on the Group Directory page. I tried the above code in my sweetdate-child/functions.php file and it did not work. Is this code still valid?
I am also modifying the group-loop.php file in my sweetdate-child/groups folder. Can I set the excerpt length here (around line 37)?
<div class=”item-desc”><?php bp_group_description_excerpt(); ?></div>
November 9, 2013 at 21:47 #6348SQadminKeymasterAdding that code should do it. Make sure you have the child theme activated
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 13, 2013 at 04:36 #6552hughmParticipantI’ve tried the above code and it isn’t working for me. In Firebug it looks like the function adds space to the div class=”item-desc” but I can’t make the excerpt appear with more than 2 lines. I can reduce it down to nothing with your code but cannot add to the excerpt.
Here is the site if you want to take a look: http://www.uberon.net/groupsIs it possible to edit the groups-loop.php to adjust the excerpt length?
<div class=”item-desc”><?php bp_group_description_excerpt(); ?></div>
November 14, 2013 at 12:27 #6607SQadminKeymasterHi, I have added above a css rule that disables the height limit: https://archived.seventhqueen.com/forums/topic/increase-group-excerpt-limit#reply-4007
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.