ChriDi
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Error when updating from 3.18.5Sorry for the late reply:
This code we are using seems to have caused the issueadd_action('woocommerce_cart_calculate_fees', 'hide_shipping_if_only_virtual_products_in_cart', 20, 1);
add_filter('woocommerce_package_rates', 'hide_shipping_if_only_virtual_products_in_cart', 20, 2);
function hide_shipping_if_only_virtual_products_in_cart($rates) {
// Check if all items in the cart are virtual
$virtual_products_only = true;
foreach (WC()->cart->get_cart() as $cart_item) {
if (!$cart_item['data']->is_virtual()) {
$virtual_products_only = false;
break;
}
}
// If only virtual products, remove shipping rates
if ($virtual_products_only) {
return [];
}
return $rates;
}Forum: Plugins
In reply to: [Footnotes & Content] Counting is offHi,
thanks for the update, it fixed the problem BUT I was not. running Yoast. Either way, it fixed it 😉
Forum: Plugins
In reply to: [Footnotes & Content] Counting is offHi and thanks for the reply.
I used ACF Pro to created a CPT “Bookchapters” and then used Gutenberg on the individual posts of that CPT, just like you would with normal posts.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] json_decode fatal errorHad to do the same “fix” – any insights from the Developer team?
I tried before and tried again now. Now it works with all plugins active. Weird. So wasn’t related after all I guess, thanks for the quick reply!
I was literally just looking for the same answer. Let’s hope there is a way we both haven’t found yet
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] PHP out of memory errorI think i am getting a very similar error in my debug.log
PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 5242912 bytes) in /home/www/livesite/wp-content/plugins/updraftplus/includes/S3compat.php on line 594Forum: Plugins
In reply to: [WooCommerce] Dasboard and Stats are blankHaving the same problem, 6G Firewall on my Nginx server environment is blocking access. Woudl be nice to get some insights?
No change so far, just tried with the current version of your plugin. Any way to solve this?
No proxy errors and still not working :/
For example on https://www.sling-trainer-tipps.de
Forum: Plugins
In reply to: [Download Monitor] GDPR complianceI think not actually logging the IP would be enough but necessary – any updated from the Devs to be expected soon? 😉
Forum: Plugins
In reply to: [Pixel Caffeine] Error on Static HomepageThe plugin was updated the whole time (1.2.1), error is still there.
Forum: Plugins
In reply to: [Pixel Caffeine] Error on Static HomepageHI @antoscarface,
the problem still exists on my site, please see attached error from the source code when I’m trying to edit the Homepage, which is Built using Divi Builder Pagebuilder. But the builder is also used on other pages with no issues when I’m trying to edit.
Pixel Caffeine is the current version.
<span data-content_category=”<br />
<b>Fatal error</b>: Uncaught Error: Class ‘AEPC_Pixel_Scripts’ not found in /www/htdocs/w1/site/wp-content/plugins/pixel-caffeine/includes/supports/class-aepc-woocommerce-addon-support.php:292
Stack trace:
#0 /www/htdocs/w1/site/wp-includes/class-wp-hook.php(298): AEPC_Woocommerce_Addon_Support->add_content_category_meta(”)
#1 /www/htdocs/w1/site/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array)
#2 /www/htdocs/w1/site/wp-includes/plugin.php(453): WP_Hook->do_action(Array)
#3 /www/htdocs/w1/site/wp-content/plugins/woocommerce/templates/content-product.php(68): do_action(‘woocommerce_aft…’)
#4 /www/htdocs/w1/site/wp-includes/template.php(686): require(‘/www/htdocs/w01…’)
#5 /www/htdocs/w1/site/wp-content/plugins/woocommerce/includes/wc-core-functions.php(174): load_template(‘/www/htdocs/w01…’, false)
#6 /www/htdocs/w1/site/wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php(110): wc_get_template_part(‘content’, ‘product’)
#7 /www/htdocs/w01449 in <b>/www/htdocs/w1/site/wp-content/plugins/pixel-caffeine/includes/supports/class-aepc-woocommerce-addon-support.php</b> on line <b>292</b><br />Forum: Plugins
In reply to: [Google Forms] Captcha is doubledThanks Mike,
I was going through all the plugins now and found what caused the problem:
https://de.ww.wp.xz.cn/plugins/open-graph-protocol-framework/Deactivated and Captcha is not showing twice any longer 😉
Forum: Plugins
In reply to: [Google Forms] Captcha is doubledDid you find a solution for the issue of the Captcha showing up twice?
Got the same on this page:
https://schulfrei-bewegung.de/mitgliedsantrag/Regards,
Chris