Interesting WordPress security concepts here. You can either whitelist specific domains essentially guaranteeing only registered users have the same email as the domain of the website, or you can play…
Read More
A simple WordPress plug-in for WooCommerce that changes product zero values ($0.00) to a text phrase. (ie. FREE, CALL FOR PRICE, ETC).
Read More
If you're only shipping a product and not using the billing & shipping form fields. You can change the Billing Details text to Shipping Details text by using this function.…
Read More
Working with media in WordPress is, for the most part, a fairly simple task; especially with the more recent improvements to the media manager. Deleting media items, however, can sometimes…
Read More
I have clients that get a lot of form spam directly from google ads. Basically, someone highjacks a legitimate Google Ads link for say, a car dealer or a dental…
Read More
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
In it's basic form: if ( is_user_logged_in() ) { // your code for logged in user } else { // your code for logged out user } Redirect to a…
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