skip to Main Content

Hide enquiry button when product is on stock – Woocommerce

How can I hide a specific button, based on the stock status of my product? The plugin is creating this class: function wdm_pefree_init() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid if ( ! class_exists( 'Product_Enquiry_For_Woocommerce', false ) ) { include_once WDM_PE_PLUGIN_PATH . '/includes/class-product-enquiry-for-woocommerce.php';…

VIEW QUESTION

How to add custom button before Add to Cart form in WooCommerce Product Page and I want different links for different products? – WordPress

How to add a custom button before Add to Cart form on WooCommerce Product Page? and I want different links for different products. My PHP Code: add_action( 'woocommerce_before_add_to_cart_form', 'learnalwayss_after_add_to_cart_btn' ); function learnalwayss_after_add_to_cart_btn() { global $product; if ( $product->get_id() == 149685…

VIEW QUESTION
Back To Top
Search