WP Fix It - 24/7 WordPress Support
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Order Test] No more payment gateways after activating pluginThe functionality you’re describing is how the plugin used to work.
Changes to WooCommerce triggered us to reconfigure the functionality of the plugin.
The end result here is to test the checkout process and doing that means you do not need other active gateways present that require payment.
So now when you activate the test gateway it will hide all other gateways on the checkout page for the admin user only. There’s no need to display the other gateways because if you’re testing the check out you would not be using these.
This is a much better and more efficient process to test your check out and requires less steps as well .
You can see how this is activated in the image below.
Forum: Plugins
In reply to: [WooCommerce Order Test] test option not workingWe just released an update which should correct us. Let us know if not.
Forum: Plugins
In reply to: [WooCommerce Order Test] No more payment gateways after activating pluginWe just released an update which should correct us. Let us know if not.
- This reply was modified 2 months, 2 weeks ago by WP Fix It - 24/7 WordPress Support.
Please email our service manager which you have been communicating with to report any issues so we can work through them for you.
It’s impossible for us to fix an issue that we are not aware of.
Plugin development is complex and during the process of improvements and enhancements there can be issues that arise.
This plugin which has about 230 hours of development is intended to help WordPress users find issues which we get no financial benefit from.
We have no problem working through issues that are reported but it is extremely unfair to be so negative and hurt our reputation or a piece of software that is completely free to use and not required for anybody to actually use it.
If the plugin does not work for you simply do not use it or report the issues you are having so we can fix it for you.
There is no need to be so aggressive and try to hurt a reputation when we are trying to get back to the WordPress community
There is definitely an ugly side to the WordPress community and its users and you are showing that exact side.Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Content Security Policy Issues…There are tons of content security policy issues being shown in the browser console.
See issue at?https://capture.wpfixit.com/eDuKX5yv
We actually sorted this. You can ignore. Thanks!We just pushed out an update that corrected this issue.
Thanks for pointing this out to is Gary.
Hello Gary
We received your personal email and sent a response for information to get to the bottom of this.
We are aware that there is an issue with the mu plugin and certain hosting environments and we will definitely straighten it out.
Forum: Reviews
In reply to: [WooCommerce Order Test] The best plugin to test the WooCommerce checkoutThank you for the kind words Jose!
- This reply was modified 2 years, 6 months ago by WP Fix It - 24/7 WordPress Support.
Forum: Reviews
In reply to: [Conflict Finder] Great, great plugin for testing conflicts and issues.Glad you love it Gary!
This is what all our agents use to troubleshoot WordPress issues and we thought, why not make it available for all.
Enjoy brother!
Forum: Plugins
In reply to: [Anti-Malware Security and Brute-Force Firewall] Server Connection DownThanks. Works great now. Any chance of hiring you to fork your plugin and re-brand it?
Forum: Plugins
In reply to: [Anti-Malware Security and Brute-Force Firewall] Server Connection DownNope. Same issue. Server unavailable.
Forum: Plugins
In reply to: [Anti-Malware Security and Brute-Force Firewall] Server Connection DownHave tried it on 7 different sites and will not work. There are no console errors.
Forum: Plugins
In reply to: [WooCommerce Speed Drain Repair] Cart Icon – Drop Down MenuHello. This plugin currently turns off WooCoomerce script on non-wc pages. So if your cart icon is displayed on non-wc pages it will not echo the cart contents. We will send this back to our team and see if we can add to future release.
Anther immediate fix for you is to remove the plugin and put the below script in your theme’s functions.php file and then remove each wp_dequeue_script call 1 at a time until you see your cart icon contents load on non-wc pages.
add_action( ‘wp_enqueue_scripts’, ‘child_manage_woocommerce_styles’, 99 );
function child_manage_woocommerce_styles() {
//remove generator meta tag
remove_action( ‘wp_head’, array( $GLOBALS[‘woocommerce’], ‘generator’ ) );//first check that woo exists to prevent fatal errors
if ( function_exists( ‘is_woocommerce’ ) ) {
//dequeue scripts and styles
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
wp_dequeue_style( ‘woocommerce_frontend_styles’ );
wp_dequeue_style( ‘woocommerce_fancybox_styles’ );
wp_dequeue_style( ‘woocommerce_chosen_styles’ );
wp_dequeue_style( ‘woocommerce_prettyPhoto_css’ );
wp_dequeue_script( ‘wc_price_slider’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-add-to-cart’ );
wp_dequeue_script( ‘wc-cart-fragments’ );
wp_dequeue_script( ‘wc-checkout’ );
wp_dequeue_script( ‘wc-add-to-cart-variation’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-cart’ );
wp_dequeue_script( ‘wc-chosen’ );
wp_dequeue_script( ‘woocommerce’ );
wp_dequeue_script( ‘prettyPhoto’ );
wp_dequeue_script( ‘prettyPhoto-init’ );
wp_dequeue_script( ‘jquery-blockui’ );
wp_dequeue_script( ‘jquery-placeholder’ );
wp_dequeue_script( ‘fancybox’ );
wp_dequeue_script( ‘jqueryui’ );
}
}
}I am sorry but what we do not understand your question. Please clarify what you me?