Gennady Kovshenin
Forum Replies Created
-
Forum: Plugins
In reply to: [Pageviews] meta key for Jannah themeViewcounts for our plugin are not stored in your database, they’re stored in the cloud for performance reasons. If you’d like to get you data please mail [email protected] with your API key and a data request.
Forum: Plugins
In reply to: [Pageviews] order by page viewsPlease take a look at our Widget that outputs posts ordered by viewcount.
https://github.com/pressjitsu/pageviews-widget/blob/master/pageviews-widget.php
Forum: Plugins
In reply to: [Pageviews] Pageviews.io: 502 Bad GatewayБывает иногда ?? Просим прощения за сбой.
Forum: Plugins
In reply to: [Pageviews] Disable showing for selected pagesGlad you enjoy the plugin.
You can wrap your do_action call in an if statement and check for the type of page you’re on to decide whether you want to output the counter or not.
Please refer to https://github.com/pressjitsu/pageviews#customization for further information.
Forum: Plugins
In reply to: [Pageviews] Consider expandingNo need for panic ?? The project is far from dead. Your suggestion goes against the philosophy of being just a lightweight counter. There are plenty of heavylifting plugins out there.
https://pressjitsu.com/blog/pageviews-wordpress-plugin/
Thank you for your input.
Forum: Plugins
In reply to: [Pageviews] Вывод счётчиков для роли!Это можно сделать обернув функцию вывода (do_action) в функцию проверки роли (current_user_can).
Удачи!
Forum: Plugins
In reply to: [Pageviews] How to transfer some rounding changes to the minified javascriptAngelos you should be using the config.output filter to deploy your rounding function (roundme) https://github.com/pressjitsu/pageviews/blob/master/pageviews.js#L43
You would do this by doing:
add_action( 'pageviews_before_js', function() { _pv_config.output_filter = roundme; } );
- This reply was modified 5 years, 8 months ago by Gennady Kovshenin.
Forum: Plugins
In reply to: [Pageviews] How to transfer some rounding changes to the minified javascriptThis diff does not exist. It may have expired.
Can you please let us know what the change was? You should ideally not be changing the JS at all.
Forum: Plugins
In reply to: [MemcacheD Is Your Friend] PHP ERRORSeems like you don’t have memcached support in your PHP binary.
Check your php.ini file and see if memcached.so is included.Install php-memcached package, perhaps.
If you have Redis enabled instead try out https://github.com/pressjitsu/pj-object-cache-red which is based on the same codebase as this plugin.
Forum: Reviews
In reply to: [W3 Total Cache] Best for caching and other components.If you want zero-configuration plugins and have a Redis backend installled check out:
https://github.com/pressjitsu/pj-page-cache-red/
https://github.com/pressjitsu/pj-object-cache-red/Forum: Fixing WordPress
In reply to: Caching ProblemsThis one https://github.com/pressjitsu/pj-page-cache-red/ will always serve cached copies even after expiry time, fetching the copy in the background. Many plugins do this.
If you have sufficient memory you can preheat the caches with a crawler, this is very simple.
Forum: Plugins
In reply to: [Pageviews] pageview sync is taking forever!Hey, can you please try again, if it doesn’t work please contact [email protected] please
Forum: Plugins
In reply to: [Pageviews] Problem with Pageviews.ioHey there, can you please contact [email protected] for pageviews.io related issues? Thank you.
Forum: Plugins
In reply to: [Pageviews] import data viewsHey Betsy,
We can import your views if you send [email protected] a file named with your private Pageviews API key (for example abc123.txt) containing pageviews in the following format:
POSTID:NUMBER_OF_VIEWS
POSTID:NUMBER_OF_VIEWS
etc.You can exclude tracking by using WordPress conditionals before calling
do_action( 'pageviews' )
in your theme.Hope this helps.
Forum: Plugins
In reply to: [Pageviews] Stop working…Our service is GDPR compatible:
1. We only store numbers – a Post ID and a value.
2. We do not log or store visitor data like IPs, User Agents, etc.
3. Your secret and public API keys (random) along with your site domain.It’s just a counter. Nothing more.
Thanks for using Pageviews.
- This reply was modified 6 years, 4 months ago by Gennady Kovshenin.