• Resolved nellie73

    (@nellie73)


    Thanks for a wonderful plugin.
    I would like to display the title text in the first column (not the published date), like the plugin used to be (before it was modified after the request of jensuwe12 (around 6 months ago). Is there a way of doing this with the shortcode?

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

    (@mpol)

    Thank you ??

    And I should have seen this coming ??
    There is an update which had 2 filters added. With the next PHP code snippet you can restore the previous behaviour. You can either add this to your own plugin, or to functions.php in your theme, preferably a child theme.
    Can you manage?

    function my_special_ssec_td_title( $title, $post ) {
    $title = get_the_title();
    return $title;
    }
    add_filter( 'ssec_td_title', 'my_special_ssec_td_title', 10, 2 );

Viewing 1 replies (of 1 total)
  • The topic ‘Show the title text in 1st column’ is closed to new replies.