The Default WooCommerce HOME link on any Woo breadcrumbs brings you to the website's home page. I think this is stupid. Especially if your store lives at a different URL…
Read More
I have an WooCommerce installation that I'm using as a dealer inventory feed that syncs twice a day though an API feed using WebToffee's Import/Export Pro. To prevent the media…
Read More
Just a reminder that this can be set programatically. Once this is set, clients can’t change this in the WooCommerce settings either. This is a permanent solution for preventing someone…
Read More
As simple as inserting the below code into your current theme functions.php file. add_filter( 'woocommerce_default_catalog_orderby', 'misha_default_catalog_orderby' ); function misha_default_catalog_orderby( $sort_by ) { return 'date'; } Possible values are: menu_order (Default)…
Read More
Note: Yes, I know there are a lot of security plugins that will just DO this for you. But I like to manually code things related to security so I…
Read More
I've had WordPress performance issues lately dealing with site crawlers and bots hammering my sites. After digging into the server logs i've found most of these bots are originating from…
Read More