WPIntell

Source evidence

Overview Short codes

Super Simple Event Calendar · support · 2025-03-29T15:23:00+00:00

mixedsentiment
mediumseverity
0.72relevance
3replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

7 / 36 rows with source links

19.4% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

29 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
sosonice resolved
Hi Marcel. It’s a pleasure to use your plug-in. Is there any overview about the available shortcodes? Another question: Is there a short code to show not only the date of an event but the time I entered via Quick edit as well? We use the plug in for a primary school and our parents and children are missing the time for an event on a specific day. Thank you very much. This topic was modified 1 year, 2 months ago by sosonice . Hi, There are PHP filters available for this. You can add the following code to functions.php of your theme, preferably a child theme. Or add it to your own custom plugin. function my_ssec_get_the_date( $the_date, $format, $post ) { $time = get_the_date( 'g:i A', $post ); $the_date = $the_date . ' ' . $time; return $the_date; } add_filter( 'ssec_get_the_date', 'my_ssec_get_the_date', 10, 3 ); For shortcodes, there are 2 available. super_simple_event_calendar parameters: ‘posts_per_page’ => -1, ‘status’ => ‘future’, ‘order’ => ‘ASC’, ‘season’ => 0, super_simple_event_calendar_widget parameters: ‘title’ => ‘Calendar’, ‘num_entries’ => 3, ‘season’ => 0, ‘postid’ => 0, And thank you, I updated the readme with this. Thank you.

Comments

3 shown
Marcel Pol 2025-03-31T10:23:00+00:00

Hi, There are PHP filters available for this. You can add the following code to functions.php of your theme, preferably a child theme. Or add it to your own custom plugin. function my_ssec_get_the_date( $the_date, $format, $post ) { $time = get_the_date( 'g:i A', $post ); $the_date = $the_date . ' ' . $time; return $the_date; } add_filter( 'ssec_get_the_date', 'my_ssec_get_the_date', 10, 3 );

Marcel Pol 2025-03-31T10:34:00+00:00

For shortcodes, there are 2 available. super_simple_event_calendar parameters: ‘posts_per_page’ => -1, ‘status’ => ‘future’, ‘order’ => ‘ASC’, ‘season’ => 0, super_simple_event_calendar_widget parameters: ‘title’ => ‘Calendar’, ‘num_entries’ => 3, ‘season’ => 0, ‘postid’ => 0, And thank you, I updated the readme with this.

sosonice 2025-04-01T05:37:00+00:00

Thank you.