Plugin Contributor
Savvas
(@savvasha)
To hide all the pictures from birthday widget please add the following CSS code to SportsPress -> Settings -> General -> Custom CSS
.sp-template-birthdays img.attachment-sportspress-fit-medium.size-sportspress-fit-medium.wp-post-image {
display: none;
}
To display only thin week’s birthdays you should merge the following patch:
https://github.com/ThemeBoy/SportsPress/commit/ce4389bee931aef040223ead9bc9f938879c08e8
Thanks,
Savvas
Plugin Contributor
Savvas
(@savvasha)
Please use also the following patch that refines the Week filtering logic:
https://github.com/ThemeBoy/SportsPress/commit/abfa60d60b634ee97c472fa4d780fae678236767
Thanks,
Savvas
Ok, seems to work
they are ordered on day of the month now?
and how do i show the names in an unordered list in this format?
- dd/mm: Name (age)
- dd/mm: Name (age)
- dd/mm: Name (age)
Plugin Contributor
Savvas
(@savvasha)
Hi @bartvanbelle,
The truth is that WordPress way to order thinks base on date, is using the whole date (dd/mm/yy) so we cant achieve what you want (ordering based only on dd/mm). We will try to achieve that using some manually ordering..
To create the list you want, will need some custom code (Page template for example), that is out of our support scope. You can hire a developer for that or try it yourself using our birthdays.php template as a reference.
Thanks,
Savvas