After you install and activate the WooCommerce plugin on a WordPress site, what is the immediate visible change in the WordPress admin dashboard?
Think about what plugins usually add to the WordPress admin area.
When WooCommerce is activated, it adds a new menu in the admin sidebar to manage store features like orders and settings. It does not change themes or content automatically.
Which code snippet correctly creates a simple product programmatically in WooCommerce?
WooCommerce has specific classes for products.
WooCommerce products are created using WC_Product_Simple class and its methods. Directly inserting posts misses product data handling.
You set up WooCommerce and created a checkout page, but visiting it shows a blank white page. What is the most likely cause?
Check what content the checkout page has.
The checkout page must contain the WooCommerce shortcode [woocommerce_checkout] to display the checkout form. Without it, the page will be blank.
After a customer completes payment successfully on a WooCommerce store, what is the default order status set by WooCommerce?
Think about what happens after payment but before shipping.
WooCommerce sets the order status to 'processing' after successful payment for physical products, indicating the order is paid and awaiting fulfillment.
Which statement best describes how WooCommerce stores and manages product variations?
Think about how WordPress stores different product types.
WooCommerce stores each product variation as its own post of type 'product_variation' linked to the parent variable product post.