Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Nick the Geek

    (@nick_thegeek)

    is this something you would want removed in all instances of the content limit through the site?

    Thread Starter IkeGordon

    (@ikegordon)

    Yes, but I don’t want to lose the ability to customize the content differently. For instance, my client wants Learn More on one page and Read More on another.

    Plugin Author Nick the Geek

    (@nick_thegeek)

    try this

    add_filter( 'g_ent', 'my_g_ent_filter' );
    function my_g_ent_filter( $text ) {
        return str_replace( '…', '', $text );
    }

    Thread Starter IkeGordon

    (@ikegordon)

    Well, that did it! Thanks!!!

    I am very interested in this thread, but I am a bit of a beginner and don’t understand exactly what you did with this code, and then how exactly you customize the “Read More” text after the code is implemented.

    Any illumination on this matter would be greatly appreciated!

    – Jesse

    Never mind– figured a way around this.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove three dots after content limit’ is closed to new replies.