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
Here's a simple WordPress function and short code for calculating things like employee anniversaries, years in business, birthdays or anything that needs to calculate a year based on a starting…
Read More
If you have to build a website from scratch every time you start a project, you need to be prepared to pass the cost of the time spent to develop…
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
I had a client who decided to go it alone and flip the blog functionality on and start a blog on their current company WordPress site. The simple error of…
Read More