• Resolved kintango

    (@kintango)


    Hi. I want to add views count number on the box displaying my adverts, side of price or name (Featured and Free Ads). I had tried with the differents plugins (WP-Postviews, Post Views Count, Page View Count…) but no one fit. Plz Help me

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    to display the page views stats you can use our Google Analytics integration, other third-party plugins should work as well if they can integrate with custom post types

    Thread Starter kintango

    (@kintango)

    Have you examples of plugins which work with ?

    Plugin Author Greg Winiarski

    (@gwin)

    I am afraid i do not, something like https://www.ads-software.com/plugins/page-views-count/ should work unless it is using lower priority on the_content filter than WPAdverts then it would need to be initiated again after WPAdverts.

    Adding the code below in your theme functions.php file should do it

    
    add_action( "init", function() {
        remove_filter('the_content', 'adverts_the_content', 9999 );
        add_filter('the_content', 'adverts_the_content', 9 );
    }, 25 );
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add Views Count in Advert Display’ is closed to new replies.