Conversation
supportIf a date is set for a Rendez-vous it cannot be unset to allow people to update their votes. I found that if I delete the entry _rendez_vous_defdate entry in wp_post_meta table that this is effectively unset. This would just need a button or option on the edit screen to unset and remove this entry.
Hello @gallussteve , It’s been a while, and I’m not sure if you are still looking for an answer. However, I am able to add a radio button on the Set date row and None column. Here are the steps to edit the Rendez Vous plugin and add that new Set date to None radio button: 1. Open /includes/rendez-vous-template.php using your favorite code editor 2. Replace $ending_rows['editable_row'] .= '<td></td>'; with $ending_rows['editable_row'] .= '<td><input type="radio" name="_rendez_vous_edit[def_date]" value="0" '. checked( $date, 'none', false ) . '/></td>'; Please let me know if you have any question. Thanks, @awijasa
Hello @gallussteve , It’s been a while, and I’m not sure if you are still looking for an answer. However, I am able to add a radio button on the Set date row and None column. Here are the steps to edit the Rendez Vous plugin and add that new Set date to None radio button: 1. Open /includes/rendez-vous-template.php using your favorite code editor 2. Replace $ending_rows['editable_row'] .= '<td></td>'; with $ending_rows['editable_row'] .= '<td><input type="radio" name="_rendez_vous_edit[def_date]" value="0" '. checked( $date, 'none', false ) . '/></td>'; Please let me know if you have any question. Thanks, @awijasa