Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author WebberZone

    (@webberzone)

    Do you mean that instead of 1, 2, 3 … the plugin counts 25, 50, 75?

    Thread Starter martinavive

    (@martinavive)

    yes please

    Plugin Author WebberZone

    (@webberzone)

    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' );
    Thread Starter martinavive

    (@martinavive)

    hi thanks but this goes up in two’s any chance of increasing?

    Plugin Author WebberZone

    (@webberzone)

    You should change the line to whatever multiple you wish:

    $cntaccess = $cntaccess * 25;

    This should be 25 times.

    Thread Starter martinavive

    (@martinavive)

    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

    Plugin Author WebberZone

    (@webberzone)

    Yes. You can write to me at https://ajaydsouza.com/contact/

    However, it might be difficult to see exactly what’s going on since all the code here is in the backend.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Increment views by 25’ is closed to new replies.