They're blossoming wonderfully. As always, each update brings a new batch.
If you've had the initial conversation, you need to wait till Saturday and go meet him at the park. What does the "Objectives" tab say?
Had a look, and it seems like there are a few greater-than's in the conditions that should be lesser-than, so the event currently requires high femininity instead of low.
This fixed it on my end: In line 21986 of the HTML, look for these conditions:
Code:
if $feminine >= 50 || $feminine >= 25
And change it to the following, save the file, and reload the game:
Code:
if $feminine <= 50 || $feminine <= 25
Note that I haven't looked deeper into the mechanics here, just a quick and dirty fix.