Viewing 1 replies (of 1 total)
  • Plugin Support mark l chaves

    (@mlchaves)

    Hey @gcskye,

    That’s a great question.

    Unfortunately, we don’t have a hook for our excerpt code. We can add that to our feature request list. Thanks for your feedback!

    In the meantime, you can use our jp_cc_restricted_message filter to add something before or after the restricted message.

    Here’s an example.

    
    add_filter( 'jp_cc_restricted_message', function( $message ) {
    	return '<div><p>Hello, World!</p></div>' . $message;
    } );
    
    

    We wish we had better news.

    Let us know if you need anything else.

    Have a great day 🙂

Viewing 1 replies (of 1 total)

The topic ‘Hook into excerpt’ is closed to new replies.