This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Skipping characters for summarytext

#6925
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

Only by using a custom code, but luckily you don’t have to edit any of the plugin files, so this should be update-proof as well.

Try putting this code to your currently active theme folder, into the functions.php file:

[php]
add_filter( ‘asp_result_content_after_prostproc’, ‘asp_cut_from_content’, 1, 1 );

function asp_cut_from_content( $content ) {
// Change this to the number of characters you want to cut
$charaters_to_cut = 50;

return substr($content, $charaters_to_cut);

}
[/php]

Change the $characters_to_cut variable to the number of characters you want to remove from the beginning.