Adding a quick popup to your WordPress site can be a great way to deliver important messages, announcements, or offers without slowing down your site or installing yet another plugin. Here’s a lightweight, performance-friendly solution using just a bit of JavaScript, HTML, and CSS. No external libraries. No dependencies, No bloat. Just change the text […]
WordPress & WooCommerce Hooks and Snippets: Customizing and Extending Functionality
Enhance your WordPress and WooCommerce sites with powerful hooks and custom code snippets. Hooks let you extend or modify functionality without touching core files, making your site more flexible, efficient, and easier to maintain. This method ensures your customizations remain update-friendly and aligned with your business needs.
Whether you’re optimizing for speed, tightening security, or adding new features, these code snippets offer practical solutions. From small enhancements to advanced customizations, you’ll find tools to fine-tune your site and unlock its full potential.
How to add Flash Sale to Woocommerce site without plugins – Kadence theme
If you have a WooCommerce site and want to increase sales on it, then I recommend trying Flash Sale. What is Flash Sale? It’s a time-limited sale accompanied by a counter that encourages your customers to make a purchase immediately, without delaying. The time limit creates a sense of urgency and can significantly increase conversion […]
How to fix the double-click problem when navigating to the reviews tab in WooCommerce
A lot of WooCommerce sites require the user to click twice to get to the reviews block, which are in a separate tab (Tab). This inconvenience significantly degrades the user experience and can lead to lower conversion rates and visitor satisfaction. To solve this problem, all you need to do is make small changes to […]
How to remove Rank Math plugin dashboard notification
Rank Math is a great SEO plugin that do an amazing job. The only thing that constantly bothers me and my clients is the annoying alerts inside the WordPress admin area. Unfortunately they don’t disappear if you click on the “X”. If you too are fed up with the notifications from the Rank Math plugin, […]
Add Purchased Products Column to WooCommerce Orders
In WooCommerce, checking the purchased items for each order can be cumbersome as it often requires opening each individual order or downloading reports. However, there’s a faster solution. This code snippet restores a useful feature that was once part of WooCommerce by adding a new column to the WooCommerce orders list (Woocommerce>Orders). The column displays […]
How to Disable schema markup in All in One SEO plugin
This code snippet disables the schema generated by the All in One SEO (AIOSEO) plugin on singular posts or pages (is_singular()) and archive pages (is_archive()). By hooking into the aioseo_schema_disable filter, the function checks the type of page being loaded. If it matches a singular post or archive page, the function returns true, effectively turning […]