• Resolved vivanco

    (@vivanco)


    Hi there

    I am wondering if it is possible to not display the ellipsis on the post excerpts? I have searched the forums, the interwebs and have tried the snippets below via CSS, but no luck so far. I also used text-overflow, but this didn’t work either. Any ideas, given this is possible? Some sites suggest changing functions.php, but I thought it should be possible via CSS.

    .wp-show-posts-entry-summary {
      overflow: hidden;
    }

    and

    .wp-show-posts-entry-summary {
      overflow: none;
    }

    Thanks for any help!

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    Sorry for not getting back to you sooner!

    Are you still having this issue? If so, is there any way you can link me to the page?

    Thread Starter vivanco

    (@vivanco)

    Hi

    I am late to this as well, but back onto the site I am developing… I went into the plugin php and got rid of the ellipsis there. Not the best practice, I know, but it worked for now.

    Best,

    Plugin Author Tom

    (@edge22)

    You should be able to do this:

    add_filter( 'wpsp_ellipses', 'tu_no_ellipsis' );
    function tu_no_ellipsis() {
        return '';
    }
    Thread Starter vivanco

    (@vivanco)

    Thanks! Seems to work well. ??

    Plugin Author Tom

    (@edge22)

    You’re welcome ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Do not display ellipsis’ is closed to new replies.