Anton Korotkoff
Forum Replies Created
-
Thank you, but you need to check if this warning comes from WP-CRM plugin first.
WP-CRM does not ask users to do so and even more, it does not create such directory
/wpcrm-storage/cache/
. Please check your site for any malware or anyfalse
WP-CRM plugin.Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] 404 Error on Responsive ImagesHey @ctrlv
WP-Stateless 2.2.2 has been released with the fix to your problem. Please open a new thread if you still have questions.
Thanks.
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] Video Files 404 in Media LibraryClosing due to inactivity.
As I know the plugin is free.
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Create invoice via APIHello Kelvin
If you are developing some service that will do requests to your WordPress site and create invoices using WP-Invoice API then you should use any XMLRPC client. Like this example https://gist.github.com/quietshu/8fd50b1f732b87025762
There are a lot of public libraries for this purpose. Just google forphp (or whatever language you use) xmlrpc client
.If you are going to use WP-Invoice API within the same WordPress site then you can use XMLRPC client that WordPress provides. Like this from the example:
include_once( ABSPATH . WPINC . '/class-IXR.php' ); include_once( ABSPATH . WPINC . '/class-wp-http-ixr-client.php' ); $client = new WP_HTTP_IXR_Client( 'https://example.site.com/xmlrpc.php' );
- This reply was modified 6 years, 6 months ago by Anton Korotkoff.
Forum: Plugins
In reply to: [WP Upstream] LogoutHow is that related to WP Upstream plugin?
Forum: Reviews
In reply to: [Gutenberg] Please! No core!these shills who say ( not core) all work for some theme builder plugin, just ignore them.
sure, all of us
Forum: Reviews
In reply to: [Gutenberg] Please! No core!I was asking about this unqualified review
Before doing this unqualified review I took 4 plugins and 2 of them were broken. I gave an example. What else would I say?
Why are you trying to force developers fix their plugins instead of making GTB optional? Even built-in but optional.
Or can you explain in details why exactly you are sure you are not going to break other plugins by forcing GTB for post types?
- This reply was modified 6 years, 11 months ago by Anton Korotkoff.
Forum: Reviews
In reply to: [Gutenberg] Please! No core!The first plugin I took was WooCommerce. Try editing a Product.
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Paypal return url problemsHello,
I agree. This is kind of thing we didn’t think about when developing it several years ago.
I will fix it ASAP.
Hello,
so you are sure it works when Live and it doesn’t when Sandbox? Are you talking about PayPal or Authorize.net?
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] Multisite disaster waiting to happenHey,
plugin has separate settings for each network site. You can specify different buckets or different folders inside the same bucket. Media -> Stateless Settings.
Thanks.
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] Curl IssuesHey,
it is difficult to say what exactly is wrong looking at the error you posted. Mostly curl issues are connected to server configuration.
Plugin does NOT remove any images from your server. No even such function. It just copies them to GCS and load images from there. When you deactivate the plugin you should see images loading from your server. If you need to remove plugin then just deactivate it and delete it’s folder. But this will not get back images in case they were removed physically somehow.
Thank you.
Forum: Reviews
In reply to: [WP-AMD - Global JS and CSS handling] Crash wordpress permanent linksPermalinks issue was fixes in the latest release. Thanks.
Hey,
line
$attr = apply_filters( 'wp_get_attachment_image_attributes', $attr, NULL );
is not correct. This filter is stolen from WordPress Core. It is not bad but it is used incorrectly. This filter must get 3 arguments but not 2 ($attr, NULL). The third one is $size. See /wp-includes/media.php line 919.Thanks.