Place WooCommerce Product Title Above Gallery Image on Mobile Only

Goal: Move WooCommerce Product Title to a different part of the Product page when on mobile. The ! is_admin() && is_product() && wp_is_mobile() functions are an if conditional that means only display the WooCommerce Product Title if all 3 of the following conditions are met: NOT in admin AND is a WooCommerce Product page AND…

Display WordPress WooCommerce Hooks In Exact Location On Page
|

Display WordPress WooCommerce Hooks In Exact Location On Page

What I’ve been searching for for the past week+ is a way to display the name of a WordPress Hook (actions & filters) on the WooCommerce product page – in their exact location on the page – so I can see how everything is laid out. Like how Google Maps displays business names next to…

WooCommerce Cart Hooks – WPDesk

WooCommerce Cart Hooks – WPDesk

The “Add your own sections to the cart page” in WPDesk’s WooCommerce Cart Hooks article is very helpful in learning how add_action hooks code works in functions.php file. WPDesk’s “WooCommerce Empty Cart Hooks – Visual Guide” is also especially helpful. In the above code, WPDesk helps me see that the first part (woocommerce_before_cart_table) is the…

WooCommerce Visual Hook Guide for Single Product Page – Resources

Goal: Use Advanced Custom Fields to create a sales badge/label that says “Distressed Art” on specific main product pics. Note: plugins like YITH WooCommerce Badge Management and Advanced Product Labels for WooCommerce seem to conflict with my current Beaver Builder install. woocommerce_show_product_sale_flash seems to be the WooCommerce Hook that needs to be targeted – I’m…