Michael Sumner
Forum Replies Created
-
You can find out the transparent pricing details here on our website:
https://www.scoredetect.com/pricing
Our annual plan will provide you with discounted pricing.
Kind regards,
Michael Sumner, Director, ScoreDetect.comHi Carlo,
Thanks for the reply. We make sure that the plan is as simple and flexible as possible. Our monthly plan starts at $12 per month and includes 100 timestamps per month. And then anything more than that within a given calendar month will be $0.12 per additional timestamp per month.
The number of timestamps depends on how often articles will be updated. If you will simply create new articles, and then add timestamp to it, then not update the article content thus not requiring a new timestamp, then only 1 timestamp will be used. But if you need to update the article content and timestamp a new version/revision, then it will be 2 timestamps in total.
Your ScoreDetect account can be used across multiple websites.
So, in the calculation of 400 articles per month (across the 2 websites) that start at $48 per month and provide you with 400 timestamps, as an example.
Let me know if this is clear or if you have any other questions — happy to clarify for you further.
Kind regards,
Michael Sumner, Director, ScoreDetect.comThanks for the review! We really appreciate every kind word and feedback that we can receive.
Kind regards,
MichaelThank you so much for your kind words! We’re thrilled to hear that the plugin is working great for you and that you had a positive experience with our support team!
Forum: Plugins
In reply to: [Post Type Switcher] Version 3.2.1 missing?@comzeradd that doesn’t sound good. Looks like that’s the case:
https://wpackagist.org/search?q=post-type-switcher&type=any&search=
Forum: Plugins
In reply to: [Post Type Switcher] Version 3.2.1 missing?Hi @techieshark
I’m receiving the same issue as well.
The plugin developer will have to take note not to delete old versions.
For now, please proceed to upgrade to version 3.2.2. Luckily, it is only a patch version increase.
Hope this helps!
Kind regards,
MichaelForum: Plugins
In reply to: [Bitly's Wordpress Plugin] Uninstall issue [Fix provided]Glad it worked for you!
It’s difficult when you want to uninstall the plugin but unable to do so due to a fatal error in the uninstallation hook.
Hope this helps more people until the fix is made. It seems the plugin support has not been updating for a while now.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Version 2.1.5 no longer exists🫶
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Version 2.1.5 no longer existsThanks @tobiasbg !
Kind regards,
MichaelForum: Plugins
In reply to: [Preview E-mails for WooCommerce] Site crashedIt is the same for me as soon as the plugin has been updated then it causes a critical error. If it helps I was on Bedrock on PHP 7.4.30 WP 6.0.2
Forum: Plugins
In reply to: [Preview E-mails for WooCommerce] Site crashedI received the same issue as well.
Fixed by doing the following. Apparently might have an issue with the Nullable Type declaration:
In /application/web/app/plugins/woo-preview-emails/includes/Bootstrap.phpreplace
public static ?Bootstrap $instance = null;withpublic static $instance;Kind regards,
MichaelForum: Plugins
In reply to: [Web3 WP] Web3 NFTHi @pabelpm
Not at the moment, but I can add this as a feature in a future release. So that the plugin could be able to log into addresses that are added within the Users edit profile through their Ethereum address, but I will see how to add this feature so that you can log in under certain circumstances.Kind regards,
MichaelForum: Plugins
In reply to: [WebP Express] HTTP Authentication (password-protected setup)I’ve went with a temporary solution by tweaking all mentions of
wp_remote_get()
and replacing them withwp_remote_request(), please see below that I hope will be implemented in the next release of the plugin:$username = 'myusername'; $password = 'mypassword'; $args = array( 'headers' => array( 'Authorization' => 'Basic ' . base64_encode($username . ':' . $password) ), 'timeout' => 10, ); $response = wp_remote_request($url, $args);Kind regards,
Michael- This reply was modified 4 years, 8 months ago by Michael Sumner. Reason: re-format code
That’s brilliant thank you for sharing this added insight! Good thing it’s also quite timely in release dates, and PS finally the 2019 issue will be resolved.
Happy contributing 🙂
Kind regards,
MichaelIn particular, it’s this bit of code from the other plugin:
/** * Creates a customer session if one is not already active. */ public function ensure_session() { // TODO: this tries to replicate Woo core functionality of checking for frontend requests. // It can be removed once we drop support for pre-3.5 versions. $frontend = ( ! is_admin() || defined( 'DOING_AJAX' ) ) && ! defined( 'DOING_CRON' ) && ! defined( 'REST_REQUEST' ); if ( ! $frontend ) { return; } if ( ! empty( WC()->session ) && ! WC()->session->has_session() ) { WC()->session->set_customer_session_cookie( true ); } }