Ido Kobelkowsky
Forum Replies Created
-
Forum: Plugins
In reply to: [CalJ] Site crashesI can provide my 2 cents of solution since I also experienced the issue, as it seems they put a validation for user-agent http header which doesnt exists when the used file_get_contents
in the file: calj/CalJPlugin.php function refreshCache line 133, change where you see the file_get_contents – comment the line, and change it, it is also more wordpress compliant// Fixed by idokd ( [email protected] )
$url = 'https://api.calj.net/wp/1/shabbat.json?city='.$city.'&key='.$key;
$response = wp_remote_get( $url );
$response = wp_remote_retrieve_body( $response );
//$response = file_get_contents( 'https://api.calj.net/wp/1/shabbat.json?city='.$city.'&key='.$key, false, $context );that will use the wordpress built-in function to get the remote content. and by the way will use a wordpress user agent ( use any pre-configured proxies etc.), and will solve you the issue of the crash, and /or any 9 seconds delays of redirections etc.
Forum: Plugins
In reply to: [Simple Payment] Payment Option not show on checkout pageHey, the plugin is yet to work with Woocommerce Blocks, you can use the standard checkout shortcode to use it. we hopefully finish the development and adaptation to the Woocommerce blocks next month.
thanks;
that was it: “Please check that “Guernsey” is not in another pricing zone. If the country is in another pricing zone, remove “Guernsey” from it.”already done that, but we wish to determine that they get default currency for them is? GBP, and there is no way to determine that. like other countries.
- This reply was modified 10 months, 2 weeks ago by Ido Kobelkowsky.
Forum: Plugins
In reply to: [Log in with Google] Compatibility with PHP 8.1its an easy fix, hopefully it will get a version update soon,
just change the composer.json package version to:
"pimple/pimple": "3.5.*"
and run composer update
it works fine it seems and removes the unnecessary warnings in PHP 8.1
Forum: Plugins
In reply to: [Log in with Google] Compatibility with PHP 8.1thanks for the great plugin, and I am joining @kudlav with the request to support php 8.1
Forum: Plugins
In reply to: [Extended Post Status] The removal of the Publish button is confusingand finally, i usually do ?? , thanks for the great plugin!
i went into the code; so i figured that i can just run it
wp eval “pubMissedPosts();” –user=admin
but again it will be nice to have a way to work it with wp cli
and again i am still with the issue of having to ‘disable’ the wp_head hook that is applies it globaly on front_page or single pages
Forum: Plugins
In reply to: [Simple Google reCAPTCHA] Convert class to singltonthanks! since you are attended to developers feedback I will add a few more tickets ??
Forum: Plugins
In reply to: [Simple Payment] ?????????
?? ??? ????? ?? ????? ????? ????? ????? ?? ???????? ??? ????? ?? ??????,
???? ???????? ?? ????? ????? ???? ?? ?????? ?? ?? ???? ????? ?? ??? ????? ????? ??? ???? ?? ?????? ???? ??? ??????? ?? ??????? ????? ?????? ????? ?????, ??? ?? ????? ?? ??.
??? ?? ???? ?????, ??? ???? ???? ????? ??? ?? ?? ????? ????? ????? ?? ?? ????
I believe what you have is the same problem I am having;
it is caused due to bug in the plugin that in some login cases; like
login with email instead of username, it may call the wp_authenticate_user hook twice.as I see the problem is to change the link number 300 (I believe), in the simple-google-recaptcha.php file
from:
$this->recaptchaResponse();to this:
if ( !$this->recaptchaResponse ) $this->recaptchaResponse();that way, it wont try to verify twice if the hook is already processed one response.
I am not sure if @minor can confirm this issue, I did it on my local and it helped, I am using multiple authentication methods, so the waterfalls pass from one to another, and therefore in some cases fetching recaptcha response more than once.
Forum: Plugins
In reply to: [Simple Payment] CreditGuard solutionHello, we have it in our plan, but we do not have a clear date for this version.
let us know if we can be more in service.
Forum: Plugins
In reply to: [Mailgun for WordPress] Non-numeric value encountered in mailgun.php line 431I do hope they patch it since it is already coming in various past versions where I manually fix it (OCD) @mailgun
Forum: Plugins
In reply to: [Mailgun for WordPress] Non-numeric value encountered in mailgun.php line 431Fix/Patch: The line 431 should be updated from:
$args[ ‘widget_id’ ] = md5(rand(10000, 99999) + $atts[ ‘id’ ]);
It is trying to add integer with a string ($atts[‘id’] is a string, the email address of the list).
therefor just change + => . (concatenate strings)
$args[ ‘widget_id’ ] = md5(rand(10000, 99999) . $atts[ ‘id’ ]);
and anyhow it is md5 – so it creates a unique id – so no logic is changed.
Forum: Plugins
In reply to: [Simple Payment] ??? ????? ???????? ????, ???? ????? ?????? ??? ?? Payment Gateway, ??? ????? ????? ??????? ?? ???? ?? ?????? ???? ????? ???????? ???????? ??? ?????? ??????? ??????? ????.
??? ?? ???? ????, ??? ????? ????? ????? ??? WebView ?? ????? ????? ???? ???? ??? ?? ?url ?????? ???? ????? ?? ?????????. ??????? ???? ?? ?????? ???? (??? ????? ? Payment Gateway – ??????? ????).
?? ?????? ?????? ?? Custom Post Types ???????? ???????? ? WP-Rest API – ??? ????? ?????? ????? ????? ??? ????? ?? ?????? ????? ?? ????? ?????.
(?? ?????? ???? ???? ????).
1. ???? ?????? Custom Post Type ????? “Payment Request”
2. ????? ?????? ???? php ????? ? Custom Post Type ???, ????? ?? ???? ?? ? shortcode ??????.
3. ????? ?? ?????? ????? ??.
4. ?????? ???? ????? ????? ??? ???? ?????.
5. ???? ?????? ????????? ??? ?? ??? ????? ?? Zapier. ?? ????? ??? ???? ??? ????? ? hooks – actions ?????? ???? ? Simple Payment.????? ????? ?? ????? ??????? ???? ???? ?? ??? ???? Custom Engine – ?? ??? ???? ?????? ???? ???????? ??????? ?????? production ?? ???? ??????, ???? ????? ???? ?? https://simple-payment.yalla-ya.com/
????? ????? ?????? ???? ?? ????, ????? ?????? ????? ?????. ?? ???? ???? ??? ????? ????? [email protected]