Today I’m going to share with you a simple snippet for Wordpress that displays the date of last modified blog post. As always, you should add this snippet to the functions.php file of your child theme. Good luck!
hooks
How To Add a Badge To Selected Products – Woocommerce
Today let’s look at a simple snippet that hopefully will help someone:)Task: The client wanted to add badges to some products, depending on the season. First I created four new categories (winter, spring, summer, autumn) and then added the code to functions.php. And styling: /*seasonal badges*/.winter-badge, .spring-badge, .autumn-badge, .summer-badge {padding: 3px 4px;text-align: center;background: #FFFFFF;font-weight: bold;position: […]
How to add email notification when an order is in Pending status in Woocommerce without plugin
Just recently one of my clients asked me to add a notification feature if an order goes into Pending status in his Woocommerce store. This simple hook helps to solve this problem. This code should be inserted into fucntions.php of your child theme.
How to Add WordPress Widgets
A clean WordPress theme has no default widgets, which are found in the admin under Appearance>Widgets Code: menu (by default there is no menu) and other elements are added in the same wayadd_theme_support( ‘menus’ ); Here’s a breakdown of the code: Function Definition: custom_theme_setup_support(): This is a custom function name. You can change it to […]