Answers for "check if product is simple woocommerce"

0

woocommerce check if product is variable

global $product;

// $product->is_type( $type ) checks the product type, string/array $type ( 'simple', 'grouped', 'variable', 'external' ), returns boolean

if ( $product->is_type( 'variable' ) ) {}
Posted by: Guest on January-21-2021
0

if simple product display enquiry button woocommerce code your own

if ( ! $product->is_purchasable() ) {
?>
<script type="text/javascript" language="JavaScript"><!--
function ShowHide(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}
//--></script>
<a href="javascript:ShowHide('product-inquiry-form')">
<h2 class="button">Product Inquiry Form</h2>
</a>
<div id="product-inquiry-form" style="display:none;">
<div style="clear:both;">
<?php echo do_shortcode( '[contact-form-7 404 "Not Found"]' ); ?>
</div>
</div>
<?php
return;
}
Posted by: Guest on December-10-2020
0

check if a customer bought the product woocommerce

wc_customer_bought_product(  $customer_email,  $user_id,  $product_id );
Posted by: Guest on January-06-2022

Code answers related to "check if product is simple woocommerce"

Browse Popular Code Answers by Language