WooCommerce developers and store owners often need to programmatically fetch all products from a WooCommerce store — whether for integrations, data analysis, custom displays, or… Read More →
Get all products with php in Woocommerce WordPress require_once(‘../wp-load.php’); global $wpdb; // Get 10 most recent product IDs in date descending order. $query = new… Read More →
WooCommerce Products Export to CSV via PHP
July 23, 2022
WooCommerce Products Export to CSV via PHP <?php require_once(‘../wp-load.php’); global $wpdb; // Get 10 most recent product IDs in date descending order. $query =… Read More →
Enable HTTP Strict Transport Security (HSTS) in WordPress Add the following code into your theme’s functions.php /** * Enables the HTTP Strict Transport Security (HSTS) header… Read More →
Ultimate Guide: How to Integrate TidyCal Appointment Booking Seamlessly into WordPress Sites in 2025
July 5, 2022
Appointment scheduling has become a cornerstone of modern business operations, especially for service-based enterprises looking to streamline client interactions. In 2025, with remote work and… Read More →
WordPress : Add id & class to form in Contact Form 7
May 29, 2022
Add id and class to Contact Form 7 elements Example: contact-form-7 id=”1234″ title=”Contact form 1″ html_id=”contact-form-1234″ html_class=”form contact-form” Source: contactform7.com/faq/can-i-add-id-and-class-attributes-to-a-form-element
A Guide on How to resize contact form 7 textarea rows Contact Form 7 is a widely-used plugin for creating forms in WordPress, including contact… Read More →
Add “Where Did You Hear About Us” option in WordPress #Add the following code on functions.php to add “How did you find us” option in customer… Read More →
The Complete Guide to Programmatically Deleting WordPress Metadata (Functions & Best Practices)
May 25, 2022
Effectively managing metadata—the behind-the-scenes information that powers content, user profiles, and site functionality—is a critical skill for any WordPress developer or advanced user. While adding… Read More →
In the dynamic world of e-commerce powered by WordPress and WooCommerce, the default administrative interface often requires enhancement to fit specific business workflows. A common… Read More →