• Hello,

    I am using Elementor and the free plugin “Premium Addons for Elementor”.
    This adds the new elements to Elementor.
    I am using the element “Premium Blog”, which displays my posts in a grid.
    I select to show the excerpt.

    And in the live page, my posts excerpt show “Watch this video on YouTube”, at the beginning of each post excerpt. See image:
    https://ibb.co/gT6fnSZ

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter stelnavi

    (@antotonydc)

    This is the output in html
    https://ibb.co/NKxdz55

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    That looks like an unfortunate conflict in how the excerpt is returned somehow, you should be able to fix this with a couple of lines of code using the wp_trim_excerpt filter (assuming your site/ plugins is/ are using the WordPress core excerpt logic), doing a str_replace( 'Watch this video on YouTube', '', $excerpt ); in it likely.

    hope this helps,
    frank

    Thread Starter stelnavi

    (@antotonydc)

    Thank you for the quick response, very much appreciated!

    Unfortunately I am not a programmer and I don’t know how to write code.

    Since it sounds simple, any chance you could write these lines of code for me? (and for any others in this situation…) I would be able to paste it into my functions.php

    Or maybe just update the plugin?

    It would be great if your plugin would be compatible with Elementor (applying this fix), since Elementor is so popular. Also, the “Premium Addons for Elementor” plugin, despite its name, it’s also a free plugin.
    And the element I used to generate the post grid is the element “Premium Blog”, if you feel like trying it out.

    Thread Starter stelnavi

    (@antotonydc)

    Using Astra, as a theme.

    Plugin Author Optimizing Matters

    (@optimizingmatters)

    Try this (untested) code snippet, maybe it works ??

    
    add_filter( 'wp_trim_excerpt', function( $excerpt ) {
        return str_replace( 'Watch this video on YouTube', '', $excerpt );
    } );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to remove text from excerpt: Watch this video on YouTube’ is closed to new replies.