LZL0
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Velocity Minify] Warning function: method not foundThank you!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce 2.5.5 the Flat Rate shipping calculator is brokenMark the product as “Virtual” and enable the shipping for all product with this:
add_filter( ‘woocommerce_cart_needs_shipping’, ‘__return_true’ );EDIT: Yeah, just as I expected, the shipping rate is being miscalculated for digital products with forced shipping: ??
I am just happy that we have found the problem.Forum: Plugins
In reply to: [WordPress REST API (Version 2)] WordPress 4.2.7v4.6, v4.7 or some future but unknown version?
Forum: Plugins
In reply to: [WordPress REST API (Version 2)] WordPress 4.2.7btw I heard a while ago that you are planning to include version 2 in the WordPress 4.5 release. Is that still the plan as of today?
Forum: Plugins
In reply to: [WordPress REST API (Version 2)] WordPress 4.2.7oh, anyways thank you for your answer
Forum: Plugins
In reply to: [WP-DBManager] HHVM supportIs it redis then, what makes the plugin on my site behave differently?
https://www.ads-software.com/plugins/wp-redis/Forum: Reviews
In reply to: [Shortcake (Shortcode UI)] A must have featureI approve this message
Forum: Plugins
In reply to: [Redis Object Cache] Should I define WP_REDIS_DATABASE?Thank you for your detailed answer!
Forum: Plugins
In reply to: [Post Pay Counter] HHVM breaks the shortcodessolved. The fix will come out with the next plugin update.
Forum: Plugins
In reply to: [Post Pay Counter] HHVM breaks the shortcodessure
Forum: Plugins
In reply to: [Post Pay Counter] HHVM breaks the shortcodes[Sun Jul 5 10:55:27 2015] [hphp] [1438:7f263ebff700:1256:000002] [] \nWarning: Invalid operand type was used: expecting an array in /htdocs/wp-content/plugins/post-pay-counter/classes/ppc_generate_stats_class.php on line 304 [Sun Jul 5 10:55:27 2015] [hphp] [1438:7f263ebff700:1256:000003] [] \nWarning: Invalid argument supplied for foreach() in /htdocs/wp-content/plugins/post-pay-counter/classes/ppc_generate_stats_class.php on line 327 [Sun Jul 5 10:55:27 2015] [hphp] [1438:7f263ebff700:1256:000004] [] \nWarning: Invalid argument supplied for foreach() in /htdocs/wp-content/plugins/post-pay-counter/classes/ppc_generate_stats_class.php on line 369 [Sun Jul 5 10:55:27 2015] [hphp] [1438:7f263ebff700:1256:000005] [] \nWarning: Invalid argument supplied for foreach() in /htdocs/wp-content/plugins/post-pay-counter-pro/classes/ppcp_shortcode_class.php on line 183
still the very same problem remains (not just the warnings, but the table which displays the titles, views, etc. is not showing)
Forum: Plugins
In reply to: [Post Pay Counter] HHVM breaks the shortcodesI believe the problem lies in somewhere in this: PPC_generate_stats::group_stats_by_author function
Forum: Fixing WordPress
In reply to: Self-hosted wp-admin keeps redirecting to old WordPress.com siteadd these 2 lines to wp-config.php
update_option('siteurl', 'https://newdomain.com' ); update_option('home', 'https://newdomain.com' );
to be sure
and I guess you have to transfer your domain to your new hosting provider or just change the nameservers of your domain
more info at https://codex.www.ads-software.com/Moving_WordPressForum: Plugins
In reply to: [SlimStat Analytics] WP Slimstat and PHP 7Thank you for your response!
Forum: Plugins
In reply to: [Thumbnails for Backend] I like your plugin very much, but it has one bugand add
if ( ! defined( 'ABSPATH' ) ) exit;
to the beginning of the main file ;D