Do you mean that instead of 1, 2, 3 … the plugin counts 25, 50, 75?
You can’t do this directly, but you could try to use this function by adding it into your theme’s functions.php
function filter_tptn_post_count_only( $cntaccess ) {
$cntaccess = $cntaccess * 5;
return $cntaccess;
}
apply_filters( 'tptn_post_count_only', 'filter_tptn_post_count_only' );
hi thanks but this goes up in two’s any chance of increasing?
You should change the line to whatever multiple you wish:
$cntaccess = $cntaccess * 25;
This should be 25 times.
Hi, sorry tried that and it is still going up in two’s is there a way i can send you private email with link to show you my site
Yes. You can write to me at http://ajaydsouza.com/contact/
However, it might be difficult to see exactly what’s going on since all the code here is in the backend.