zanozik
Forum Replies Created
-
Forum: Plugins
In reply to: [MakeCommerce for WooCommerce] Returning bool from usort is deprecatedJust want to let you know, this issue is still unresolved in v3.0.4 released on 2021-06-17.
Forum: Plugins
In reply to: [MakeCommerce for WooCommerce] Returning bool from usort is deprecatedAlso, maybe use
strcasecmp
for both cases, basic comparison might not perform as expected with uppercase/non-ascii chars:
return strcasecmp( $a['city'], $b['city'] );
Forum: Plugins
In reply to: [MakeCommerce for WooCommerce] Final private methodAlso, 6
final private function
inshipping/method/method.php
.Please, remove
final
keyword…Forum: Plugins
In reply to: [MakeCommerce for WooCommerce] Converts path to lowercase in Loader.phpHello there,
Nice response timing ??
Do you code repository publically accessible, like github/gitlab/bitbucket etc?There are 2 lines that require this fix: 131 and 153.
Cheers
Forum: Plugins
In reply to: [qTranslate X] Warning: Parameter 2 to qtranxf_postsFilter()The problem is that you have, apparently, moved to a php v7.1+. Since the plugin was last updated 2 years ago, you should modify source files according to https://www.ads-software.com/support/topic/problem-with-php-7-1-2/
Forum: Plugins
In reply to: [Easy Invitation Codes] Case bugYes, there is a bug in back-end.php:172
$code = sanitize_key( $code );
should be at least:
$code = strtoupper( sanitize_key( $code ) );
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Test Email Won't SendSame here ?? 2.4.16 – test send – no go, preview email – no go.
Forum: Plugins
In reply to: [Easy Invitation Codes] Sending invitation codes?Hmm… Not sure I understand what you mean, but isn’t this your code?
back-end.php:124,140
function baweic_fields_cb2($val){
…
$temp = strtoupper($prefix . wp_generate_password($length, false));Forum: Plugins
In reply to: [Easy Invitation Codes] Sending invitation codes?$code = substr( md5( time() . uniqid() ), 0, 5 );
Doesn’t the plugin uses wp_generate_password?
Thanks to this simple function, I was able to create a template tag [INVITATION-CODE] in my emailing plugin using just 4 lines of code. Thanks again, author ??Ok, got it working.
I noticed that though the plugin showed a message “Thumbs was deleted” the actual file was left hanging on the server (permission 777), but I decided to reset the whole dir recursively to 777 anyway, just to make sure. After that, no failures… But still old thumbs are there…1.3 and still this error
function (){if(a){var t=a.length;(function r(t){v.each(t,function(t,n){var i=v.type(n);i===”function”?(!e.unique||!c.has(n))&&a.push(n):n&&n.length&&i!==”string”&&r(n)})})(arguments),i?o=a.length:n&&(s=t,l(n))}return this}
Though, I feel that the regeneration fails when old thumbs are not there anymore. I can’t debug that since the error doesn’t give you any info (wp_debug in on).
All done! 0 image(s) were successfully resized in 153 seconds and there were 297 failure(s). To try regenerating the failed images again, click here. To go back to the previous page, click here.
Retry doesn’t help either.
I will try to switch to another plugin an will report back.
Forum: Plugins
In reply to: [Youtube shortcode] Headers already sent errorThank you for the rapid fix ?? I can confirm it’s working. No biggie anyway – only debugging installation were affected.
Forum: Plugins
In reply to: [Youtube shortcode] Headers already sent errorHi,
I think the problem lies in the recent update when the author decided to take out the resetting of the initial is_mobile switch.
Also, you can see that if debugging is turned on in your wordpress installation, meaning that the notice of an error is sent before the actual header of your page. Anyway, hopefully this can be resolved in the next release. Until then you can use this small hack to bring the resetting back on:
insert new line @ youtube-shortcode.php:306
$this->is_mobile = false;