nbeers22
Forum Replies Created
-
Forum: Plugins
In reply to: [Ally - Web Accessibility & Usability] Grayscale bugYou can add some CSS to your site to fix this:
body.pojo-a11y-grayscale { filter: none !important; -webkit-filter: none !important; -webkit-filter: none !important; -moz-filter: none !important; -ms-filter: none !important; -o-filter: none !important; filter: none !important; } body.pojo-a11y-grayscale *{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -webkit-filter: grayscale(1); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: gray; }
Forum: Plugins
In reply to: [Orders to Route4Me for WooCommerce] Fatal Error after checkoutLine 26 in
orders-to-route4me-for-woocommerce/include/synchronize.php
should be callingr4mwoo_get_order_address()
instead ofr4m_get_order_address()
Forum: Plugins
In reply to: [WooCommerce] How to move the “coupon” field in WooCommerceif you want to move the coupon field to the bottom, you can add this to your
functions.php
file:remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_coupon_form', 10 ); add_action( 'woocommerce_after_checkout_form', 'woocommerce_checkout_coupon_form' );
Forum: Plugins
In reply to: [Redirection] Redirecting errorDid you deactivate and then reactivate or delete the plugin completely and then reinstall?
Also, did you lose your data or were all the redirections still there?
I am having a similar issue suddenly but I have like 400 redirects in there and I don’t want to lose them all if I try a reinstall.
Forum: Plugins
In reply to: [Redirection] Remove query string on redirectUnfortunately, that still adds the query parameters to the new url
Forum: Plugins
In reply to: [Redirection] Remove query string on redirectIt looks like you want to keep the parameters and add them to your redirected URL and I am looking to remove them.
If you want to keep them and add your analytics tracking to the new url, then do this:
^/post-title.*
/blog/new-post-titlethe ^ means starts with and the .* will take everything after it and add it to the end. You don’t need the parenthesis around the .*
and make sure to check the regex box
Forum: Plugins
In reply to: [Redirection] Redirects for affiliate linksMake the link on your page/post go to https://www.abebooks/essential_oils_are_great
Go to redirection and add a new redirection like this
source url: /essential_oils_are_great
target url: https://www.your-affiliate-link.comthat’s it
Forum: Plugins
In reply to: [Custom Permalinks] Can’t Reach 404 PageI actually got it figured out. It was because I was set on plain permalinks and not pretty permalinks.