Stefan M.
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Only Optout, no optin default.I did manually edit the
mailchimp-qoocommerce option in the database and included: :”mailchimp_checkbox_defaults”;s:7:”uncheck”;
Why is there no settings page, where these option can be modified?
Forum: Plugins
In reply to: [WooCommerce] Taxes on Shipping not workingI will fix the 720 sec issue with the hoster. I donno why this is running that long…
Forum: Plugins
In reply to: [Stock Locations for WooCommerce] Stock again brokenI can choose between variation products working (new version) or single products working (old version), thats not the solution…
Cron job doesnt fix anything. Single products still show no stock in total, but have stock in one location.
Forum: Plugins
In reply to: [FOX - Currency Switcher Professional for WooCommerce] BuggyDirty hack, but working.
views/fixed/product_price_data.php
add on line 93:
global $DoWooCSOnce; if (!array_key_exists($post_id,$DoWooCSOnce) OR $DoWooCSOnce[$post_id] != '1') {
Bottom of the file:
$DoWooCSOnce[$post_id] = 1; }
Then the code is only executted once per variable product ID, and saving is working again too.
it seams the action is fired multiple times per variable product. Dont know why, but one site has it fired 3 times, this side has it fired around 10 times…
Issue is:
Product A Costs 100€ or 1000c (working).
Tiered price for 10 you pay 95€ -> Tiered price is only possible for 1 currency.
So 10 x Product A costs then 95€ or 95c instead of 950c. Also incompatible unfortenatly.
You would need to add an additional tiered price table to enter the values for the added Currencies too.So long, doenst work eighter.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] E-Mail Custom Processing Order FailsThe mail gets sometimes correct out after an order
And sometimes not (no logo, diffrent font)
The images are from Mail log, but we send them also cc to us that we can see them. Same issue there.
Between the 2 mails have passed some days, but nothing else did change. No updates, nothing.I can provide login details if you wand yourself to have a look, but not here. If you want to look into, send me a mail to stefan-wuk-ch.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] E-Mail Custom Processing Order FailsIm 2 weeks in holiday starting tomorrow.
I did alreaady try to deactivate all other plugins. Didnt work.
I dont change any templates via child theme.All other mails working, except the one. I will setup a clone and send you access, where you can disable all plugins and also switch the theme to test and see the issue.
But as Im away now, I will come back in around 3 weeks.
Forum: Plugins
In reply to: [Kadence WooCommerce Email Designer] E-Mail Custom Processing Order Failsno cache Plugin installed. So no cache to clear.
Additionally, why should servicer side cache make mails which are generally send once cache?
All mails (from kadence designer) except one are working.
When Using WP Cli, the error gets also reported:
php -v
PHP 7.4.8 (cli) (built: Jul 10 2020 16:20:04) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.8, Copyright (c), by Zend Technologies
wp –info
OS: Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.51-3 (2017-12-13) x86_64 Shell: /bin/bash PHP binary: /opt/plesk/php/7.4/bin/php PHP version: 7.4.8 php.ini used: /opt/plesk/php/7.4/etc/php.ini WP-CLI root dir: phar://wp-cli.phar/vendor/wp-cli/wp-cli WP-CLI vendor dir: phar://wp-cli.phar/vendor WP_CLI phar path: /var/www/vhosts/swiss-qube.ch/httpdocs/swiss-qube.ch/www WP-CLI packages dir: WP-CLI global config: WP-CLI project config: WP-CLI version: 2.4.0
sudo -u swiss-qube wp plugin update –all
PHP Parse error: syntax error, unexpected ':', expecting '{' in /var/www/vhosts/swiss-qube.ch/httpdocs/swiss-qube.ch/www/wp-content/plugins/woocommerce/woocommerce.php on line 56 Parse error: syntax error, unexpected ':', expecting '{' in /var/www/vhosts/swiss-qube.ch/httpdocs/swiss-qube.ch/www/wp-content/plugins/woocommerce/woocommerce.php on line 56 Error: Es gab einen kritischen Fehler auf Ihrer Website.Erfahren Sie mehr über die Fehlerbehebung in WordPress. Es gab einen kritischen Fehler auf Ihrer Website.
Website runs fine, but breaks wp-cli, which also using 7.4.8 as you can see. What the hell for a messy new programming way. I know its “new” but hell is it not update friendly.
Forum: Fixing WordPress
In reply to: PHP Modulesthanks all, I try it and will test it.
Forum: Plugins
In reply to: [Wordpress Sticky Notes] Fixes for 2018…
- This reply was modified 6 years, 8 months ago by Stefan M..
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Please fixSettings -> Domains
When I add a new domain and an ID, press save, nothing happens. It is not stored into the database.
With the fix, it does save again.I do have this issue on all installations.
when its fixed in tghe next release, then its fine. thx
small change in the code and then its working for me:
ninjafirewall.php:
if (! headers_sent() ) { if (version_compare(PHP_VERSION, '5.4', '<') ) { if (! session_id() ) { ini_set('session.cookie_domain', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); session_start(); $_SESSION['nfw_st'] = 1; } } else { if (session_status() !== PHP_SESSION_ACTIVE) { ini_set('session.cookie_domain', substr($_SERVER['SERVER_NAME'],strpos($_SERVER['SERVER_NAME'],"."),100)); session_start(); $_SESSION['nfw_st'] = 2; } } }
Please see the ini_set line which change the Cookie Domain to the root domain without www in the beginnning.
Its what I suspected, If you use www. to login in MU site, then this is the issue that all subpages are not working. Set the correct domain and everything is fine.Could you make that fix?
Caching in the backend? no, nothing.
PHP session cannot be messed up, otherwise wordpress backend would not work correctly?!? and your lugin says correctly recorgnized as admin.
Do you want to have access to the site?
Can grant you access including ftp for debuggin if you want.
write me a mail to stefan[a]wuk.chBut yes, it seams its the same issue as the other people have. I still think the issue is cased by wrong definition of the Cookiedomain “nfw_goodguy” in the plugin. I will check where this is set.