AFillbrandt
Forum Replies Created
-
Forum: Reviews
In reply to: [Jetpack Social] Is not freeI have to correct myself. You must have a WordPress account / Jetpack account. If you specify one, you can use the plugin for free.
Forum: Reviews
In reply to: [Jetpack Social] Is not freeBut ill you have to tell your plugin.
When I install it, it redirects me to your website. There I have to choose a plan and “Social” costs about 5 EUR per month. If I select “free” at the bottom, everything stops and I have to manually go back to my blog.
Forum: Plugins
In reply to: [PDF Image Generator] Not trusting this softwareI have been using the plugin for a long time. And the domain is included in the source code three times. In the header and once as a link in the plugin directory.
So this comment is not in order.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Slow website after update to 5.2.1Thanks @jeffparker !
5.2.2 works as aspected.
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Slow website after update to 5.2.1Same here!
I have a front page with some calls of yarpp_get_related() (about 20 times). In 5.1.9 it was fast, in 5.2.1 it took about 10 seconds.
I’m back on 5.1.9
- This reply was modified 5 years, 11 months ago by AFillbrandt.
is_user_logged_in() is plugable, this means it fires late in wordpress. Try using
$current_user = wp_get_current_user(); if ( $current_user != 0 ) { $minfo = 'User ' . esc_html( $current_user->user_firstname ); } else { $minfo = 'Unrigistered'; }Forum: Plugins
In reply to: [WP-PostViews] Count in admin column on custom post types shows wrong viewsHa! Thanks for this inspiration.
I found the conflict: the plugin “Affiliate Links Lite” was the problem.
Forum: Plugins
In reply to: [WP-PostViews] Count in admin column on custom post types shows wrong viewsIts not counting. The meta field “views” shows the correct number. Only the column in admin shows exp “106106 views” when the custom post type was viewed 106 times.
Thanks!
There is already a function for this.
<?php echo wp_dlm_get_total_files(); ?>