• Hi there! Is there any possibility to show the date and time on the left in bold (date) and one line below not bold (time)?

    Also, the chosen title of the event isn’t showing up on the page. I need to use an extra Headline to get a title shown. How do I get the title shown?

    Best regards

    Silvia

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi Silvia,

    Sorry for the very slow reply.

    The date and time can be in bold with this CSS. You can add it to Appearance > Customizer > Custom CSS. There is no discernment between date and time. Do you need or want that? It could be added.

    td.ssec-title {
    font-weight: 600;
    }

    • This reply was modified 6 months ago by Marcel Pol.
    Plugin Author Marcel Pol

    (@mpol)

    With this PHP code you can add a column for post title. It will be the last column. You can add PHP code to the functions.php of your theme, preferably a child theme, or to your own plugin.

    function my_ssec_add_td_s_to_table( $td_s, $post ) {
    $post_title = $post->post_title;
    return '<td>' . $post_title . '</td>';
    }
    add_filter( 'ssec_add_td_s_to_table', 'my_ssec_add_td_s_to_table', 1, 10 );

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Date & Time Settings, Showing Title’ is closed to new replies.